diff options
Diffstat (limited to 'demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY/main.c')
-rw-r--r-- | demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY/main.c b/demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY/main.c index 00f820843..4033e51c9 100644 --- a/demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY/main.c +++ b/demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY/main.c @@ -15,7 +15,7 @@ */
#include "hal.h"
-#include "ch_test.h"
+#include "nasa_osal_test_root.h"
#include "osapi.h"
/*
@@ -67,7 +67,7 @@ int main(void) { waiting for a button event, then the test suite is executed.*/
while (true) {
if (palReadLine(LINE_BUTTON_USER))
- test_execute((BaseSequentialStream *)&SD1, &rt_test_suite);
+ test_execute((BaseSequentialStream *)&SD1, &nasa_osal_test_suite);
OS_TaskDelay(500);
}
}
|