diff options
Diffstat (limited to 'demos/STM32/RT-STM32L432KC-NUCLEO32/main.c')
-rw-r--r-- | demos/STM32/RT-STM32L432KC-NUCLEO32/main.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/demos/STM32/RT-STM32L432KC-NUCLEO32/main.c b/demos/STM32/RT-STM32L432KC-NUCLEO32/main.c index 8e847910d..a492947c1 100644 --- a/demos/STM32/RT-STM32L432KC-NUCLEO32/main.c +++ b/demos/STM32/RT-STM32L432KC-NUCLEO32/main.c @@ -17,6 +17,7 @@ #include "ch.h"
#include "hal.h"
#include "rt_test_root.h"
+#include "oslib_test_root.h"
/*
* Green LED blinker thread, times are in milliseconds.
@@ -64,8 +65,10 @@ int main(void) { * sleeping in a loop and check the button state.
*/
while (true) {
- if (!palReadLine(LINE_ARD_D3))
+ if (!palReadLine(LINE_ARD_D3)) {
test_execute((BaseSequentialStream *)&SD2, &rt_test_suite);
+ test_execute((BaseSequentialStream *)&SD2, &oslib_test_suite);
+ }
chThdSleepMilliseconds(500);
}
}
|