Added support for the FTP standalone client to the c64 target.
[contiki-2.x.git] / cpu / mc1322x / debug-uart.h
blob628e99e8f9adca26de26642b37a33d3f2249d7c8
1 #ifndef __DEBUG_UART_H__1V2039076V__
2 #define __DEBUG_UART_H__1V2039076V__
4 #ifndef dbg_setup_uart
5 #define dbg_setup_uart dbg_setup_uart_default
6 #endif
8 void
9 dbg_setup_uart();
11 void
12 dbg_set_input_handler(void (*handler)(const char *inp, unsigned int len));
14 unsigned int
15 dbg_send_bytes(const unsigned char *seq, unsigned int len);
18 void
19 dbg_putchar(const char ch);
21 void
22 dbg_blocking_putchar(const char ch);
24 void
25 dbg_drain();
27 #endif /* __DEBUG_UART_H__1V2039076V__ */