Question
Is there a good way to implement a UART driver that uses DMA and freeRTOS?
Posted on March 07, 2015 at 00:35
Is there a good way to implement a UART driver that uses DMA and freeRTOS? Or should I let the RXE TXNE interrupts handle the queueing and use no DMA?
It would be nice to use tha DMA to shuffle data to an array and then let the RTOS put them into a queue when possible.