2023-01-13 16:11:02 -07:00
|
|
|
# Copyright (C) 2023, Mark Qvist
|
|
|
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
2022-11-01 15:20:21 -06:00
|
|
|
all: release
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-rm -r ./build
|
2022-11-01 15:36:21 -06:00
|
|
|
-rm ./Release/rnode_firmware*
|
2022-11-01 15:20:21 -06:00
|
|
|
|
2022-11-01 14:13:11 -06:00
|
|
|
prep: prep-avr prep-esp32 prep-samd
|
|
|
|
|
|
|
|
prep-avr:
|
2022-01-09 15:40:30 -07:00
|
|
|
arduino-cli core update-index --config-file arduino-cli.yaml
|
2022-10-28 02:08:04 -06:00
|
|
|
arduino-cli core install arduino:avr
|
2022-01-09 15:40:30 -07:00
|
|
|
arduino-cli core install unsignedio:avr
|
2021-12-26 02:38:45 -07:00
|
|
|
|
2022-01-21 12:43:29 -07:00
|
|
|
prep-esp32:
|
|
|
|
arduino-cli core update-index --config-file arduino-cli.yaml
|
|
|
|
arduino-cli core install esp32:esp32
|
2022-10-28 16:54:22 -06:00
|
|
|
arduino-cli lib install "Adafruit SSD1306"
|
2022-10-30 16:16:51 -06:00
|
|
|
arduino-cli lib install "AXP202X_Library"
|
2022-11-01 14:13:11 -06:00
|
|
|
arduino-cli lib install "Crypto"
|
2022-01-21 12:43:29 -07:00
|
|
|
|
|
|
|
prep-samd:
|
|
|
|
arduino-cli core update-index --config-file arduino-cli.yaml
|
|
|
|
arduino-cli core install adafruit:samd
|
|
|
|
|
2023-01-07 15:32:07 -07:00
|
|
|
console-site:
|
|
|
|
make -C Console clean site
|
|
|
|
|
|
|
|
spiffs: console-site spiffs-image
|
|
|
|
|
2023-01-06 14:29:23 -07:00
|
|
|
spiffs-image:
|
2023-01-13 16:56:54 -07:00
|
|
|
python Release/esptool/spiffsgen.py 2031616 ./Console/build Release/console_image.bin
|
2023-01-06 14:29:23 -07:00
|
|
|
|
2023-01-07 15:32:07 -07:00
|
|
|
upload-spiffs:
|
2023-01-06 14:29:23 -07:00
|
|
|
@echo Deploying SPIFFS image...
|
2023-01-13 16:56:54 -07:00
|
|
|
python ./Release/esptool/esptool.py --chip esp32 --port /dev/ttyACM1 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size 4MB 0x210000 ./Release/console_image.bin
|
2022-01-21 12:43:29 -07:00
|
|
|
|
2021-12-26 02:38:45 -07:00
|
|
|
firmware:
|
|
|
|
arduino-cli compile --fqbn unsignedio:avr:rnode
|
|
|
|
|
2022-11-01 15:20:21 -06:00
|
|
|
firmware-mega2560:
|
|
|
|
arduino-cli compile --fqbn arduino:avr:mega
|
|
|
|
|
2022-01-21 12:43:29 -07:00
|
|
|
firmware-tbeam:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:t-beam -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x33\""
|
2022-01-09 15:40:30 -07:00
|
|
|
|
2022-01-21 14:45:26 -07:00
|
|
|
firmware-lora32_v20:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:ttgo-lora32 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x36\" \"-DEXTERNAL_LEDS=true\""
|
2022-01-21 14:45:26 -07:00
|
|
|
|
|
|
|
firmware-lora32_v21:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:ttgo-lora32 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x37\""
|
2022-01-21 14:45:26 -07:00
|
|
|
|
2022-01-22 13:43:52 -07:00
|
|
|
firmware-lora32_v21_extled:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:ttgo-lora32 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x37\" \"-DEXTERNAL_LEDS=true\""
|
2022-01-22 13:43:52 -07:00
|
|
|
|
2022-06-16 11:12:28 -06:00
|
|
|
firmware-heltec32_v2:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:heltec_wifi_lora_32_V2 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x38\""
|
2022-06-16 11:12:28 -06:00
|
|
|
|
|
|
|
firmware-heltec32_v2_extled:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:heltec_wifi_lora_32_V2 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x38\" \"-DEXTERNAL_LEDS=true\""
|
2022-06-16 11:12:28 -06:00
|
|
|
|
2022-06-11 08:42:49 -06:00
|
|
|
firmware-rnode_ng_20:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:ttgo-lora32 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x40\""
|
2022-06-11 08:42:49 -06:00
|
|
|
|
2022-06-16 11:12:28 -06:00
|
|
|
firmware-rnode_ng_21:
|
2023-01-10 12:28:17 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:ttgo-lora32 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x41\""
|
2022-06-16 11:12:28 -06:00
|
|
|
|
2022-01-21 12:43:29 -07:00
|
|
|
firmware-featheresp32:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:featheresp32 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x34\""
|
2022-01-21 12:43:29 -07:00
|
|
|
|
|
|
|
firmware-genericesp32:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:esp32 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x35\""
|
2022-01-09 15:40:30 -07:00
|
|
|
|
2022-01-21 12:43:29 -07:00
|
|
|
|
|
|
|
upload:
|
2022-10-30 16:16:51 -06:00
|
|
|
arduino-cli upload -p /dev/ttyUSB1 --fqbn unsignedio:avr:rnode
|
2022-01-09 15:40:30 -07:00
|
|
|
|
2022-11-01 15:20:21 -06:00
|
|
|
upload-mega2560:
|
|
|
|
arduino-cli upload -p /dev/ttyACM1 --fqbn arduino:avr:mega
|
|
|
|
|
2022-01-09 15:40:30 -07:00
|
|
|
upload-tbeam:
|
2022-10-30 16:16:51 -06:00
|
|
|
arduino-cli upload -p /dev/ttyUSB1 --fqbn esp32:esp32:t-beam
|
2022-11-01 15:20:21 -06:00
|
|
|
@sleep 1
|
|
|
|
rnodeconf /dev/ttyUSB1 --firmware-hash $$(./partition_hashes ./build/esp32.esp32.t-beam/RNode_Firmware.ino.bin)
|
2023-01-11 13:07:40 -07:00
|
|
|
@sleep 1
|
2023-01-13 16:56:54 -07:00
|
|
|
python ./Release/esptool/esptool.py --chip esp32 --port /dev/ttyUSB1 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size 4MB 0x210000 ./Release/console_image.bin
|
2022-01-09 15:40:30 -07:00
|
|
|
|
2022-01-21 14:45:26 -07:00
|
|
|
upload-lora32_v20:
|
2022-10-30 16:16:51 -06:00
|
|
|
arduino-cli upload -p /dev/ttyUSB1 --fqbn esp32:esp32:ttgo-lora32
|
2022-11-01 15:20:21 -06:00
|
|
|
@sleep 1
|
|
|
|
rnodeconf /dev/ttyUSB1 --firmware-hash $$(./partition_hashes ./build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bin)
|
2023-01-11 13:07:40 -07:00
|
|
|
@sleep 1
|
2023-01-13 16:56:54 -07:00
|
|
|
python ./Release/esptool/esptool.py --chip esp32 --port /dev/ttyUSB1 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size 4MB 0x210000 ./Release/console_image.bin
|
2022-01-21 14:45:26 -07:00
|
|
|
|
|
|
|
upload-lora32_v21:
|
2022-10-30 16:16:51 -06:00
|
|
|
arduino-cli upload -p /dev/ttyACM1 --fqbn esp32:esp32:ttgo-lora32
|
2022-11-01 15:20:21 -06:00
|
|
|
@sleep 1
|
|
|
|
rnodeconf /dev/ttyACM1 --firmware-hash $$(./partition_hashes ./build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bin)
|
2023-01-11 13:07:40 -07:00
|
|
|
@sleep 1
|
2023-01-13 16:56:54 -07:00
|
|
|
python ./Release/esptool/esptool.py --chip esp32 --port /dev/ttyACM1 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size 4MB 0x210000 ./Release/console_image.bin
|
2022-01-21 14:45:26 -07:00
|
|
|
|
2022-06-16 11:12:28 -06:00
|
|
|
upload-heltec32_v2:
|
2022-10-30 16:16:51 -06:00
|
|
|
arduino-cli upload -p /dev/ttyUSB1 --fqbn esp32:esp32:heltec_wifi_lora_32_V2
|
2022-11-01 15:20:21 -06:00
|
|
|
@sleep 1
|
|
|
|
rnodeconf /dev/ttyUSB1 --firmware-hash $$(./partition_hashes ./build/esp32.esp32.heltec_wifi_lora_32_V2/RNode_Firmware.ino.bin)
|
2023-01-11 13:07:40 -07:00
|
|
|
@sleep 1
|
2023-01-13 16:56:54 -07:00
|
|
|
python ./Release/esptool/esptool.py --chip esp32 --port /dev/ttyUSB1 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size 4MB 0x210000 ./Release/console_image.bin
|
2022-06-16 11:12:28 -06:00
|
|
|
|
2022-06-11 08:42:49 -06:00
|
|
|
upload-rnode_ng_20:
|
2022-10-30 16:16:51 -06:00
|
|
|
arduino-cli upload -p /dev/ttyUSB1 --fqbn esp32:esp32:ttgo-lora32
|
2022-11-01 15:20:21 -06:00
|
|
|
@sleep 1
|
|
|
|
rnodeconf /dev/ttyUSB1 --firmware-hash $$(./partition_hashes ./build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bin)
|
2023-01-11 13:07:40 -07:00
|
|
|
@sleep 1
|
2023-01-13 16:56:54 -07:00
|
|
|
python ./Release/esptool/esptool.py --chip esp32 --port /dev/ttyUSB1 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size 4MB 0x210000 ./Release/console_image.bin
|
2022-11-01 15:36:21 -06:00
|
|
|
|
2022-10-28 16:54:22 -06:00
|
|
|
upload-rnode_ng_21:
|
2022-10-30 16:16:51 -06:00
|
|
|
arduino-cli upload -p /dev/ttyACM1 --fqbn esp32:esp32:ttgo-lora32
|
2022-11-01 15:20:21 -06:00
|
|
|
@sleep 1
|
|
|
|
rnodeconf /dev/ttyACM1 --firmware-hash $$(./partition_hashes ./build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bin)
|
2023-01-11 13:07:40 -07:00
|
|
|
@sleep 1
|
2023-01-13 16:56:54 -07:00
|
|
|
python ./Release/esptool/esptool.py --chip esp32 --port /dev/ttyACM1 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size 4MB 0x210000 ./Release/console_image.bin
|
2022-10-28 16:54:22 -06:00
|
|
|
|
2022-01-21 12:43:29 -07:00
|
|
|
upload-featheresp32:
|
2022-10-30 16:16:51 -06:00
|
|
|
arduino-cli upload -p /dev/ttyUSB1 --fqbn esp32:esp32:featheresp32
|
2022-11-01 15:20:21 -06:00
|
|
|
@sleep 1
|
|
|
|
rnodeconf /dev/ttyUSB1 --firmware-hash $$(./partition_hashes ./build/esp32.esp32.featheresp32/RNode_Firmware.ino.bin)
|
2023-01-11 13:07:40 -07:00
|
|
|
@sleep 1
|
2023-01-13 16:56:54 -07:00
|
|
|
python ./Release/esptool/esptool.py --chip esp32 --port /dev/ttyUSB1 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size 4MB 0x210000 ./Release/console_image.bin
|
2022-01-21 12:43:29 -07:00
|
|
|
|
2022-01-22 13:43:52 -07:00
|
|
|
|
2022-10-28 02:09:47 -06:00
|
|
|
release: release-all
|
2022-01-22 13:43:52 -07:00
|
|
|
|
2023-01-11 04:38:28 -07:00
|
|
|
release-all: console-site spiffs-image release-rnode release-mega2560 release-tbeam release-lora32_v20 release-lora32_v21 release-lora32_v20_extled release-lora32_v21_extled release-featheresp32 release-genericesp32 release-heltec32_v2 release-heltec32_v2_extled release-rnode_ng_20 release-rnode_ng_21 release-hashes
|
2022-11-01 14:13:11 -06:00
|
|
|
|
|
|
|
release-hashes:
|
|
|
|
python ./release_hashes.py > ./Release/release.json
|
2022-01-21 12:43:29 -07:00
|
|
|
|
|
|
|
release-rnode:
|
|
|
|
arduino-cli compile --fqbn unsignedio:avr:rnode -e
|
2022-10-31 04:51:27 -06:00
|
|
|
cp build/unsignedio.avr.rnode/RNode_Firmware.ino.hex Release/rnode_firmware.hex
|
2022-01-21 12:43:29 -07:00
|
|
|
rm -r build
|
|
|
|
|
2022-01-09 15:40:30 -07:00
|
|
|
release-tbeam:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:t-beam -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x33\""
|
2022-10-31 04:51:27 -06:00
|
|
|
cp ~/.arduino15/packages/esp32/hardware/esp32/2.0.?/tools/partitions/boot_app0.bin build/rnode_firmware_tbeam.boot_app0
|
|
|
|
cp build/esp32.esp32.t-beam/RNode_Firmware.ino.bin build/rnode_firmware_tbeam.bin
|
|
|
|
cp build/esp32.esp32.t-beam/RNode_Firmware.ino.bootloader.bin build/rnode_firmware_tbeam.bootloader
|
|
|
|
cp build/esp32.esp32.t-beam/RNode_Firmware.ino.partitions.bin build/rnode_firmware_tbeam.partitions
|
2023-01-13 16:56:54 -07:00
|
|
|
zip --junk-paths ./Release/rnode_firmware_tbeam.zip ./Release/esptool/esptool.py ./Release/console_image.bin build/rnode_firmware_tbeam.boot_app0 build/rnode_firmware_tbeam.bin build/rnode_firmware_tbeam.bootloader build/rnode_firmware_tbeam.partitions
|
2022-01-09 17:20:33 -07:00
|
|
|
rm -r build
|
2022-01-21 14:45:26 -07:00
|
|
|
|
|
|
|
release-lora32_v20:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:ttgo-lora32 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x36\""
|
2022-10-31 04:51:27 -06:00
|
|
|
cp ~/.arduino15/packages/esp32/hardware/esp32/2.0.?/tools/partitions/boot_app0.bin build/rnode_firmware_lora32v20.boot_app0
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bin build/rnode_firmware_lora32v20.bin
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bootloader.bin build/rnode_firmware_lora32v20.bootloader
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.partitions.bin build/rnode_firmware_lora32v20.partitions
|
2023-01-13 16:56:54 -07:00
|
|
|
zip --junk-paths ./Release/rnode_firmware_lora32v20.zip ./Release/esptool/esptool.py ./Release/console_image.bin build/rnode_firmware_lora32v20.boot_app0 build/rnode_firmware_lora32v20.bin build/rnode_firmware_lora32v20.bootloader build/rnode_firmware_lora32v20.partitions
|
2022-01-21 14:45:26 -07:00
|
|
|
rm -r build
|
|
|
|
|
|
|
|
release-lora32_v21:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:ttgo-lora32 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x37\""
|
2022-10-31 04:51:27 -06:00
|
|
|
cp ~/.arduino15/packages/esp32/hardware/esp32/2.0.?/tools/partitions/boot_app0.bin build/rnode_firmware_lora32v21.boot_app0
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bin build/rnode_firmware_lora32v21.bin
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bootloader.bin build/rnode_firmware_lora32v21.bootloader
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.partitions.bin build/rnode_firmware_lora32v21.partitions
|
2023-01-13 16:56:54 -07:00
|
|
|
zip --junk-paths ./Release/rnode_firmware_lora32v21.zip ./Release/esptool/esptool.py ./Release/console_image.bin build/rnode_firmware_lora32v21.boot_app0 build/rnode_firmware_lora32v21.bin build/rnode_firmware_lora32v21.bootloader build/rnode_firmware_lora32v21.partitions
|
2022-01-21 14:45:26 -07:00
|
|
|
rm -r build
|
2022-01-19 13:04:05 -07:00
|
|
|
|
2022-01-24 11:30:00 -07:00
|
|
|
release-lora32_v20_extled:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:ttgo-lora32 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x36\" \"-DEXTERNAL_LEDS=true\""
|
2022-10-31 04:51:27 -06:00
|
|
|
cp ~/.arduino15/packages/esp32/hardware/esp32/2.0.?/tools/partitions/boot_app0.bin build/rnode_firmware_lora32v20.boot_app0
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bin build/rnode_firmware_lora32v20.bin
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bootloader.bin build/rnode_firmware_lora32v20.bootloader
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.partitions.bin build/rnode_firmware_lora32v20.partitions
|
2023-01-13 16:56:54 -07:00
|
|
|
zip --junk-paths ./Release/rnode_firmware_lora32v20_extled.zip ./Release/esptool/esptool.py ./Release/console_image.bin build/rnode_firmware_lora32v20.boot_app0 build/rnode_firmware_lora32v20.bin build/rnode_firmware_lora32v20.bootloader build/rnode_firmware_lora32v20.partitions
|
2022-01-24 11:30:00 -07:00
|
|
|
rm -r build
|
|
|
|
|
|
|
|
release-lora32_v21_extled:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:ttgo-lora32 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x37\" \"-DEXTERNAL_LEDS=true\""
|
2022-10-31 04:51:27 -06:00
|
|
|
cp ~/.arduino15/packages/esp32/hardware/esp32/2.0.?/tools/partitions/boot_app0.bin build/rnode_firmware_lora32v21.boot_app0
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bin build/rnode_firmware_lora32v21.bin
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bootloader.bin build/rnode_firmware_lora32v21.bootloader
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.partitions.bin build/rnode_firmware_lora32v21.partitions
|
2023-01-13 16:56:54 -07:00
|
|
|
zip --junk-paths ./Release/rnode_firmware_lora32v21_extled.zip ./Release/esptool/esptool.py ./Release/console_image.bin build/rnode_firmware_lora32v21.boot_app0 build/rnode_firmware_lora32v21.bin build/rnode_firmware_lora32v21.bootloader build/rnode_firmware_lora32v21.partitions
|
2022-01-24 11:30:00 -07:00
|
|
|
rm -r build
|
|
|
|
|
2022-06-16 11:12:28 -06:00
|
|
|
release-heltec32_v2:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:heltec_wifi_lora_32_V2 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x38\""
|
2022-10-31 04:51:27 -06:00
|
|
|
cp ~/.arduino15/packages/esp32/hardware/esp32/2.0.?/tools/partitions/boot_app0.bin build/rnode_firmware_heltec32v2.boot_app0
|
|
|
|
cp build/esp32.esp32.heltec_wifi_lora_32_V2/RNode_Firmware.ino.bin build/rnode_firmware_heltec32v2.bin
|
|
|
|
cp build/esp32.esp32.heltec_wifi_lora_32_V2/RNode_Firmware.ino.bootloader.bin build/rnode_firmware_heltec32v2.bootloader
|
|
|
|
cp build/esp32.esp32.heltec_wifi_lora_32_V2/RNode_Firmware.ino.partitions.bin build/rnode_firmware_heltec32v2.partitions
|
2023-01-13 16:56:54 -07:00
|
|
|
zip --junk-paths ./Release/rnode_firmware_heltec32v2.zip ./Release/esptool/esptool.py ./Release/console_image.bin build/rnode_firmware_heltec32v2.boot_app0 build/rnode_firmware_heltec32v2.bin build/rnode_firmware_heltec32v2.bootloader build/rnode_firmware_heltec32v2.partitions
|
2022-06-16 11:12:28 -06:00
|
|
|
rm -r build
|
|
|
|
|
|
|
|
release-heltec32_v2_extled:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:heltec_wifi_lora_32_V2 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x38\" \"-DEXTERNAL_LEDS=true\""
|
2022-10-31 04:51:27 -06:00
|
|
|
cp ~/.arduino15/packages/esp32/hardware/esp32/2.0.?/tools/partitions/boot_app0.bin build/rnode_firmware_heltec32v2.boot_app0
|
|
|
|
cp build/esp32.esp32.heltec_wifi_lora_32_V2/RNode_Firmware.ino.bin build/rnode_firmware_heltec32v2.bin
|
|
|
|
cp build/esp32.esp32.heltec_wifi_lora_32_V2/RNode_Firmware.ino.bootloader.bin build/rnode_firmware_heltec32v2.bootloader
|
|
|
|
cp build/esp32.esp32.heltec_wifi_lora_32_V2/RNode_Firmware.ino.partitions.bin build/rnode_firmware_heltec32v2.partitions
|
2023-01-13 16:56:54 -07:00
|
|
|
zip --junk-paths ./Release/rnode_firmware_heltec32v2.zip ./Release/esptool/esptool.py ./Release/console_image.bin build/rnode_firmware_heltec32v2.boot_app0 build/rnode_firmware_heltec32v2.bin build/rnode_firmware_heltec32v2.bootloader build/rnode_firmware_heltec32v2.partitions
|
2022-06-16 11:12:28 -06:00
|
|
|
rm -r build
|
|
|
|
|
|
|
|
release-rnode_ng_20:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:ttgo-lora32 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x40\""
|
2022-10-31 04:51:27 -06:00
|
|
|
cp ~/.arduino15/packages/esp32/hardware/esp32/2.0.?/tools/partitions/boot_app0.bin build/rnode_firmware_ng20.boot_app0
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bin build/rnode_firmware_ng20.bin
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bootloader.bin build/rnode_firmware_ng20.bootloader
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.partitions.bin build/rnode_firmware_ng20.partitions
|
2023-01-13 16:56:54 -07:00
|
|
|
zip --junk-paths ./Release/rnode_firmware_ng20.zip ./Release/esptool/esptool.py ./Release/console_image.bin build/rnode_firmware_ng20.boot_app0 build/rnode_firmware_ng20.bin build/rnode_firmware_ng20.bootloader build/rnode_firmware_ng20.partitions
|
2022-06-16 11:12:28 -06:00
|
|
|
rm -r build
|
|
|
|
|
|
|
|
release-rnode_ng_21:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:ttgo-lora32 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x41\""
|
2022-10-31 04:51:27 -06:00
|
|
|
cp ~/.arduino15/packages/esp32/hardware/esp32/2.0.?/tools/partitions/boot_app0.bin build/rnode_firmware_ng21.boot_app0
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bin build/rnode_firmware_ng21.bin
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.bootloader.bin build/rnode_firmware_ng21.bootloader
|
|
|
|
cp build/esp32.esp32.ttgo-lora32/RNode_Firmware.ino.partitions.bin build/rnode_firmware_ng21.partitions
|
2023-01-13 16:56:54 -07:00
|
|
|
zip --junk-paths ./Release/rnode_firmware_ng21.zip ./Release/esptool/esptool.py ./Release/console_image.bin build/rnode_firmware_ng21.boot_app0 build/rnode_firmware_ng21.bin build/rnode_firmware_ng21.bootloader build/rnode_firmware_ng21.partitions
|
2022-06-16 11:12:28 -06:00
|
|
|
rm -r build
|
|
|
|
|
2022-01-21 12:43:29 -07:00
|
|
|
release-featheresp32:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:featheresp32 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x34\""
|
2022-10-31 04:51:27 -06:00
|
|
|
cp ~/.arduino15/packages/esp32/hardware/esp32/2.0.?/tools/partitions/boot_app0.bin build/rnode_firmware_featheresp32.boot_app0
|
|
|
|
cp build/esp32.esp32.featheresp32/RNode_Firmware.ino.bin build/rnode_firmware_featheresp32.bin
|
|
|
|
cp build/esp32.esp32.featheresp32/RNode_Firmware.ino.bootloader.bin build/rnode_firmware_featheresp32.bootloader
|
|
|
|
cp build/esp32.esp32.featheresp32/RNode_Firmware.ino.partitions.bin build/rnode_firmware_featheresp32.partitions
|
2023-01-13 16:56:54 -07:00
|
|
|
zip --junk-paths ./Release/rnode_firmware_featheresp32.zip ./Release/esptool/esptool.py ./Release/console_image.bin build/rnode_firmware_featheresp32.boot_app0 build/rnode_firmware_featheresp32.bin build/rnode_firmware_featheresp32.bootloader build/rnode_firmware_featheresp32.partitions
|
2022-01-21 12:43:29 -07:00
|
|
|
rm -r build
|
|
|
|
|
|
|
|
release-genericesp32:
|
2023-01-11 04:38:28 -07:00
|
|
|
arduino-cli compile --fqbn esp32:esp32:esp32 -e --build-property "build.partitions=no_ota" --build-property "upload.maximum_size=2097152" --build-property "compiler.cpp.extra_flags=\"-DBOARD_MODEL=0x35\""
|
2022-10-31 04:51:27 -06:00
|
|
|
cp ~/.arduino15/packages/esp32/hardware/esp32/2.0.?/tools/partitions/boot_app0.bin build/rnode_firmware_esp32_generic.boot_app0
|
|
|
|
cp build/esp32.esp32.esp32/RNode_Firmware.ino.bin build/rnode_firmware_esp32_generic.bin
|
|
|
|
cp build/esp32.esp32.esp32/RNode_Firmware.ino.bootloader.bin build/rnode_firmware_esp32_generic.bootloader
|
|
|
|
cp build/esp32.esp32.esp32/RNode_Firmware.ino.partitions.bin build/rnode_firmware_esp32_generic.partitions
|
2023-01-13 16:56:54 -07:00
|
|
|
zip --junk-paths ./Release/rnode_firmware_esp32_generic.zip ./Release/esptool/esptool.py ./Release/console_image.bin build/rnode_firmware_esp32_generic.boot_app0 build/rnode_firmware_esp32_generic.bin build/rnode_firmware_esp32_generic.bootloader build/rnode_firmware_esp32_generic.partitions
|
2022-01-21 12:43:29 -07:00
|
|
|
rm -r build
|
2022-01-19 13:04:05 -07:00
|
|
|
|
|
|
|
release-mega2560:
|
|
|
|
arduino-cli compile --fqbn arduino:avr:mega -e
|
2022-10-31 04:51:27 -06:00
|
|
|
cp build/arduino.avr.mega/RNode_Firmware.ino.hex Release/rnode_firmware_m2560.hex
|
2022-11-01 15:20:21 -06:00
|
|
|
rm -r build
|