Skip to content

Commit be28fd8

Browse files
authored
Merge pull request #3438 from NXPmicro/SERIAL_ASYNC_API
K64F: Add support for SERIAL ASYNCH API
2 parents 4f9e9f6 + ece7b6f commit be28fd8

File tree

4 files changed

+439
-38
lines changed

4 files changed

+439
-38
lines changed

targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/dma_reqs.h

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,18 @@
4545
kDmaRequestMux0SPI0Rx, kDmaRequestMux0SPI1, kDmaRequestMux0SPI2 \
4646
}
4747

48+
/* Array for UART DMA TX requests */
49+
#define UART_DMA_TX_REQUEST_NUMBERS \
50+
{ \
51+
kDmaRequestMux0UART0Tx, kDmaRequestMux0UART1Tx, kDmaRequestMux0UART2Tx, \
52+
kDmaRequestMux0UART3Tx, kDmaRequestMux0UART4, kDmaRequestMux0UART5 \
53+
}
54+
55+
/* Array for UART DMA RX requests */
56+
#define UART_DMA_RX_REQUEST_NUMBERS \
57+
{ \
58+
kDmaRequestMux0UART0Rx, kDmaRequestMux0UART1Rx, kDmaRequestMux0UART2Rx, \
59+
kDmaRequestMux0UART3Rx, kDmaRequestMux0UART4, kDmaRequestMux0UART5 \
60+
}
61+
4862
#endif /* _FSL_DMA_REQS_H_ */

0 commit comments

Comments
 (0)