1) I enable the RTS, but disable the CTS, the RTS (Tx, Rx direction pin) is from high to low too early, so I can not send the "all" data to the rs-485 master.
LPUART_GetDefaultConfig(&config);
config.baudRate_Bps = ulBaudRate;
config.parityMode = parity;
config.enableRxRTS = true;
//config.enableTxCTS = true;
NVIC_SetPriority(RS485_LPUART_IRQn, 2);
status = LPUART_Init(RS485_LPUART, &config, RS485_LPUART_CLK_FREQ);
2) If I enable both RTS and CTS, I can not get the input from rs-485.
Can you give me some suggestions?