summaryrefslogtreecommitdiffstatshomepage
path: root/stm/lib
diff options
context:
space:
mode:
authorDamien <damien.p.george@gmail.com>2013-10-23 00:02:06 +0100
committerDamien <damien.p.george@gmail.com>2013-10-23 00:02:06 +0100
commit94186c82396dee2f70785bf9e241780f29275870 (patch)
treebb4ae3020d2cd9c52ec65033970ee8d6541074db /stm/lib
parent9fc7933ff2a807f93a734bafe8944bb862074495 (diff)
downloadmicropython-94186c82396dee2f70785bf9e241780f29275870.tar.gz
micropython-94186c82396dee2f70785bf9e241780f29275870.zip
Implement boot-up commands; run main script after boot.
Diffstat (limited to 'stm/lib')
-rw-r--r--stm/lib/usbd_storage_msd.c2
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);
}