X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=boards%2Farduino%2Ftemplates%2Fkernel%2Fmain.c;h=663386f45c0723008699f85f6d76a1abdf6c8d69;hb=87feaf9cb13d9023f2c4c61b9e9ad46652f1f679;hp=ff8b2f129e36069b60e258c23896f9f0143f5a47;hpb=dd7d54a9e52b47856782cfea08fd714fa6aba4e5;p=bertos.git diff --git a/boards/arduino/templates/kernel/main.c b/boards/arduino/templates/kernel/main.c index ff8b2f12..663386f4 100644 --- a/boards/arduino/templates/kernel/main.c +++ b/boards/arduino/templates/kernel/main.c @@ -63,10 +63,20 @@ 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();