bugfix_#7706
This commit is contained in:
parent
d7fb21ec76
commit
208c081c95
|
@ -341,7 +341,10 @@ STATIC mp_obj_t rp2pio_statemachine_run(mp_obj_t self_obj, mp_obj_t instruction_
|
||||||
mp_buffer_info_t bufinfo;
|
mp_buffer_info_t bufinfo;
|
||||||
mp_get_buffer_raise(instruction_obj, &bufinfo, MP_BUFFER_READ);
|
mp_get_buffer_raise(instruction_obj, &bufinfo, MP_BUFFER_READ);
|
||||||
|
|
||||||
common_hal_rp2pio_statemachine_run(self, bufinfo.buf, bufinfo.len);
|
if (bufinfo.len % 2 != 0) {
|
||||||
|
mp_raise_ValueError(translate("Program size invalid"));
|
||||||
|
}
|
||||||
|
common_hal_rp2pio_statemachine_run(self, bufinfo.buf, (size_t)bufinfo.len / 2);
|
||||||
return mp_const_none;
|
return mp_const_none;
|
||||||
}
|
}
|
||||||
MP_DEFINE_CONST_FUN_OBJ_2(rp2pio_statemachine_run_obj, rp2pio_statemachine_run);
|
MP_DEFINE_CONST_FUN_OBJ_2(rp2pio_statemachine_run_obj, rp2pio_statemachine_run);
|
||||||
|
|
Loading…
Reference in New Issue