Skip to content

Commit e8194a6

Browse files
authored
Merge pull request #7967 from bojanpotocnik/add_missing_esp32s3_pins
Add missing ESP32-S3 pins to microcontroller module
2 parents 137e556 + 74624e7 commit e8194a6

File tree

1 file changed

+6
-0
lines changed
  • ports/espressif/common-hal/microcontroller

1 file changed

+6
-0
lines changed

ports/espressif/common-hal/microcontroller/__init__.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,5 +304,11 @@ STATIC const mp_rom_map_elem_t mcu_pin_global_dict_table[] = {
304304
#ifdef GPIO46_EXISTS
305305
{ MP_ROM_QSTR(MP_QSTR_GPIO46), MP_ROM_PTR(&pin_GPIO46) },
306306
#endif
307+
#ifdef GPIO47_EXISTS
308+
{ MP_ROM_QSTR(MP_QSTR_GPIO47), MP_ROM_PTR(&pin_GPIO47) },
309+
#endif
310+
#ifdef GPIO48_EXISTS
311+
{ MP_ROM_QSTR(MP_QSTR_GPIO48), MP_ROM_PTR(&pin_GPIO48) },
312+
#endif
307313
};
308314
MP_DEFINE_CONST_DICT(mcu_pin_globals, mcu_pin_global_dict_table);

0 commit comments

Comments
 (0)