diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-10-16 20:44:10 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-10-16 20:44:10 +0000 |
commit | ca77bbc7bacdecf04d3f45c3e108bd8984832ea0 (patch) | |
tree | 9103a0a6fb6d68e149a8c32f060f5e6141bfdbaf /demos/STM32/NASA-OSAL-STM32F407-DISCOVERY | |
parent | 94236f4be7a040aaae3cd6c34cf35870e8008ca4 (diff) | |
download | ChibiOS-ca77bbc7bacdecf04d3f45c3e108bd8984832ea0.tar.gz ChibiOS-ca77bbc7bacdecf04d3f45c3e108bd8984832ea0.tar.bz2 ChibiOS-ca77bbc7bacdecf04d3f45c3e108bd8984832ea0.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10839 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/STM32/NASA-OSAL-STM32F407-DISCOVERY')
-rw-r--r-- | demos/STM32/NASA-OSAL-STM32F407-DISCOVERY/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/STM32/NASA-OSAL-STM32F407-DISCOVERY/main.c b/demos/STM32/NASA-OSAL-STM32F407-DISCOVERY/main.c index 92b02883b..408e5957f 100644 --- a/demos/STM32/NASA-OSAL-STM32F407-DISCOVERY/main.c +++ b/demos/STM32/NASA-OSAL-STM32F407-DISCOVERY/main.c @@ -15,7 +15,7 @@ */
#include "hal.h"
-#include "ch_test.h"
+#include "nasa_osal_test_root.h"
#include "osapi.h"
/*
@@ -66,7 +66,7 @@ int main(void) { waiting for a button event, then the test suite is executed.*/
while (true) {
if (palReadLine(LINE_BUTTON))
- test_execute((BaseSequentialStream *)&SD2, &rt_test_suite);
+ test_execute((BaseSequentialStream *)&SD2, &nasa_osal_test_suite);
OS_TaskDelay(500);
}
}
|