X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=boards%2Farduino%2Ftemplates%2Fempty%2Fmain.c;h=407efe2049897fe97d67483c992cdef3a0c01e02;hb=cc3e0b349232c473385e2f136a3185e5f2fb6031;hp=1036c5cb6b95c100b1fd37e4c488bfd9eb90c589;hpb=c34de402cec6fda7bf4474f32fed5e5c02cd7e7e;p=bertos.git diff --git a/boards/arduino/templates/empty/main.c b/boards/arduino/templates/empty/main.c index 1036c5cb..407efe20 100644 --- a/boards/arduino/templates/empty/main.c +++ b/boards/arduino/templates/empty/main.c @@ -38,10 +38,13 @@ * supported board and proposes an empty main. */ +#include "hw/hw_led.h" + #include + #include #include -#include + #include #include @@ -56,10 +59,21 @@ static void init(void) kdbg_init(); /* Initialize system timer */ timer_init(); + + /* + * XXX: Arduino has a single UART port that was previously + * initialized for debugging purpose. + * In order to activate the serial driver you should disable + * the debugging module. + */ +#if 0 /* Initialize UART0 */ ser_init(&out, SER_UART0); /* Configure UART0 to work at 115.200 bps */ ser_setbaudrate(&out, 115200); +#else + (void)out; +#endif /* Initialize LED driver */ LED_INIT(); }