mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 20:20:14 +01:00
This updates the esp_hosted component for ESP32-P4 boards to use the latest version 2.7.0. Testing on a P4 board with C6 WiFi shows there are no regressions for WiFi or BLE. Also rename the `CONFIG_ESP_ENABLE_BT` option to the new `CONFIG_ESP_HOSTED_ENABLE_BT_NIMBLE` option used by the component. This change is made partly to work around a current issue with the IDF component manager, that esp_hosted versions after 2.0.17 and prior to 2.7.0 have all disappeared. Signed-off-by: Damien George <damien@micropython.org>
25 lines
693 B
YAML
25 lines
693 B
YAML
dependencies:
|
|
espressif/mdns: "~1.1.0"
|
|
espressif/tinyusb:
|
|
rules:
|
|
- if: "target in [esp32s2, esp32s3, esp32p4]"
|
|
# Temporary workaround for https://github.com/hathach/tinyusb/issues/3154
|
|
# Can be removed once fix is released in espressif/tinyusb
|
|
git: https://github.com/micropython/tinyusb-espressif.git
|
|
version: cherrypick/dwc2_zlp_fix
|
|
espressif/esp_hosted:
|
|
rules:
|
|
- if: "target == esp32p4"
|
|
version: "2.7.0"
|
|
espressif/esp_wifi_remote:
|
|
rules:
|
|
- if: "target == esp32p4"
|
|
version: "0.15.2"
|
|
espressif/lan867x:
|
|
version: "~1.0.0"
|
|
rules:
|
|
- if: "target == esp32"
|
|
- if: "idf_version >=5.3"
|
|
idf:
|
|
version: ">=5.2.0"
|