From a1f6f3f277f7e79bf10e196494a8d6dfa6123cfa Mon Sep 17 00:00:00 2001 From: Pixel Date: Tue, 25 Jan 2011 07:09:44 -0800 Subject: More consistent makefiles includes. Adding BoardConsole for basic console output general API. Starting up console from the boot sequence. --- demo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'demo.c') diff --git a/demo.c b/demo.c index c9eb8eb..c3df762 100644 --- a/demo.c +++ b/demo.c @@ -1,7 +1,7 @@ #include #include -#include #include +#include #define LED1_wire 18 #define LED2_wire 20 @@ -31,12 +31,12 @@ void litLED(int led, int value) { } int main() { - debug_frmwrk_init(); setupLEDs(); litLED(1, 1); litLED(2, 0); litLED(3, 1); litLED(4, 0); + BoardConsolePuts("Hello World."); vTaskStartScheduler(); return 0; } -- cgit v1.2.3