diff options
Diffstat (limited to 'demos/STM32/NIL-STM32F746G-DISCOVERY/main.c')
-rw-r--r-- | demos/STM32/NIL-STM32F746G-DISCOVERY/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/STM32/NIL-STM32F746G-DISCOVERY/main.c b/demos/STM32/NIL-STM32F746G-DISCOVERY/main.c index 353775113..13c07901c 100644 --- a/demos/STM32/NIL-STM32F746G-DISCOVERY/main.c +++ b/demos/STM32/NIL-STM32F746G-DISCOVERY/main.c @@ -59,7 +59,7 @@ THD_FUNCTION(Thread2, arg) { /* Waiting for button push and activation of the test suite.*/
while (true) {
if (palReadLine(LINE_BUTTON_USER))
- test_execute((BaseSequentialStream *)&SD1);
+ test_execute((BaseSequentialStream *)&SD1, &rt_test_suite);
chThdSleepMilliseconds(500);
}
}
|