File tree Expand file tree Collapse file tree 3 files changed +38
-0
lines changed
ports/esp32/boards/ESP32_S2_WROVER Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ set (IDF_TARGET esp32s2 )
2
+
3
+ set (SDKCONFIG_DEFAULTS
4
+ boards/sdkconfig.base
5
+ boards/sdkconfig.spiram_sx
6
+ boards/sdkconfig.usb
7
+ boards/ESP32_S2_WROVER/sdkconfig.board
8
+ )
9
+
10
+ if (NOT MICROPY_FROZEN_MANIFEST )
11
+ set (MICROPY_FROZEN_MANIFEST ${MICROPY_PORT_DIR} /boards/manifest.py )
12
+ endif ()
Original file line number Diff line number Diff line change
1
+ #define MICROPY_HW_BOARD_NAME "ESP32-S2-WROVER"
2
+ #define MICROPY_HW_MCU_NAME "ESP32-S2"
3
+
4
+ #define MICROPY_PY_BLUETOOTH (0)
5
+ #define MICROPY_HW_ENABLE_SDCARD (0)
6
+
7
+ #define MICROPY_HW_I2C0_SCL (7)
8
+ #define MICROPY_HW_I2C0_SDA (6)
9
+
10
+ #define MICROPY_HW_SPI1_MOSI (35)
11
+ #define MICROPY_HW_SPI1_MISO (37)
12
+ #define MICROPY_HW_SPI1_SCK (36)
13
+ #define MICROPY_HW_SPI2_MOSI (11)
14
+ #define MICROPY_HW_SPI2_MISO (13)
15
+ #define MICROPY_HW_SPI2_SCK (12)
Original file line number Diff line number Diff line change
1
+ CONFIG_FLASHMODE_QIO=y
2
+ CONFIG_ESPTOOLPY_FLASHFREQ_80M=y
3
+ CONFIG_ESPTOOLPY_FLASHSIZE_DETECT=y
4
+ CONFIG_ESPTOOLPY_AFTER_NORESET=y
5
+
6
+ CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
7
+ CONFIG_USB_AND_UART=y
8
+
9
+ # LWIP
10
+ CONFIG_LWIP_LOCAL_HOSTNAME="ESP32-S2-WROVER"
11
+ # end of LWIP
You can’t perform that action at this time.
0 commit comments