Skip to content

Commit 8738eb0

Browse files
committed
esp32s3: Add support for the new platform ESP32-S3
1 parent 33e7b0e commit 8738eb0

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

components/ws2812_led/Kconfig

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ menu "WS2812 RGB LED"
22

33
config WS2812_LED_ENABLE
44
bool "Enable RGB LED"
5-
default y if IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32C3
6-
default n
5+
default n if IDF_TARGET_ESP32
6+
default y
77
help
88
Disable the WS2812 RGB LED.
99

1010
config WS2812_LED_GPIO
1111
int "WS2812 LED GPIO"
1212
default 8 if IDF_TARGET_ESP32C3
13+
default 48 if IDF_TARGET_ESP32S3
1314
default 18
1415
depends on WS2812_LED_ENABLE
1516
help

examples/common/app_wifi/Kconfig.projbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ menu "ESP RainMaker App Wi-Fi Provisioning"
1717
config APP_WIFI_PROV_TRANSPORT_BLE
1818
bool "BLE"
1919
select BT_ENABLED
20-
depends on IDF_TARGET_ESP32 || IDF_TARGET_ESP32C3
20+
depends on !IDF_TARGET_ESP32S2
2121
endchoice
2222

2323
config APP_WIFI_PROV_TRANSPORT

0 commit comments

Comments
 (0)