diff options
Diffstat (limited to 'demos/STM32/RT-STM32F302R8-NUCLEO64/main.c')
-rw-r--r-- | demos/STM32/RT-STM32F302R8-NUCLEO64/main.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/demos/STM32/RT-STM32F302R8-NUCLEO64/main.c b/demos/STM32/RT-STM32F302R8-NUCLEO64/main.c index 8c7e2ade9..24cae4bc2 100644 --- a/demos/STM32/RT-STM32F302R8-NUCLEO64/main.c +++ b/demos/STM32/RT-STM32F302R8-NUCLEO64/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 (!palReadPad(GPIOC, GPIOC_BUTTON))
+ if (!palReadPad(GPIOC, GPIOC_BUTTON)) {
test_execute((BaseSequentialStream *)&SD2, &rt_test_suite);
+ test_execute((BaseSequentialStream *)&SD2, &oslib_test_suite);
+ }
chThdSleepMilliseconds(500);
}
}
|