Remove \version svn tag.
[bertos.git] / boards / ek-lm3s1968 / templates / kernel / main.c
index 68fdf45fc59e56a06135b3ed5352b79c2ce1bd21..34ad1c652112a20f59cdb604568429b4bbd9c2dc 100644 (file)
  * continues to monitor the stack utilization of all the processes.
  */
 
+#include "hw/hw_led.h"
+
 #include <cfg/debug.h>
+
 #include <cpu/irq.h>
-#include <hw/hw_led.h>
+
 #include <drv/timer.h>
 #include <drv/ser.h>
 #include <drv/lcd_rit128x96.h>
 #include <drv/kbd.h>
 #include <drv/flash.h>
+
 #include <kern/proc.h>
 #include <kern/monitor.h>
 
@@ -68,9 +72,9 @@ static void init(void)
        kdbg_init();
        /* Initialize system timer */
        timer_init();
-       /* Initialize UART0 */
-       ser_init(&out, SER_UART0);
-       /* Configure UART0 to work at 115.200 bps */
+       /* Initialize UART1 */
+       ser_init(&out, SER_UART1);
+       /* Configure UART1 to work at 115.200 bps */
        ser_setbaudrate(&out, 115200);
        /* Initialize LED driver */
        LED_INIT();