File tree Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -46,10 +46,24 @@ before_script:
46
46
- echo Building switch app - Started
47
47
- ls
48
48
- cd $CI_PROJECT_DIR/examples/switch
49
- - echo Running idf.py
49
+ - echo Building for esp32
50
50
- idf.py build
51
+ - idf.py set-target esp32
51
52
- echo Running make
52
53
- rm -rf build/ sdkconfig
54
+ - echo Building for esp32s2
55
+ - idf.py set-target esp32s2
56
+ - idf.py build
57
+ - rm -rf build/ sdkconfig
58
+ - echo Building for esp32c3
59
+ - idf.py set-target esp32c3
60
+ - idf.py build
61
+ - rm -rf build/ sdkconfig
62
+ - echo Building for esp32s3
63
+ - idf.py set-target esp32s3
64
+ - idf.py build
65
+ - rm -rf build/ sdkconfig
66
+ - echo Running make
53
67
- make defconfig
54
68
- make $MAKEFLAGS
55
69
- echo Building switch app - Done
Original file line number Diff line number Diff line change @@ -2,14 +2,15 @@ menu "WS2812 RGB LED"
2
2
3
3
config WS2812_LED_ENABLE
4
4
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
7
7
help
8
8
Disable the WS2812 RGB LED.
9
9
10
10
config WS2812_LED_GPIO
11
11
int "WS2812 LED GPIO"
12
12
default 8 if IDF_TARGET_ESP32C3
13
+ default 48 if IDF_TARGET_ESP32S3
13
14
default 18
14
15
depends on WS2812_LED_ENABLE
15
16
help
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ menu "ESP RainMaker App Wi-Fi Provisioning"
17
17
config APP_WIFI_PROV_TRANSPORT_BLE
18
18
bool "BLE"
19
19
select BT_ENABLED
20
- depends on IDF_TARGET_ESP32 || IDF_TARGET_ESP32C3
20
+ depends on !IDF_TARGET_ESP32S2
21
21
endchoice
22
22
23
23
config APP_WIFI_PROV_TRANSPORT
You can’t perform that action at this time.
0 commit comments