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