Hello,
I'm using the MKL17Z32 with MCUExpresso and SDK v2.8.0.
This microcontroller has 2 LPUART (LPUART0 and LPUart1) and 1 UART (UART2)
I don't know the real difference in term of behavior between LPUART and UART, but my main need is to have an RS485 link and 2 Serial port.
Then I want use the 2 LPUART for the Serial port (to communicatte in serial way with other device) and use the UART2 with an RS485 transceiver.
By yhe past, I already write a simple code to send and get byte trhought the UART with buffer mechanisum using the uart_adapter.
Then on MCUExpresso, on SDK componaents, I add:
-Drivers\lpuart
-Drivers\uart
-Utilities\uart_adapter
-Utilities\lpuart_adapter
But the uart_adapter and lpuart_adapter has the same API.
So on compile time, there are conflict because API are define twice.
Is the conclusion is: We can't use both the lpuart_adapter and uart_adapter in the same time?
Thank