#include <avr/pgmspace.h>
Go to the source code of this file.
|
| void | uart_init (unsigned int baudrate) |
| | Initialize UART and set baudrate. More...
|
| |
| unsigned int | uart_getc (void) |
| | Get received byte from ringbuffer. More...
|
| |
| void | uart_putc (unsigned char data) |
| | Put byte to ringbuffer for transmitting via UART. More...
|
| |
| void | uart_puts (const char *s) |
| | Put string to ringbuffer for transmitting via UART. More...
|
| |
| void | uart_puts_p (const char *s) |
| | Put string from program memory to ringbuffer for transmitting via UART. More...
|
| |
| void | uart1_init (unsigned int baudrate) |
| | Initialize USART1 (only available on selected ATmegas) More...
|
| |
| unsigned int | uart1_getc (void) |
| | Get received byte of USART1 from ringbuffer. (only available on selected ATmega) More...
|
| |
| void | uart1_putc (unsigned char data) |
| | Put byte to ringbuffer for transmitting via USART1 (only available on selected ATmega) More...
|
| |
| void | uart1_puts (const char *s) |
| | Put string to ringbuffer for transmitting via USART1 (only available on selected ATmega) More...
|
| |
| void | uart1_puts_p (const char *s) |
| | Put string from program memory to ringbuffer for transmitting via USART1 (only available on selected ATmega) More...
|
| |