ClawMachineCosplay/platformio.ini

41 lines
930 B
INI
Raw Permalink Normal View History

2025-01-18 14:43:42 +01:00
; 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:mega2560]
2025-01-20 20:53:54 +01:00
platform = atmelavr
2025-01-22 04:29:06 +01:00
board = megaatmega2560
2025-01-18 14:43:42 +01:00
framework = arduino
lib_extra_dirs = ~/Documents/Arduino/libraries
lib_deps =
FreeRTOS
upload_speed = 115200
[env:esp32-pico]
platform = espressif32
board = esp32dev
framework = arduino
; lib_extra_dirs = ~/Documents/Arduino/libraries
lib_deps =
Arduino
vector
upload_speed = 921600
monitor_speed = 115200
build_type = debug
build_flags =
-Og
-g3
-ggdb
-DCORE_DEBUG_LEVEL=5
-std=gnu++17
debug_tool = esp-prog
debug_init_break = tbreak setup
upload_protocol = esptool