diff options
author | Damien George <damien.p.george@gmail.com> | 2014-03-23 12:48:58 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-03-23 12:48:58 +0000 |
commit | 506589a4b7a3985f34cf9581edc1e486479027e0 (patch) | |
tree | 33356e56beb770c3ba300117fe9318326bdab301 | |
parent | 5a16658b219cc4ddfe12d6a541aaeb2b5160c90d (diff) | |
download | micropython-506589a4b7a3985f34cf9581edc1e486479027e0.tar.gz micropython-506589a4b7a3985f34cf9581edc1e486479027e0.zip |
stmhal: Change flash MSD from fixed to removable drive.
-rw-r--r-- | stmhal/usbd_msc_storage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/usbd_msc_storage.c b/stmhal/usbd_msc_storage.c index ce6d3a5608..1b4545cd30 100644 --- a/stmhal/usbd_msc_storage.c +++ b/stmhal/usbd_msc_storage.c @@ -41,7 +41,7 @@ static const int8_t FLASH_STORAGE_Inquirydata[] = { // 36 bytes // LUN 0 0x00, - 0x00, // 0x00 for a fixed drive, 0x80 for a removable drive + 0x80, // 0x00 for a fixed drive, 0x80 for a removable drive 0x02, 0x02, (STANDARD_INQUIRY_DATA_LEN - 5), |