diff options
Diffstat (limited to 'stm/lib')
-rw-r--r-- | stm/lib/usbd_storage_msd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stm/lib/usbd_storage_msd.c b/stm/lib/usbd_storage_msd.c index afdd47865d..a924a868d2 100644 --- a/stm/lib/usbd_storage_msd.c +++ b/stm/lib/usbd_storage_msd.c @@ -308,7 +308,7 @@ int8_t STORAGE_Write (uint8_t lun, while (SD_GetStatus() != SD_TRANSFER_OK);
#endif
*/
- //disk_write(0, buf, blk_addr, blk_len);
+ disk_write(0, buf, blk_addr, blk_len);
return (0);
}
|