This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

RTOS/CC1310: Does cc13x0_sdk_1.30 support UART read/write operations between tasks in blocking mode?

Part Number: CC1310

Tool/software: TI-RTOS

According to the post: 

e2e.ti.com/.../495815

Richard W. posted May 19, 2016 10:16 AM:

you perform concurrent UART read/write operations from within two different tasks in blocking mode. This is not possible. Instead, you must use the UART in callback mode and synchronize calls to UART_read() and UART_write() between your tasks.

  • Hi,
    you can perform UART_read() and UART_write() from within two different tasks, but you cannot start two concurrent read or two concurrent write operations from within different tasks. That's what I have written in the linked thread.