aboutsummaryrefslogtreecommitdiffstats
path: root/demos/TIVA/RT-TM4C123G-LAUNCHPAD/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/TIVA/RT-TM4C123G-LAUNCHPAD/main.c')
-rw-r--r--demos/TIVA/RT-TM4C123G-LAUNCHPAD/main.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/demos/TIVA/RT-TM4C123G-LAUNCHPAD/main.c b/demos/TIVA/RT-TM4C123G-LAUNCHPAD/main.c
index 2872f89..7feea14 100644
--- a/demos/TIVA/RT-TM4C123G-LAUNCHPAD/main.c
+++ b/demos/TIVA/RT-TM4C123G-LAUNCHPAD/main.c
@@ -16,7 +16,8 @@
#include "ch.h"
#include "hal.h"
-#include "ch_test.h"
+#include "rt_test_root.h"
+#include "oslib_test_root.h"
typedef struct led_config
{
@@ -68,7 +69,8 @@ int main(void)
sdStart(&SD1, NULL);
if (!palReadLine(LINE_SW2)) {
- test_execute((BaseSequentialStream *)&SD1);
+ test_execute((BaseSequentialStream *)&SD1, &rt_test_suite);
+ test_execute((BaseSequentialStream *)&SD1, &oslib_test_suite);
}
ledRed.line = LINE_LED_RED;