UART interface. More...
#include <xdc/std.h>
Include dependency graph for uart.h:
This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Macros | |
| #define | UART_RX_BUF_SIZE 32 |
| UART RX buffer size. | |
| #define | UART_TX_BUF_SIZE 128 |
| UART TX buffer size. | |
Functions | |
| void | uart_init () |
| UART initialization. More... | |
| UInt16 | uart_proccess () |
| UART process. More... | |
| UInt8 | uart_startFrame (UInt8 len, UInt8 cmd0, UInt8 cmd1) |
| Start frame. More... | |
| void | uart_endFrame () |
| End frame. More... | |
| UInt8 | uart_snd (UInt8 len, void *pBuf) |
| Send. More... | |
| void | USCIA0RX_ISR () |
| USCIA0 RX ISR. More... | |
| void | USCIA0TX_ISR () |
| USCIA0 TX ISR. More... | |
| void | uart_sndnextchar () |
| Send next char. More... | |
| UInt8 | uart_txBufFree () |
| TX buffer free. More... | |
| UInt8 | uart_sndInt64 (int64_t *p) |
| Send Int64. More... | |
| UInt8 | uart_sndUInt64 (uint64_t *p) |
| Send UInt64. More... | |
| UInt8 | uart_sndUInt48 (uint64_t *p) |
| Send UInt48. More... | |
| UInt8 | uart_sndUInt32 (UInt32 *p) |
| Send UInt32. More... | |
| UInt8 | uart_sndUInt16 (UInt16 v) |
| Send UInt16. More... | |
| UInt8 | uart_sndUInt8 (UInt8 v) |
| Send UInt8. More... | |
| UInt8 | uart_forwardCmd (char *pBuf) |
| Forward command. More... | |
UART interface.
Definition in file uart.h.