加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
platformio.ini 1.54 KB
一键复制 编辑 原始数据 按行查看 历史
散宜生 提交于 2023-10-29 00:47 . 重写电机app, 驱动正常
; 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
[platformio]
default_envs = esp32dev
[env]
platform = espressif32@5.2.0
framework = arduino
monitor_speed = 115200
upload_speed = 921600
lib_deps =
mathertel/OneButton @ ^2.0.3
board_build.partitions = partitions.csv
[env:esp32dev]
; platform = espressif32
board = esp32dev
; framework = arduino
; monitor_speed = 115200
; upload_speed = 921600
lib_deps =
${env.lib_deps}
; mathertel/OneButton @ ^2.0.3
; fastled/FastLED @ ~3.5.0
build_flags = -D BOARD_HAS_PSRAM
; -D configUSE_TRACE_FACILITY=1
; -D configUSE_STATS_FORMATTING_FUNCTIONS=1
; -D CORE_DEBUG_LEVEL=1
; -D CONFIG_ARDUHAL_LOG_COLORS=1
board_build.partitions = ${env.board_build.partitions}
[env:nodemcu-32s]
; platform = espressif32
board = nodemcu-32s
; framework = arduino
; monitor_speed = 115200
; upload_speed = 921600
lib_deps =
${env.lib_deps}
; mathertel/OneButton @ ^2.0.3
; fastled/FastLED @ ~3.5.0
build_flags = -D configUSE_TRACE_FACILITY=1
-D configUSE_STATS_FORMATTING_FUNCTIONS=1
board_build.partitions = ${env.board_build.partitions}
; monitor_filters = esp32_exception_decoder
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化