-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
44 lines (41 loc) · 1.32 KB
/
platformio.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
; [env:fri3dbadge2024]
; platform = [email protected]
; board = esp32-s3-devkitc-1
; # Configure options for the N16R8V variant
; board_build.arduino.memory_type = qio_opi
; board_build.partitions = default_16MB.csv
; board_upload.flash_size = 16MB
; framework = arduino
; monitor_speed = 115200
; monitor_filters = esp32_exception_decoder
; lib_deps =
; fastled/FastLED@^3.7.0
; build_flags =
; -D BOARD_HAS_PSRAM # N16R8V has PSRAM
; -D ARDUINO_USB_MODE=1 # necessary for serial port
; -D ARDUINO_USB_CDC_ON_BOOT=1 # necessary for serial port
[env:fri3dbadge2022]
platform = espressif32
board = esp32dev
# Configure options for the N16R8V variant
; board_build.partitions = default_16MB.csv
; board_upload.flash_size = 16MB
framework = arduino
monitor_speed = 115200
monitor_filters = esp32_exception_decoder
lib_deps =
fastled/FastLED@^3.7.0
build_flags =
-DBOARD_HAS_PSRAM
-mfix-esp32-psram-cache-issue
-DCORE_DEBUG_LEVEL=5
-DCONFIG_ARDUHAL_LOG_COLORS=1