Contiki-Inga 3.x
Main Page
Related Pages
Modules
Data Structures
Files
Examples
File List
Globals
cpu
arm
common
dbg-io
dbg-putchar.c
1
#include <stdio.h>
2
#include <debug-uart.h>
3
#include <string.h>
4
5
#undef putchar
6
#undef putc
7
8
int
9
putchar(
int
c)
10
{
11
dbg_putchar(c);
12
return
c;
13
}
14
15
int
16
putc(
int
c, FILE *f)
17
{
18
dbg_putchar(c);
19
return
c;
20
}
21
22
int
23
__sp(
struct
_reent *_ptr,
int
c, FILE *_p) {
24
dbg_putchar(c);
25
return
c;
26
}
Generated on Thu Apr 24 2014 16:26:13 for Contiki-Inga 3.x by
1.8.3.1