nes-proj/cpu/msp430/dev/uart1-putchar.c

13 lines
235 B
C
Raw Normal View History

#include <stdio.h>
#include "dev/uart1.h"
2016-05-02 17:13:26 +00:00
#ifndef NETSTACK_CONF_WITH_IPV4
/* In case of IPv4: putchar() is defined by the SLIP driver */
int
putchar(int c)
{
uart1_writeb((char)c);
return c;
}
2016-05-02 17:13:26 +00:00
#endif /* NETSTACK_CONF_WITH_IPV4 */