An issue exists in the pinout for the M5Stack CoreS3. D5 and D6 both map onto GPIO6. It is therefore not possible to use GPIO5. D5 should instead map onto GPIO5 (and probably A5 too to follow the file convention).
|
{ MP_ROM_QSTR(MP_QSTR_D6), MP_ROM_PTR(&pin_GPIO6) }, |
|
{ MP_ROM_QSTR(MP_QSTR_A6), MP_ROM_PTR(&pin_GPIO6) }, |
|
{ MP_ROM_QSTR(MP_QSTR_D5), MP_ROM_PTR(&pin_GPIO6) }, |
An issue exists in the pinout for the M5Stack CoreS3. D5 and D6 both map onto GPIO6. It is therefore not possible to use GPIO5. D5 should instead map onto GPIO5 (and probably A5 too to follow the file convention).
circuitpython/ports/espressif/boards/m5stack_cores3/pins.c
Lines 44 to 46 in 234ebf4