diff options
author | Fabien Poussin <fabien.poussin@gmail.com> | 2018-12-04 02:21:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-04 02:21:36 +0100 |
commit | d0d1aaeffa6b9fe27aacc0fc503b2041317d5551 (patch) | |
tree | 1e5951e232bf1d35488344f78a5776fab6b0cec2 /demos/KINETIS/RT-TEENSY3/main.c | |
parent | 1391af251d17e4d6256175fd1140d70e3eae8be4 (diff) | |
parent | 33375fb281b05ac493ce3ff34deaf21c15565157 (diff) | |
download | ChibiOS-Contrib-d0d1aaeffa6b9fe27aacc0fc503b2041317d5551.tar.gz ChibiOS-Contrib-d0d1aaeffa6b9fe27aacc0fc503b2041317d5551.tar.bz2 ChibiOS-Contrib-d0d1aaeffa6b9fe27aacc0fc503b2041317d5551.zip |
Merge pull request #173 from ObKo/chibios-18.2.x-merged
Update NRF5x, KINETIS Makefiles to ChibiOS 18.2.x
Diffstat (limited to 'demos/KINETIS/RT-TEENSY3/main.c')
-rw-r--r-- | demos/KINETIS/RT-TEENSY3/main.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/demos/KINETIS/RT-TEENSY3/main.c b/demos/KINETIS/RT-TEENSY3/main.c index 42d6510..f4c23af 100644 --- a/demos/KINETIS/RT-TEENSY3/main.c +++ b/demos/KINETIS/RT-TEENSY3/main.c @@ -17,6 +17,8 @@ #include "ch.h"
#include "hal.h"
#include "ch_test.h"
+#include "rt_test_root.h"
+#include "oslib_test_root.h"
/*
* LED blinker thread.
@@ -57,7 +59,8 @@ int main(void) { */
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
- test_execute((BaseSequentialStream *)&SD1);
+ test_execute((BaseSequentialStream *)&SD1, &rt_test_suite);
+ test_execute((BaseSequentialStream *)&SD1, &oslib_test_suite);
while (true) {
chThdSleepMilliseconds(1000);
}
|