We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80fb12b commit d2cbb39Copy full SHA for d2cbb39
boards/ESP32S3_IDF4.py
@@ -146,9 +146,10 @@
146
boards = [ board_esp32 ];
147
148
def get_pins():
149
- # Todo review as ESP32-S3 has there are 45 Physical GPIO pins Numbered 0->21 and 26->48
+ # ESP32-S3 has 45 Physical GPIO pins Numbered 0->21 and 26->48
150
# see https://www.espressif.com/sites/default/files/documentation/esp32-s3_technical_reference_manual_en.pdf
151
- pins = pinutils.generate_pins(0,39) # 40 General Purpose I/O Pins.
+ pins = pinutils.generate_pins(0,48)
152
+ # TODO: we could delete 22..25 as ESP32-S3 doesn't seem to have those
153
154
# I2C added for issue #2589 - all decided by user (not defined in specs)
155
pinutils.findpin(pins, "PD8", True)["functions"]["I2C1_SDA"]=0;
0 commit comments