#ifndef DMADRV_CONFIG_H #define DMADRV_CONFIG_H // <<< Use Configuration Wizard in Context Menu >>> // DMA interrupt priority <0-15> // Priority of the DMA interrupt. Smaller number equals higher priority. // Default: 8 #define EMDRV_DMADRV_DMA_IRQ_PRIORITY 8 // Number of available channels <1-8> // Number of DMA channels supported by the driver. A lower channel count // will reduce RAM memory footprint. The default is to support all channels // on the device. // Default: 8 #define EMDRV_DMADRV_DMA_CH_COUNT 8 // Number of fixed priority channels // This will configure channels [0, CH_PRIORITY - 1] as fixed priority, // and channels [CH_PRIORITY, CH_COUNT] as round-robin. // Default: 0 #define EMDRV_DMADRV_DMA_CH_PRIORITY 0 // <<< end of configuration section >>> #endif // DMADRV_CONFIG_H