diff options
author | Uladzimir Pylinski <barthess@yandex.ru> | 2017-10-14 10:27:31 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-14 10:27:31 +0300 |
commit | 406d932f09b3a232a98399088cafc5b7950f9cbe (patch) | |
tree | fd72f0565f833c2c5abedc6982139dcc7ebf6510 | |
parent | 921d233cdd43e6fff867f80a89b43f07154b3f9a (diff) | |
parent | 630043a63f9a9b194d3ebf18b3e2b339f47ee718 (diff) | |
download | ChibiOS-Contrib-406d932f09b3a232a98399088cafc5b7950f9cbe.tar.gz ChibiOS-Contrib-406d932f09b3a232a98399088cafc5b7950f9cbe.tar.bz2 ChibiOS-Contrib-406d932f09b3a232a98399088cafc5b7950f9cbe.zip |
Merge pull request #130 from kimmoli/msd_testhal
USB_MSD: Fix testhal according to msdStart() API change
-rw-r--r-- | testhal/STM32/STM32F7xx/USB_MSD/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testhal/STM32/STM32F7xx/USB_MSD/main.c b/testhal/STM32/STM32F7xx/USB_MSD/main.c index cae2b74..87ca8d2 100644 --- a/testhal/STM32/STM32F7xx/USB_MSD/main.c +++ b/testhal/STM32/STM32F7xx/USB_MSD/main.c @@ -102,7 +102,7 @@ int main(void) { * start mass storage */ msdObjectInit(&USBMSD1); - msdStart(&USBMSD1, &USBD1, (BaseBlockDevice *)&ramdisk, blkbuf, NULL); + msdStart(&USBMSD1, &USBD1, (BaseBlockDevice *)&ramdisk, blkbuf, NULL, NULL); /* * |