forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9841 from tannewt/esp32p4
Enable USB on ESP32-P4
- Loading branch information
Showing
17 changed files
with
86 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
ports/espressif/boards/espressif_esp32p4_function_ev/mpconfigboard.mk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# USB_VID = 0x303A | ||
# USB_PID = 0x7003 | ||
# USB_PRODUCT = "ESP32-P4-Function-EV" | ||
# USB_MANUFACTURER = "Espressif" | ||
USB_VID = 0x303A | ||
USB_PID = 0x7013 | ||
USB_PRODUCT = "ESP32-P4-Function-EV" | ||
USB_MANUFACTURER = "Espressif" | ||
|
||
IDF_TARGET = esp32p4 | ||
|
||
CIRCUITPY_ESP_FLASH_SIZE = 16MB | ||
CIRCUITPY_ESP_FLASH_MODE = opi | ||
CIRCUITPY_ESP_FLASH_MODE = qio | ||
CIRCUITPY_ESP_FLASH_FREQ = 80m | ||
|
||
CIRCUITPY_ESP_PSRAM_SIZE = 32MB | ||
CIRCUITPY_ESP_PSRAM_MODE = opi | ||
CIRCUITPY_ESP_PSRAM_FREQ = 80m | ||
CIRCUITPY_ESP_PSRAM_MODE = hpi | ||
CIRCUITPY_ESP_PSRAM_FREQ = 200m |
14 changes: 7 additions & 7 deletions
14
ports/espressif/boards/solderparty_esp32p4_stamp_xl/mpconfigboard.mk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# USB_VID = 0x303A | ||
# USB_PID = 0x7003 | ||
# USB_PRODUCT = "ESP32-P4 Stamp XL" | ||
# USB_MANUFACTURER = "Solder Party" | ||
USB_VID = 0x1209 | ||
USB_PID = 0x0001 | ||
USB_PRODUCT = "ESP32-P4 Stamp XL" | ||
USB_MANUFACTURER = "Solder Party" | ||
|
||
IDF_TARGET = esp32p4 | ||
|
||
CIRCUITPY_ESP_FLASH_SIZE = 16MB | ||
CIRCUITPY_ESP_FLASH_MODE = opi | ||
CIRCUITPY_ESP_FLASH_MODE = qio | ||
CIRCUITPY_ESP_FLASH_FREQ = 80m | ||
|
||
CIRCUITPY_ESP_PSRAM_SIZE = 32MB | ||
CIRCUITPY_ESP_PSRAM_MODE = opi | ||
CIRCUITPY_ESP_PSRAM_FREQ = 80m | ||
CIRCUITPY_ESP_PSRAM_MODE = hpi | ||
CIRCUITPY_ESP_PSRAM_FREQ = 200m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# | ||
# Espressif IoT Development Framework Configuration | ||
# | ||
# | ||
# Component config | ||
# | ||
# | ||
# Bluetooth | ||
# | ||
# CONFIG_BT_ENABLED is not set | ||
# end of Bluetooth | ||
|
||
# | ||
# mbedTLS | ||
# | ||
# CONFIG_MBEDTLS_CMAC_C is not set | ||
# end of mbedTLS | ||
|
||
# end of Component config | ||
|
||
# end of Espressif IoT Development Framework Configuration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# For ESP32-P4 | ||
CONFIG_SPIRAM_SPEED_200M=y | ||
# CONFIG_SPIRAM_SPEED_20M is not set | ||
CONFIG_SPIRAM_SPEED=200 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# CONFIG_SPIRAM_MODE_QUAD is not set | ||
# CONFIG_SPIRAM_MODE_OCT is not set | ||
CONFIG_SPIRAM_MODE_HEX=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters