UART driver implementation for a CC26XX UART controller.
============================================================================
The UART header file should be included in an application as follows:
Refer to UART.h for a complete description of APIs.
The general UART API should used in application code, i.e. UART_open() is used instead of UARTCC26XX_open(). The board file will define the device specific config, and casting in the general API will ensure that the correct device specific functions are called. This is also reflected in the example code in Use Cases. This driver does not support polling modes for UART_read() and UART_write(). Text mode (e.g., read returns on receiving a newline character) is also not supported by this driver. If polling mode or text mode are needed, the UARTCC26X2 driver can be used instead.
Before using the UART in CC26XX:
The following is true for receive operation:
The following apply for transmit operation:
If UART is no longer needed by application:
If the UART is configured in UART_MODE_CALLBACK mode:
If an error occurs during read operation:
If a timeout occurs during a write, an UART_ERROR will be returned and the UART_Object.status will be set to UART_TIMED_OUT. All bytes that are not transmitted, will be flushed. If flow control is not enabled, the UARTCC26XX_Object.writeTimeout should be kept at default value, BIOS_WAIT_FOREVER. The write call will return after all bytes are transmitted. If flow control is enabled, the timeout should be set by the application in order to recover if the receiver gets stuck.
A timeout value can only be specified for reads and writes in UART_MODE_BLOCKING. If a timeout occurs during a read when in UART_MODE_BLOCKING, the number of bytes received will be returned and the UART_Object.status will be set to UART_TIMED_OUT. After a read timeout, RX will remain on, but device is allowed to enter standby. For more details see Power Management chapter below.
In UART_MODE_CALLBACK there is no timeout and the application must call UART_readCancel() or UART_writeCancel() to abort the operation.
It's safe to call UART_close() during an ongoing UART_read() and/or UART_write(), this will cancel the ongoing RX/TX immediately.
The RX callback is alwyas called when you call UART_close() if there's an ongoing read. Note that if UART_close() is called during an ongoing read, the size provided in the RX callback function is 0 if < 16 bytes were received before calling UART_close(). This is because 16 bytes is the RX watermark that triggers the ISR to copy bytes from the internal UART FIFO to the software RX buffer.
The TX callback is always called when you call UART_close() if there's an ongoing write. The driver does not wait until a byte is transmitted correctly, so if UART_close() is called in the middle of sending a byte, this byte will be corrupted.
The TI-RTOS power management framework will try to put the device into the most power efficient mode whenever possible. Please see the technical reference manual for further details on each power mode.
The UARTCC26XX driver is setting a power constraint during operation to keep the device out of standby. When the operation has finished, the power constraint is released. The following statements are valid:
To enable Flow Control, the RTS and CTS pins must be assigned in the UARTCC26XX_HWAttrsV2:
If the RTS and CTS pins are set to GPIO_INVALID_INDEX, the flow control is disabled. An example is shown in the UARTCC26XX_HWAttrsV2 description.
Generic API function | API function | Description |
---|---|---|
UART_init() | UARTCC26XX_init() | Initialize UART driver |
UART_open() | UARTCC26XX_open() | Initialize UART HW and set system dependencies |
UART_close() | UARTCC26XX_close() | Disable UART HW and release system dependencies |
UART_control() | UARTCC26XX_control() | Configure an already opened UART handle |
UART_read() | UARTCC26XX_read() | Start read from UART |
UART_readCancel() | UARTCC26XX_readCancel() | Cancel ongoing read from UART |
UART_write() | UARTCC26XX_write() | Start write to UART |
UART_writeCancel() | UARTCC26XX_writeCancel() | Cancel ongoing write to UART |
The CC26XX UART driver currently does not support:
For polling mode or text processing, the UARTCC26X2 driver can be used.
Receive 100 bytes over UART in UART_MODE_BLOCKING.
This use case will read in UART_MODE_BLOCKING until the wanted amount of bytes is received or until a started reception is inactive for a 32-bit period. This UART_read() call can also be used when unknown amount of bytes shall be read. Note: The partial return is also possible in UART_MODE_CALLBACK mode.
This case will configure the UART to send the data in txBuf in BLOCKING_MODE.
This case will configure the UART to receive and transmit continously in UART_MODE_CALLBACK, 16 bytes at the time and transmit them back via UART TX. Note that UART_Params.readTimeout is not in use when using UART_MODE_CALLBACK mode.
The CC26xx driver supports baud rates up to 3Mbaud. However, when receiving more than 32 bytes back-to-back the baud rate is limited to approximately 2Mbaud. The throughput is also dependent on the user application.
There are no additional stack requirements for calling UART_read() within its own callback.
The UART driver interface produces log statements if instrumentation is enabled.
Diagnostics Mask | Log details |
---|---|
Diags_USER1 | basic UART operations performed |
Diags_USER2 | detailed UART operations performed |
#include <stdint.h>
#include <stdbool.h>
#include <ti/drivers/UART.h>
#include <ti/drivers/GPIO.h>
#include <ti/drivers/Power.h>
#include <ti/drivers/utils/RingBuf.h>
#include <ti/devices/DeviceFamily.h>
#include <DeviceFamily_constructPath(driverlib/uart.h)>
#include <ti/drivers/dpl/HwiP.h>
#include <ti/drivers/dpl/SwiP.h>
#include <ti/drivers/dpl/ClockP.h>
#include <ti/drivers/dpl/SemaphoreP.h>
Go to the source code of this file.
Data Structures | |
struct | UARTCC26XX_HWAttrsV2 |
UARTCC26XX Hardware attributes. More... | |
struct | UARTCC26XX_Object |
UARTCC26XX Object. More... | |
Macros | |
#define | UARTCC26XX_CMD_RETURN_PARTIAL_ENABLE (UART_CMD_RESERVED + 0) |
Command used by UART_control to enable partial return. More... | |
#define | UARTCC26XX_CMD_RETURN_PARTIAL_DISABLE (UART_CMD_RESERVED + 1) |
Command used by UART_control to disable partial return. More... | |
#define | UARTCC26XX_CMD_RX_FIFO_FLUSH (UART_CMD_RESERVED + 2) |
Command used by UART_control to flush the RX FIFO. More... | |
#define | UARTCC26XX_FIFO_SIZE 32 |
#define | UARTCC26XX_RETURN_PARTIAL_ENABLE UARTCC26XX_CMD_RETURN_PARTIAL_ENABLE |
#define | UARTCC26XX_RETURN_PARTIAL_DISABLE UARTCC26XX_CMD_RETURN_PARTIAL_DISABLE |
Typedefs | |
typedef void(* | UARTCC26XX_ErrorCallback) (UART_Handle handle, uint32_t error) |
The definition of an optional callback function used by the UART driver to notify the application when a receive error (FIFO overrun, parity error, etc) occurs. More... | |
typedef struct UARTCC26XX_Object * | UARTCC26XX_Handle |
Enumerations | |
enum | UARTCC26XX_FifoThreshold { UARTCC26XX_FIFO_THRESHOLD_DEFAULT = 0, UARTCC26XX_FIFO_THRESHOLD_1_8, UARTCC26XX_FIFO_THRESHOLD_2_8, UARTCC26XX_FIFO_THRESHOLD_4_8, UARTCC26XX_FIFO_THRESHOLD_6_8, UARTCC26XX_FIFO_THRESHOLD_7_8 } |
UART TX/RX interrupt FIFO threshold select. More... | |
enum | UART_Status { UART_TIMED_OUT = 0x10, UART_PARITY_ERROR = UART_RXERROR_PARITY, UART_BRAKE_ERROR = UART_RXERROR_BREAK, UART_OVERRUN_ERROR = UART_RXERROR_OVERRUN, UART_FRAMING_ERROR = UART_RXERROR_FRAMING, UART_OK = 0x0 } |
UART status. More... | |
Variables | |
const UART_FxnTable | UARTCC26XX_fxnTable |
#define UARTCC26XX_FIFO_SIZE 32 |
Size of the TX and RX FIFOs is 32 items
#define UARTCC26XX_RETURN_PARTIAL_ENABLE UARTCC26XX_CMD_RETURN_PARTIAL_ENABLE |
#define UARTCC26XX_RETURN_PARTIAL_DISABLE UARTCC26XX_CMD_RETURN_PARTIAL_DISABLE |
typedef void(* UARTCC26XX_ErrorCallback) (UART_Handle handle, uint32_t error) |
The definition of an optional callback function used by the UART driver to notify the application when a receive error (FIFO overrun, parity error, etc) occurs.
UART_Handle | UART_Handle |
error | The current value of the receive status register. |
typedef struct UARTCC26XX_Object * UARTCC26XX_Handle |
UART TX/RX interrupt FIFO threshold select.
Defined FIFO thresholds for generation of both TX interrupt and RX interrupt. The default value (UARTCC26XX_FIFO_THRESHOLD_DEFAULT) is defined for backward compatibility handling.
enum UART_Status |
const UART_FxnTable UARTCC26XX_fxnTable |