We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db75b67 commit 17b9144Copy full SHA for 17b9144
src/rp2_common/hardware_dma/include/hardware/dma.h
@@ -556,6 +556,7 @@ static inline uint32_t dma_encode_transfer_count(uint transfer_count) {
556
*/
557
static inline uint32_t dma_encode_transfer_count_with_self_trigger(uint transfer_count) {
558
#if PICO_RP2040
559
+ (void)transfer_count;
560
panic_unsupported();
561
#else
562
return dma_encode_transfer_count(transfer_count) | (DMA_CH0_TRANS_COUNT_MODE_VALUE_TRIGGER_SELF << DMA_CH0_TRANS_COUNT_MODE_LSB);
0 commit comments