File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -536,7 +536,10 @@ upload_port = /dev/cu.usbmodem1201
536
536
[env:dfrobot_beetle_esp32c3]
537
537
extends = common:esp32
538
538
board = dfrobot_beetle_esp32c3
539
- build_flags = -DARDUINO_DFROBOT_BEETLE_ESP32C3
539
+ ; Note: this board reuses a generic preprocessor define
540
+ ; espressif/arduino-esp32@fcd4799c6de6eb5a5a8eba94818adf770238ecc0
541
+ ; rather than creating one unique to the device.
542
+ build_flags = -DARDUINO_ESP32C3_DEV
540
543
board_build.filesystem = littlefs
541
544
board_build.partitions = min_spiffs.csv
542
545
Original file line number Diff line number Diff line change 186
186
#define STATUS_NEOPIXEL_PIN PIN_NEOPIXEL
187
187
#define STATUS_NEOPIXEL_NUM 1
188
188
#define USE_PSRAM ///< Board has PSRAM, use it for dynamic memory allocation
189
- #elif defined(ARDUINO_DFROBOT_BEETLE_ESP32C3 )
189
+ #elif defined(ARDUINO_ESP32C3_DEV )
190
+ // Note: this board reuses a generic preprocessor define
191
+ // espressif/arduino-esp32@fcd4799c6de6eb5a5a8eba94818adf770238ecc0
192
+ // rather than creating one unique to the device.
190
193
#define BOARD_ID "dfrobot-beetle-esp32c3"
191
194
#define USE_LITTLEFS
192
195
#define USE_STATUS_LED
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_DFROBOT_BEETLE_ESP32C3 ) || \
20
+ defined(ARDUINO_ESP32C3_DEV ) || \
21
21
defined(ARDUINO_SPARKLEMOTIONMINI_ESP32) || \
22
22
defined(ARDUINO_SPARKLEMOTIONSTICK_ESP32) || \
23
23
defined(ARDUINO_ADAFRUIT_QTPY_ESP32C3) || \
You can’t perform that action at this time.
0 commit comments