Proxy Application

Linux Drivers

Release Date
2023-07-22

The proxy example application is located in the same git repo. However, it must be modified to utilize the additional channels. In the example, we’ll keep the application consistent with the number of channels described in the device tree. Below we update the names of the DMA Channels to match the names in the device tree.

#define TX_CHANNEL_COUNT 3 #define RX_CHANNEL_COUNT 3 const char *tx_channel_names[] = { "dma_proxy_tx_0", "dma_proxy_tx_1", "dma_proxy_tx_2" }; const char *rx_channel_names[] = { "dma_proxy_rx_0", "dma_proxy_rx_1", "dma_proxy_rx_2" };