File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -142,6 +142,13 @@ board = adafruit_itsybitsy_esp32
142
142
build_flags = -DARDUINO_ADAFRUIT_ITSYBITSY_ESP32
143
143
board_build.filesystem = littlefs
144
144
145
+ ; Adafruit ESP32 Feather C6
146
+ [env:adafruit_feather_esp32c6_4mbflash_nopsram]
147
+ extends = common:esp32
148
+ board = adafruit_feather_esp32c6
149
+ build_flags = -DARDUINO_ADAFRUIT_FEATHER_ESP32C6
150
+ board_build.filesystem = littlefs
151
+ board_build.partitions = min_spiffs.csv
145
152
146
153
; Adafruit Feather ESP32-S2
147
154
[env:featheresp32s2]
Original file line number Diff line number Diff line change 150
150
#define USE_LITTLEFS
151
151
#define USE_STATUS_LED
152
152
#define STATUS_LED_PIN 13
153
+ #elif defined(ARDUINO_ADAFRUIT_FEATHER_ESP32C6 )
154
+ #define BOARD_ID "feather-esp32c6"
155
+ #define USE_LITTLEFS
156
+ #define USE_STATUS_NEOPIXEL
157
+ #define STATUS_NEOPIXEL_PIN PIN_NEOPIXEL
158
+ #define STATUS_NEOPIXEL_NUM 1
153
159
#elif defined(ARDUINO_ADAFRUIT_FEATHER_ESP32_V2 )
154
160
#define BOARD_ID "feather-esp32-v2"
155
161
#define USE_LITTLEFS
Original file line number Diff line number Diff line change 17
17
defined(ARDUINO_ADAFRUIT_ITSYBITSY_ESP32) || \
18
18
defined(ARDUINO_ADAFRUIT_FEATHER_ESP32_V2) || \
19
19
defined(ARDUINO_ADAFRUIT_QTPY_ESP32_PICO) || \
20
- defined(ARDUINO_ADAFRUIT_QTPY_ESP32C3)
20
+ defined(ARDUINO_ADAFRUIT_QTPY_ESP32C3) || \
21
+ defined(ARDUINO_ADAFRUIT_FEATHER_ESP32C6)
21
22
#include " WipperSnapper_LittleFS.h"
22
23
23
24
/* *************************************************************************/
You can’t perform that action at this time.
0 commit comments