mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-05 04:05:34 +00:00
00224dd7eb
still need set __putc as a fuction pointer to the uart_putc
11 lines
161 B
C
11 lines
161 B
C
#ifndef PUT_H
|
|
#define PUT_H
|
|
|
|
void putchr(char c);
|
|
void putstr(char *s);
|
|
void put_hex(uint8_t x);
|
|
void put_hex16(uint16_t x);
|
|
void put_hex32(uint32_t x);
|
|
|
|
#endif
|