Disabled serial classic and changed serial baudrate to be compatible with bluetooth classic adapter

This commit is contained in:
2024-06-01 11:31:56 -04:00
parent 20a7aef333
commit a4fdf53259
6 changed files with 3721 additions and 33 deletions

View File

@@ -7,22 +7,33 @@
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[platformio]
default_envs = esp32s3_release ; this ensures that only this environment is built for anything but the debug build
[env]
platform = espressif32
; platform = espressif32
upload_protocol = esptool
platform = https://github.com/platformio/platform-espressif32.git
board = esp32-s3-devkitc-1
framework = arduino
build_flags = -Iinclude
; lib_ldf_mode = chain+
monitor_speed = 115200
monitor_filters = esp32_exception_decoder, colorize, send_on_enter
upload_speed = 2000000 ;ESP32S3 USB-Serial Converter maximum 2000000bps
lib_deps = adafruit/Adafruit NeoPixel@^1.12.0
[env:esp32-s3-debug]
board = adafruit_feather_esp32s3_nopsram
build_type = debug
build_flags = -D DEBUG
[env:esp32-s3-build]
board = adafruit_feather_esp32s3_nopsram
build_flags = -D RELEASE
[env:esp32s3_release]
build_type = release
[env:denky32]
board = denky32
[env:esp32s3_debug]
debug_init_break = tbreak setup
debug_tool = esp-builtin
build_type = debug
debug_speed = 20000
; upload_port = COM7
; debug_port = COM7
; monitor_port = COM14
build_flags = -O1 -Iinclude