diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b88379f..69fe21e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/platformio.ini b/platformio.ini index cb7f04c9..fab54b39 100644 --- a/platformio.ini +++ b/platformio.ini @@ -38,6 +38,7 @@ lib_deps = [env:release] extends = esp32doit +extra_scripts = upload_no_build.py [env:debug] extends = esp32doit diff --git a/upload_no_build.py b/upload_no_build.py new file mode 100644 index 00000000..078132f6 --- /dev/null +++ b/upload_no_build.py @@ -0,0 +1,8 @@ +Import("env") +env.AddCustomTarget( + "uploadnobuild", + None, + 'pio run -e %s -t nobuild -t upload' % + env["PIOENV"], + title="Upload without building" +) \ No newline at end of file