nes-proj/arch/cpu/msp430/dev/uart0-putchar.c

40 lines
1.1 KiB
C
Raw Normal View History

/*---------------------------------------------------------------------------*/
#include "contiki.h"
2016-05-02 17:13:26 +00:00
#include "dev/uart0.h"
2010-08-24 16:23:20 +00:00
#include <string.h>
/*---------------------------------------------------------------------------*/
#define SLIP_END 0300
#undef putchar
/*---------------------------------------------------------------------------*/
2010-08-24 16:23:20 +00:00
int
putchar(int c)
{
#if SLIP_ARCH_CONF_ENABLED
static char debug_frame = 0;
if(!debug_frame) { /* Start of debug output */
uart0_writeb(SLIP_END);
uart0_writeb('\r'); /* Type debug line == '\r' */
debug_frame = 1;
}
#endif /* SLIP_ARCH_CONF_ENABLED */
/* Need to also print '\n' because for example COOJA will not show
any output before line end */
2010-08-24 16:23:20 +00:00
uart0_writeb((char)c);
#if SLIP_ARCH_CONF_ENABLED
/*
* Line buffered output, a newline marks the end of debug output and
* implicitly flushes debug output.
*/
if(c == '\n') {
uart0_writeb(SLIP_END);
debug_frame = 0;
}
#endif /* SLIP_ARCH_CONF_ENABLED */
2010-08-24 16:23:20 +00:00
return c;
}
/*---------------------------------------------------------------------------*/