Hi all,
I will use UART with DMA on P0.2, P0.3 by disabling Flowcontrol. On P0.5 I connect a LED(with driver).
I set the uartConfig.flowControl = FALSE; After Reading LED is ON. So in debug Mode I find this instructions
in the uint16 HalUARTReadDMA(uint8 *buf, uint16 len) PxOUT &= ~HAL_UART_Px_RTS; // Re-enable the flow on any read.
and this one PxOUT |= HAL_UART_Px_RTS; // Disable Rx flow in the void HalUARTPollDMA(void)
that mean this functions do not consider uartConfig.flowControl = FALSE falg? and set my P0.2 to 1 and the LED is on
how can I solv this
Thanks