CC2538: Add hardware flow control (RTS/CTS) support on UART1.

This commit is contained in:
Ian Martin 2014-06-03 12:38:24 -04:00
parent 4197cccbd6
commit 274b3dcd0b
2 changed files with 20 additions and 4 deletions

View file

@ -165,6 +165,8 @@
/** \name UART_CTL Register Bit-Masks
* @{
*/
#define UART_CTL_CTSEN 0x00008000 /**< UART CTS flow-control enable (UART1 only) */
#define UART_CTL_RTSEN 0x00004000 /**< UART RTS flow-control enable (UART1 only) */
#define UART_CTL_RXE 0x00000200 /**< UART receive enable */
#define UART_CTL_TXE 0x00000100 /**< UART transmit enable */
#define UART_CTL_LBE 0x00000080 /**< UART loop back enable */