Contiki 2.5
uart1-putchar.c
1 #include <stdio.h>
2 #include "dev/uart1.h"
3 
4 int
5 putchar(int c)
6 {
7  uart1_writeb((char)c);
8  return c;
9 }