Skip to content

Commit

Permalink
DO NOT MERGE: Disable nimble on ESP32
Browse files Browse the repository at this point in the history
I don't have the time or experience to debug a platform where I don't
have devkits; let's see if all others (that's just nRF, right?) pass
CI with this.
  • Loading branch information
chrysn committed Dec 27, 2024
1 parent 45c43a0 commit 4e75536
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions cpu/esp32/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,19 @@ ifeq (xtensa,$(CPU_ARCH))
FEATURES_PROVIDED += esp_hw_counter
endif

ifeq (esp32,$(CPU_FAM))
FEATURES_PROVIDED += ble_nimble
FEATURES_PROVIDED += ble_nimble_netif
FEATURES_PROVIDED += esp_ble
FEATURES_PROVIDED += esp_ble_esp32
else ifneq (,$(filter esp32c3 esp32s3,$(CPU_FAM)))
FEATURES_PROVIDED += ble_adv_ext
FEATURES_PROVIDED += ble_nimble
FEATURES_PROVIDED += ble_nimble_netif
FEATURES_PROVIDED += ble_phy_2mbit
FEATURES_PROVIDED += esp_ble
FEATURES_PROVIDED += esp_ble_esp32c3
endif
# ifeq (esp32,$(CPU_FAM))
# FEATURES_PROVIDED += ble_nimble
# FEATURES_PROVIDED += ble_nimble_netif
# FEATURES_PROVIDED += esp_ble
# FEATURES_PROVIDED += esp_ble_esp32
# else ifneq (,$(filter esp32c3 esp32s3,$(CPU_FAM)))
# FEATURES_PROVIDED += ble_adv_ext
# FEATURES_PROVIDED += ble_nimble
# FEATURES_PROVIDED += ble_nimble_netif
# FEATURES_PROVIDED += ble_phy_2mbit
# FEATURES_PROVIDED += esp_ble
# FEATURES_PROVIDED += esp_ble_esp32c3
# endif

ifneq (,$(filter esp32 esp32s3,$(CPU_FAM)))
FEATURES_PROVIDED += periph_sdmmc_auto_clk
Expand Down

0 comments on commit 4e75536

Please sign in to comment.