diff options
| author | Kimmo Lindholm <kimmo@eke.fi> | 2017-10-13 20:57:58 +0300 | 
|---|---|---|
| committer | Kimmo Lindholm <kimmo@eke.fi> | 2017-10-13 20:57:58 +0300 | 
| commit | 630043a63f9a9b194d3ebf18b3e2b339f47ee718 (patch) | |
| tree | fd72f0565f833c2c5abedc6982139dcc7ebf6510 /testhal/STM32/STM32F7xx/USB_MSD | |
| parent | 921d233cdd43e6fff867f80a89b43f07154b3f9a (diff) | |
| download | ChibiOS-Contrib-630043a63f9a9b194d3ebf18b3e2b339f47ee718.tar.gz ChibiOS-Contrib-630043a63f9a9b194d3ebf18b3e2b339f47ee718.tar.bz2 ChibiOS-Contrib-630043a63f9a9b194d3ebf18b3e2b339f47ee718.zip  | |
USB_MSD: Fix testhal according to msdStart() API change
Diffstat (limited to 'testhal/STM32/STM32F7xx/USB_MSD')
| -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);    /*     *  | 
