![]() |
Contiki-NG
|
Files | |
| file | uart-arch.c |
| UART implementation for the gecko. | |
| file | uart-arch.h |
| UART header file for the gecko. | |
Functions | |
| void | uart_write (unsigned char *s, unsigned int len) |
| Writes to the UART driver. | |
| void | uart_set_input (int(*input)(unsigned char c)) |
| Sets the input handler called in the event handler. | |
| void | uart_init (void) |
| Initializa the UART driver. | |
| void uart_set_input | ( | int(*)(unsigned char c) | input | ) |
Sets the input handler called in the event handler.
| input | character that has been read |
Definition at line 77 of file uart-arch.c.
References input().
| void uart_write | ( | unsigned char * | s, |
| unsigned int | len ) |
Writes to the UART driver.
| s | character array to be transferred |
| len | length of character array |
Definition at line 71 of file uart-arch.c.
Referenced by dbg_putchar(), and dbg_send_bytes().