diff options
| author | hathach <[email protected]> | 2013-09-20 23:53:48 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-09-20 23:53:48 +0700 |
| commit | f8f398a6813567306acd2e9dcfae199c3ecbad3a (patch) | |
| tree | 2a0acf048ae44a4ee439c3928a8f74f91ea30bf5 /tinyusb/class/msc.h | |
| parent | 52ae0afeb6dc781b82e6e71b864a02184eaf62bf (diff) | |
start to add msc host, fix dangerous problem with unstable device when plugged --> 200 ms delay. 50ms delay after each port reset
Diffstat (limited to 'tinyusb/class/msc.h')
| -rw-r--r-- | tinyusb/class/msc.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tinyusb/class/msc.h b/tinyusb/class/msc.h index 53e2e93df..efa137a2b 100644 --- a/tinyusb/class/msc.h +++ b/tinyusb/class/msc.h @@ -71,6 +71,11 @@ enum { MSC_PROTOCOL_BOT = 0x50 }; +enum { + MSC_REQUEST_GET_MAX_LUN = 254, + MSC_REQUEST_RESET = 255 +}; + //--------------------------------------------------------------------+ // SCSI Primary Command (SPC-4) |
