#include <uart.h>
Functions | |
| void | uart_send_char (char val) |
| Send one char to uart. | |
| char | uart_get_char (void) |
| Read one char from uart. | |
| void | init_uart (void) |
| Initialize UART - platform dependent. | |
| void | send_rs_str (const char data[]) |
| Send string to serial output in ASCII code. | |
| void | send_rs_int (int val) |
| Send int value to serial output in ASCII code. | |
| void init_uart | ( | void | ) |
Initialize UART - platform dependent.

| void send_rs_int | ( | int | val | ) |
Send int value to serial output in ASCII code.
Removes unused zeros.
| val | value to print |

| void send_rs_str | ( | const char | data[] | ) |
Send string to serial output in ASCII code.
| data[] | string to print |

| char uart_get_char | ( | void | ) |
Read one char from uart.

| void uart_send_char | ( | char | val | ) |
Send one char to uart.

1.7.1