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

-Added pio script to upload without building. #528

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
- Added pass through shifting in both ERG and SIM mode.
- Added pio script to upload without building.
### Changed
- Updated communications overview picture.
- Updated kit purchasing links.
Expand Down
1 change: 1 addition & 0 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ lib_deps =

[env:release]
extends = esp32doit
extra_scripts = upload_no_build.py

[env:debug]
extends = esp32doit
Expand Down
8 changes: 8 additions & 0 deletions upload_no_build.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Import("env")
env.AddCustomTarget(
"uploadnobuild",
None,
'pio run -e %s -t nobuild -t upload' %
env["PIOENV"],
title="Upload without building"
)
Loading