From aed82faf72f86bfdca6568102953239116ba90c1 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sat, 2 Apr 2016 07:11:56 +0000 Subject: Fixed calls to test suite in all applications. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9202 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- demos/KINETIS/RT-TEENSY3/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'demos/KINETIS/RT-TEENSY3') diff --git a/demos/KINETIS/RT-TEENSY3/main.c b/demos/KINETIS/RT-TEENSY3/main.c index 4606e2832..803fbda68 100644 --- a/demos/KINETIS/RT-TEENSY3/main.c +++ b/demos/KINETIS/RT-TEENSY3/main.c @@ -16,7 +16,7 @@ #include "ch.h" #include "hal.h" -#include "test.h" +#include "ch_test.h" /* * LED blinker thread. @@ -57,7 +57,7 @@ int main(void) { */ chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL); - TestThread(&SD1); + test_execute((BaseSequentialStream *)&SD1); while (true) { chThdSleepMilliseconds(1000); } -- cgit v1.2.3