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.

How to disable RTS/CTS flow control in HostTestAPP project?

Other Parts Discussed in Thread: CC2541

I am using CC2541 Mini Development Kits

How to disable RTS/CTS flow control in HostTestAPP project?

I find the code in C:\Texas Instruments\BLE-CC254x-1.3.2\Components\hal\target\CC2540EB\_hal_uart_dma.c

#define HAL_UART_Px_CTS 0x10 // Peripheral I/O Select for CTS flow control.
#define HAL_UART_Px_RTS 0x20 // Peripheral I/O Select for RTS must be manual.

if (DMA_PM || config->flowControl) {
UxUCR = UCR_FLOW | UCR_STOP; // 8 bits/char; no parity; 1 stop bit; stop bit hi.
PxSEL |= HAL_UART_Px_CTS; // Enable Peripheral control of CTS flow control on Px. }
else {
UxUCR = UCR_STOP; // 8 bits/char; no parity; 1 stop bit; stop bit hi. }

Does this code can disable the RTS/CTS ???