File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ lib_deps =
94
94
95
95
; Common build environment for ESP32 platform
96
96
[common:esp32]
97
- platform = https://github.com/pioarduino/platform-espressif32/releases/download/51 .03.07 /platform-espressif32.zip
97
+ platform = https://github.com/pioarduino/platform-espressif32/releases/download/53 .03.11 /platform-espressif32.zip
98
98
; This is needed for occasional new features and bug fixes
99
99
; platform = https://github.com/pioarduino/platform-espressif32#develop
100
100
lib_ignore = WiFiNINA, WiFi101, OneWire
@@ -175,9 +175,10 @@ board_build.partitions = min_spiffs.csv
175
175
extends = common:esp32
176
176
board = esp32-c6-devkitm-1
177
177
build_type = debug
178
+ debug_tool = esp-builtin
179
+ debug_init_break = tbreak ws_uart_drv_pm25aqi
178
180
build_flags =
179
181
-DARDUINO_ESPRESSIF_ESP32C6_DEVKITM_1
180
- -DARDUINO_ADAFRUIT_FEATHER_ESP32C6
181
182
-DNDEBUG =1
182
183
-DDEBUG =1
183
184
-DESP_LOG_LEVEL =5
Original file line number Diff line number Diff line change 163
163
#define USE_STATUS_NEOPIXEL
164
164
#define STATUS_NEOPIXEL_PIN PIN_NEOPIXEL
165
165
#define STATUS_NEOPIXEL_NUM 1
166
+ #elif defined(ARDUINO_ESPRESSIF_ESP32C6_DEVKITM_1 )
167
+ #define BOARD_ID "feather-esp32c6" ///< TODO: add board def
168
+ #define USE_LITTLEFS
169
+ #define USE_STATUS_NEOPIXEL
170
+ #define STATUS_NEOPIXEL_PIN 8
171
+ #define STATUS_NEOPIXEL_NUM 1
166
172
#elif defined(ARDUINO_ADAFRUIT_FEATHER_ESP32_V2 )
167
173
#define BOARD_ID "feather-esp32-v2"
168
174
#define USE_LITTLEFS
Original file line number Diff line number Diff line change 18
18
defined(ARDUINO_ADAFRUIT_FEATHER_ESP32_V2) || \
19
19
defined(ARDUINO_ADAFRUIT_QTPY_ESP32_PICO) || \
20
20
defined(ARDUINO_ADAFRUIT_QTPY_ESP32C3) || \
21
- defined(ARDUINO_ADAFRUIT_FEATHER_ESP32C6)
21
+ defined(ARDUINO_ADAFRUIT_FEATHER_ESP32C6) || \
22
+ defined(ARDUINO_ESPRESSIF_ESP32C6_DEVKITM_1)
22
23
#include " WipperSnapper_LittleFS.h"
23
24
24
25
/* *************************************************************************/
You can’t perform that action at this time.
0 commit comments