Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch supermini #205

Draft
wants to merge 1 commit into
base: dev
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,35 @@ board_build.partitions = part32.csv
board_build.filesystem = littlefs
board_build.embed_txtfiles = ${common_env_data.html_files}

[env:gravity32c3SuperMini-release] #D Ashmore new environment for super mini board
framework = arduino
platform = ${common_env_data.platform32}
upload_speed = ${common_env_data.upload_speed}
monitor_speed = ${common_env_data.monitor_speed}
extra_scripts = ${common_env_data.extra_scripts}
build_unflags =
${common_env_data.build_unflags}
build_flags =
-Wl,-Map,output.map
${common_env_data.build_flags}
-D LOG_LEVEL=5
#-D CORE_DEBUG_LEVEL=6
-D ESP32C3
-D ARDUINO_ESP32C3_DEV
#-D ESPFWK_DISABLE_LED # D Ashmore re-enable LED for super mini board
#-D ARDUINO_USB_CDC_ON_BOOT=1
#-DUSE_SERIAL_PINS # Use the TX/RX pins for the serial port
lib_deps =
${common_env_data.lib_deps}
${common_env_data.lib_deps32}
${common_env_data.lib_ble32}
lib_ignore =
board = super_mini_esp32c3 # D Ashmore define super mini board
build_type = release
board_build.partitions = part32.csv
board_build.filesystem = littlefs
board_build.embed_txtfiles = ${common_env_data.html_files}

[env:gravity32s2-release]
framework = arduino
platform = ${common_env_data.platform32}
Expand Down