summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-28 21:32:32 +0100
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-28 21:32:32 +0100
commitf595d9e7896e2a38b19522a34a6829c2fec011fb (patch)
tree8e084f608f2ee581d2f256a1f7561c70a5ff2bf7
parente0bb2bb3d9d04dea2bc6e46e02417f98027777b9 (diff)
The example software should stress stdio, to make it trying to work.
-rw-r--r--demo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/demo.c b/demo.c
index 59b41ca..fd9b76a 100644
--- a/demo.c
+++ b/demo.c
@@ -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);