1
0
mirror of https://github.com/oliverschmidt/contiki.git synced 2025-01-11 03:29:51 +00:00

13 lines
148 B
C
Raw Normal View History

#include <stdio.h>
#include "dev/uart1.h"
#include "lcd.h"
int
putchar(int c)
{
uart1_writeb((char)c);
lcd_write_char((char)c);
return c;
}