aboutsummaryrefslogtreecommitdiffstats
path: root/demos/LPC21xx
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2016-04-02 07:11:56 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2016-04-02 07:11:56 +0000
commitaed82faf72f86bfdca6568102953239116ba90c1 (patch)
tree412c703359718ceef438e04632a6fc1d8a7e7082 /demos/LPC21xx
parent109a347ca42435bc1c0e1ddd509dfff4ff6dad9d (diff)
downloadChibiOS-aed82faf72f86bfdca6568102953239116ba90c1.tar.gz
ChibiOS-aed82faf72f86bfdca6568102953239116ba90c1.tar.bz2
ChibiOS-aed82faf72f86bfdca6568102953239116ba90c1.zip
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
Diffstat (limited to 'demos/LPC21xx')
-rw-r--r--demos/LPC21xx/RT-LPC214x-OLIMEX/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/LPC21xx/RT-LPC214x-OLIMEX/main.c b/demos/LPC21xx/RT-LPC214x-OLIMEX/main.c
index ca271023a..761a7257d 100644
--- a/demos/LPC21xx/RT-LPC214x-OLIMEX/main.c
+++ b/demos/LPC21xx/RT-LPC214x-OLIMEX/main.c
@@ -16,7 +16,7 @@
#include "ch.h"
#include "hal.h"
-#include "test.h"
+#include "ch_test.h"
#define BOTH_BUTTONS (PAL_PORT_BIT(PA_BUTTON1) | PAL_PORT_BIT(PA_BUTTON2))
@@ -90,7 +90,7 @@ int main(void) {
if (!palReadPad(IOPORT1, PA_BUTTON1))
sdWrite(&SD1, (uint8_t *)"Hello World!\r\n", 14);
if (!palReadPad(IOPORT1, PA_BUTTON2))
- TestThread(&SD1);
+ test_execute((BaseSequentialStream *)&SD1);
chThdSleepMilliseconds(500);
}
return 0;