diff options
| author | David Lechner <david@pybricks.com> | 2022-07-01 16:02:10 -0500 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2022-07-18 13:50:34 +1000 |
| commit | 2d8589f1a5a04b9f3f2c96b5f99f9b8e740af594 (patch) | |
| tree | c25d12a978377b55abd29ac023951a03207dbfa2 | |
| parent | 816e4537f27ce6e1737225dbfaece0ec75150913 (diff) | |
teensy/mpconfigport: Drop unused root pointers.
pin_class_mapper and pin_class_map_dict are not used in the teensy port and
can be removed.
Signed-off-by: David Lechner <david@pybricks.com>
| -rw-r--r-- | ports/teensy/mpconfigport.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ports/teensy/mpconfigport.h b/ports/teensy/mpconfigport.h index b870263df..e57fae15e 100644 --- a/ports/teensy/mpconfigport.h +++ b/ports/teensy/mpconfigport.h @@ -42,8 +42,6 @@ extern const struct _mp_obj_module_t pyb_module; #define MP_STATE_PORT MP_STATE_VM #define MICROPY_PORT_ROOT_POINTERS \ - mp_obj_t pin_class_mapper; \ - mp_obj_t pin_class_map_dict; \ struct _pyb_uart_obj_t *pyb_stdio_uart; \ // type definitions for the specific machine |
