Hi @Vamshi_,
I believe it is possible, but you will have configure some things manually, such as separating Tx&Rx interrupts, and only initializing DMA for Tx.
1. When configuring "LPUART_UART_IP_USING_DMA", both Tx & Rx channels are needed. You must route these two to a DMA channel if you want to generate Config Tools code.
2. Enable CTRL[RIE] for Rx interrupts and disable CTRL[TIE] for Tx interrupts.
3. In your main code:
TX (DMA): call Lpuart_Uart_Ip_AsyncTransmit() (it uses DMA when LPUART_IP_USING_DMA is enabled).
RX (interrupt): call Lpuart_Uart_Ip_AsyncReceive() and install user callback. Keep regularly resetting the RX buffer in the LPUART_UART_IP_EVENT_RX_FULL callback (with Lpuart_Uart_Ip_SetRxBuffer()) for continuous reception.
I have not tested this, since it is a somewhat corner case, but I believe it should work.
Additionally, you can enable DMA ISR instead of separating the channels, if this fills your requirements instead.
I can try testing the configuration, however it will take some time.
Best regards,
Julián