mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-03 22:06:22 +00:00
10 lines
103 B
C
10 lines
103 B
C
#include <stdio.h>
|
|
#include "dev/uart1.h"
|
|
|
|
int
|
|
putchar(int c)
|
|
{
|
|
uart1_writeb((char)c);
|
|
return c;
|
|
}
|