mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-07 02:05:33 +00:00
10 lines
103 B
C
10 lines
103 B
C
#include "dev/uart0.h"
|
|
#include <stdio.h>
|
|
|
|
int
|
|
putchar(int c)
|
|
{
|
|
uart0_writeb((char)c);
|
|
return c;
|
|
}
|