Replace all references to python with python3 instead, close #33

This commit is contained in:
jacob.eva 2024-09-11 21:01:51 +01:00
parent 51afd310a5
commit f8299568fb
No known key found for this signature in database
GPG key ID: 0B92E083BBCCAA1E
8 changed files with 23 additions and 23 deletions

View file

@ -197,7 +197,7 @@ upload-wicked_esp32:
@sleep 1
rnodeconf /dev/ttyACM0 --firmware-hash $$(./partition_hashes ./build/esp32.esp32.esp32c3/RNode_Firmware_CE.ino.bin)
@sleep 3
python ./Release/esptool/esptool.py --chip esp32c3 --port /dev/ttyACM0 --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
python3 ./Release/esptool/esptool.py --chip esp32c3 --port /dev/ttyACM0 --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
```
#### nRF52
```