Skip to content

Commit 4e96667

Browse files
committed
Manual fix for oddball cases
1 parent c415c13 commit 4e96667

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

ports/raspberrypi/bindings/rp2pio/StateMachine.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,9 +313,8 @@ STATIC void check_for_deinit(rp2pio_statemachine_obj_t *self) {
313313

314314
//| def restart(self) -> None:
315315
//| """Resets this state machine, runs any init and enables the clock."""
316-
// TODO: "and any others given. They must share an underlying PIO. An exception will be raised otherwise.""
317316
//| ...
318-
//|
317+
// TODO: "and any others given. They must share an underlying PIO. An exception will be raised otherwise.""
319318
STATIC mp_obj_t rp2pio_statemachine_restart(mp_obj_t self_obj) {
320319
rp2pio_statemachine_obj_t *self = MP_OBJ_TO_PTR(self_obj);
321320
check_for_deinit(self);

shared-bindings/_eve/__init__.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@
4040
//| contains methods for constructing EVE command
4141
//| buffers and appending basic graphics commands."""
4242
//|
43-
4443
//| class _EVE:
44+
//| def __init__(self) -> None:
45+
//| """Create an _EVE object"""
4546
//|
46-
4747
typedef struct _mp_obj__EVE_t {
4848
mp_obj_base_t base;
4949
common_hal__eve_t _eve;

0 commit comments

Comments
 (0)