osd-contiki/cpu/msp430/dev/uart1-putchar.c

12 lines
215 B
C
Raw Normal View History

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