File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
ports/raspberrypi/bindings/rp2pio Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -309,7 +309,6 @@ STATIC void check_for_deinit(rp2pio_statemachine_obj_t *self) {
309
309
//| def restart(self) -> None:
310
310
//| """Resets this state machine, runs any init and enables the clock."""
311
311
// TODO: "and any others given. They must share an underlying PIO. An exception will be raised otherwise.""
312
- //| ...
313
312
STATIC mp_obj_t rp2pio_statemachine_restart (mp_obj_t self_obj ) {
314
313
rp2pio_statemachine_obj_t * self = MP_OBJ_TO_PTR (self_obj );
315
314
check_for_deinit (self );
Original file line number Diff line number Diff line change 40
40
//| contains methods for constructing EVE command
41
41
//| buffers and appending basic graphics commands."""
42
42
//|
43
- //| class _EVE: ...
43
+ //| class _EVE:
44
+ //| def __init__(self) -> None:
45
+ //| """Create an _EVE object"""
44
46
typedef struct _mp_obj__EVE_t {
45
47
mp_obj_base_t base ;
46
48
common_hal__eve_t _eve ;
You can’t perform that action at this time.
0 commit comments