Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
platformio.ini 681 B
; 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:esp32-c3-devkitm-1]
platform = espressif32
board = esp32-c3-devkitm-1
monitor_speed = 115200
framework = arduino
monitor_port = /dev/ttyUSB1
upload_port = /dev/ttyUSB1
build_flags =
    -I include
    -DCORE_DEBUG_LEVEL=5
    -std=gnu++17
build_unflags = -std=gnu++11
lib_deps = plerup/EspSoftwareSerial@^6.16.1