@@ -96,7 +96,7 @@ static void rp2pio_statemachine_clear_dma_write(int pio_index, int sm) {
96
96
if (!dma_hw -> inte0 ) {
97
97
irq_set_mask_enabled (1 << DMA_IRQ_0 , false);
98
98
}
99
- MP_STATE_PORT (background_pio )[channel_write ] = NULL ;
99
+ MP_STATE_PORT (background_pio_write )[channel_write ] = NULL ;
100
100
dma_channel_abort (channel_write );
101
101
dma_channel_unclaim (channel_write );
102
102
}
@@ -111,7 +111,7 @@ static void rp2pio_statemachine_clear_dma_read(int pio_index, int sm) {
111
111
if (!dma_hw -> inte0 ) {
112
112
irq_set_mask_enabled (1 << DMA_IRQ_0 , false);
113
113
}
114
- MP_STATE_PORT (background_pio )[channel_read ] = NULL ;
114
+ MP_STATE_PORT (background_pio_read )[channel_read ] = NULL ;
115
115
dma_channel_abort (channel_read );
116
116
dma_channel_unclaim (channel_read );
117
117
}
@@ -1229,7 +1229,7 @@ bool common_hal_rp2pio_statemachine_background_write(rp2pio_statemachine_obj_t *
1229
1229
1230
1230
// Acknowledge any previous pending interrupt
1231
1231
dma_hw -> ints0 |= 1u << channel_write ;
1232
- MP_STATE_PORT (background_pio )[channel_write ] = self ;
1232
+ MP_STATE_PORT (background_pio_write )[channel_write ] = self ;
1233
1233
dma_hw -> inte0 |= 1u << channel_write ;
1234
1234
1235
1235
irq_set_mask_enabled (1 << DMA_IRQ_0 , true);
@@ -1393,9 +1393,9 @@ bool common_hal_rp2pio_statemachine_background_read(rp2pio_statemachine_obj_t *s
1393
1393
common_hal_mcu_disable_interrupts ();
1394
1394
// Acknowledge any previous pending interrupt
1395
1395
dma_hw -> ints1 |= 1u << channel_read ;
1396
- MP_STATE_PORT (background_pio )[channel_read ] = self ;
1396
+ MP_STATE_PORT (background_pio_read )[channel_read ] = self ;
1397
1397
dma_hw -> inte1 |= 1u << channel_read ;
1398
- irq_set_mask_enabled (1 << DMA_IRQ_1 , true);
1398
+ irq_set_mask_enabled (1 << DMA_IRQ_0 , true);
1399
1399
dma_start_channel_mask ((1u << channel_read ));
1400
1400
common_hal_mcu_enable_interrupts ();
1401
1401
@@ -1485,4 +1485,5 @@ mp_obj_t common_hal_rp2pio_statemachine_get_last_write(rp2pio_statemachine_obj_t
1485
1485
1486
1486
// Use a compile-time constant for MP_REGISTER_POINTER so the preprocessor will
1487
1487
// not split the expansion across multiple lines.
1488
- MP_REGISTER_ROOT_POINTER (mp_obj_t background_pio [enum_NUM_DMA_CHANNELS ]);
1488
+ MP_REGISTER_ROOT_POINTER (mp_obj_t background_pio_read [enum_NUM_DMA_CHANNELS ]);
1489
+ MP_REGISTER_ROOT_POINTER (mp_obj_t background_pio_write [enum_NUM_DMA_CHANNELS ]);
0 commit comments