Hello. I am working on writing software to interface with a LIN bus via the UART Extend peripheral found on the MSPM0G3519 processor. By following the LIN reception section of 23.2.3.7 Local Interconnect Network (LIN) Support in the Technical Reference Manual, I was able to detect break fields and sync bytes. During the sync byte detection, five interrupts are triggered (RXNE) to record the timings of each bit (LINC0 and LINC1 registers) within the sync byte. To reduce the number of interrupts, I was looking to see if I can use the DMA peripheral to save these timings. The DMA transfer would send the values of the LINC0 and LINC1 registers to buffers in RAM once the RXNE interrupt is triggered. In 23.2.7.2 DMA Trigger Publisher of the reference manual, it does not list the RXNE interrupt as one that the DMA supports for the UART peripheral. Are there other possible strategies to routing the RXNE interrupt event to the DMA peripheral? Maybe I can route the interrupt event to the GENERIC_SUBx_TRIG trigger via the "events manager"? If so, how would I accomplish this? Thank you!