Skip to content

Commit

Permalink
Fix bluetooth build with esp32s3 for latest IDF 4.4 (#2708)
Browse files Browse the repository at this point in the history
It appears esp32s3 just uses esp32c3 for all IDF versions now.
  • Loading branch information
mikee47 authored Jan 12, 2024
1 parent 45d0f95 commit 5173129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sming/Arch/Esp32/Components/esp32/component.mk
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ endif
endif

ifeq ($(ENABLE_BLUETOOTH),1)
ifeq (esp32s3-1,$(ESP_VARIANT)-$(IDF_VERSION_5x))
ifeq (esp32s3,$(ESP_VARIANT))
ESP_BT_VARIANT := esp32c3
else
ESP_BT_VARIANT := $(ESP_VARIANT)
Expand Down

0 comments on commit 5173129

Please sign in to comment.