Skip to content

Commit c8cf125

Browse files
authored
Merge pull request #4154 from LuminousOwl/fix-max-pio-instructions
Fix maximum PIO instructions
2 parents 482e583 + ae262cd commit c8cf125

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/raspberrypi/bindings/rp2pio/StateMachine.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ STATIC mp_obj_t rp2pio_statemachine_make_new(const mp_obj_type_t *type, size_t n
189189
if (bufinfo.len % 2 != 0) {
190190
mp_raise_ValueError(translate("Program size invalid"));
191191
}
192-
if (bufinfo.len > 32) {
192+
if (bufinfo.len > 64) {
193193
mp_raise_ValueError(translate("Program too large"));
194194
}
195195

0 commit comments

Comments
 (0)