diff options
author | José Simões <jose.simoes@eclo.solutions> | 2019-02-26 22:38:30 +0000 |
---|---|---|
committer | José Simões <jose.simoes@eclo.solutions> | 2019-02-27 15:00:50 +0000 |
commit | f014b8da68f162bb06ca88acf0085382a76d8dcd (patch) | |
tree | 63297febf9738bf88bbb86766df520f05609ad62 /os/hal/src | |
parent | b82dd2d0266dfdb91e8563536af74cf3727b91c2 (diff) | |
download | ChibiOS-Contrib-f014b8da68f162bb06ca88acf0085382a76d8dcd.tar.gz ChibiOS-Contrib-f014b8da68f162bb06ca88acf0085382a76d8dcd.tar.bz2 ChibiOS-Contrib-f014b8da68f162bb06ca88acf0085382a76d8dcd.zip |
Fixes for USB MSD
- Fix return value on succesfull scsi_requestsense.
- Fix calls to LL SMT32 API for OTG2.
- Port changes from ChibiOS fatfs_diskio.
- Rework checks to allow simultaneous use of SD Card and USB MSD.
Signed-off-by: José Simões <jose.simoes@eclo.solutions>
Diffstat (limited to 'os/hal/src')
-rw-r--r-- | os/hal/src/usbh/hal_usbh_msd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/os/hal/src/usbh/hal_usbh_msd.c b/os/hal/src/usbh/hal_usbh_msd.c index fe97ff0..3d57934 100644 --- a/os/hal/src/usbh/hal_usbh_msd.c +++ b/os/hal/src/usbh/hal_usbh_msd.c @@ -516,6 +516,8 @@ static msd_result_t _scsi_perform_transaction(USBHMassStorageLUNDriver *lunp, if (scsi_requestsense(lunp, &sense) == MSD_RESULT_OK) { uwarnf("\tMSD: REQUEST SENSE: Sense key=%x, ASC=%02x, ASCQ=%02x", sense.byte[2] & 0xf, sense.byte[12], sense.byte[13]); + + return MSD_RESULT_OK; } } return MSD_RESULT_FAILED; |