diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2011-01-28 21:32:32 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2011-01-28 21:32:32 +0100 |
commit | f595d9e7896e2a38b19522a34a6829c2fec011fb (patch) | |
tree | 8e084f608f2ee581d2f256a1f7561c70a5ff2bf7 | |
parent | e0bb2bb3d9d04dea2bc6e46e02417f98027777b9 (diff) |
The example software should stress stdio, to make it trying to work.
-rw-r--r-- | demo.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,6 +4,7 @@ #include <lpc17xx_gpio.h> #include <BoardConsole.h> #include <osdebug.h> +#include <stdio.h> #define LED1_wire 18 #define LED2_wire 20 @@ -60,7 +61,7 @@ static void badTask(void *x) { int main() { handle = xSemaphoreCreateMutex(); - + printf("Hello world - from stdio!\r\n"); setupLEDs(); litLED(1, 0); litLED(2, 0); |