2017-11-22 00:53:42 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2017-11-22 01:23:59 +00:00
|
|
|
#include "contiki.h"
|
|
|
|
|
2009-07-11 14:26:28 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <debug-uart.h>
|
|
|
|
#include <string.h>
|
2017-11-22 00:53:42 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2009-07-11 14:26:28 +00:00
|
|
|
int
|
|
|
|
puts(const char *str)
|
|
|
|
{
|
2017-11-22 00:58:50 +00:00
|
|
|
dbg_send_bytes((unsigned char *)str, strlen(str));
|
2009-07-11 14:26:28 +00:00
|
|
|
dbg_putchar('\n');
|
|
|
|
return 0;
|
|
|
|
}
|
2017-11-22 00:53:42 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|