diff options
author | marcoveeneman <marco-veeneman@hotmail.com> | 2017-11-24 22:23:27 +0100 |
---|---|---|
committer | marcoveeneman <marco-veeneman@hotmail.com> | 2017-11-24 22:23:27 +0100 |
commit | 93dd54ecdcfce8ad063a4d951473f110e15c28df (patch) | |
tree | b6e47518c4a86ce80b14dae5d56af7dd52f5a01a /demos/TIVA/RT-TM4C1294-LAUNCHPAD/main.c | |
parent | 77bf52e0428392acc83bc12c4699b61dae43467e (diff) | |
download | ChibiOS-Contrib-93dd54ecdcfce8ad063a4d951473f110e15c28df.tar.gz ChibiOS-Contrib-93dd54ecdcfce8ad063a4d951473f110e15c28df.tar.bz2 ChibiOS-Contrib-93dd54ecdcfce8ad063a4d951473f110e15c28df.zip |
Fixed compile errors in demos
Diffstat (limited to 'demos/TIVA/RT-TM4C1294-LAUNCHPAD/main.c')
-rw-r--r-- | demos/TIVA/RT-TM4C1294-LAUNCHPAD/main.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/demos/TIVA/RT-TM4C1294-LAUNCHPAD/main.c b/demos/TIVA/RT-TM4C1294-LAUNCHPAD/main.c index 22082fe..4afc71f 100644 --- a/demos/TIVA/RT-TM4C1294-LAUNCHPAD/main.c +++ b/demos/TIVA/RT-TM4C1294-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 { @@ -70,7 +71,8 @@ int main(void) sdStart(&SD1, NULL); if (!palReadLine(LINE_SW1)) { - test_execute((BaseSequentialStream *)&SD1); + test_execute((BaseSequentialStream *)&SD1, &rt_test_suite); + test_execute((BaseSequentialStream *)&SD1, &oslib_test_suite); } led1.line = LINE_LED0; |