tools: ota-dfu: Include a Linux-native OTA DFU tool
This commit is contained in:
parent
5ce0d4cd6f
commit
17a8cfc346
3 changed files with 19 additions and 6 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -19,3 +19,6 @@
|
||||||
[submodule "tools/micropython-font-to-py"]
|
[submodule "tools/micropython-font-to-py"]
|
||||||
path = tools/micropython-font-to-py
|
path = tools/micropython-font-to-py
|
||||||
url = https://github.com/peterhinch/micropython-font-to-py
|
url = https://github.com/peterhinch/micropython-font-to-py
|
||||||
|
[submodule "tools/ota-dfu"]
|
||||||
|
path = tools/ota-dfu
|
||||||
|
url = https://github.com/daniel-thompson/ota-dfu-python
|
||||||
|
|
21
README.md
21
README.md
|
@ -51,12 +51,15 @@ Note: *If you have a new PineTime then it will have been delivered with
|
||||||
flash protection enabled. You must disable the flash protection before
|
flash protection enabled. You must disable the flash protection before
|
||||||
trying to program it.*
|
trying to program it.*
|
||||||
|
|
||||||
* Use an SWD programmer to install `bootloader.hex` to the PineTime.
|
Use an SWD programmer to install `bootloader.hex` to the PineTime. This
|
||||||
This file is an Intel HEX file containing both the bootloader and
|
file is an Intel HEX file containing both the bootloader and the Nordic
|
||||||
the Nordic SoftDevice. Be careful to disconnect cleanly from the
|
SoftDevice. Be careful to disconnect cleanly from the debug software
|
||||||
debug software since just pulling out the SWD cable will mean the
|
since just pulling out the SWD cable will mean the nRF52 will still
|
||||||
nRF52 will still believe it is being debugged (and won't properly
|
believe it is being debugged (and won't properly enter deep sleep
|
||||||
enter deep sleep modes).
|
modes).
|
||||||
|
|
||||||
|
To install using Android device:
|
||||||
|
|
||||||
* Copy `micropython.zip` to your Android device and download nRF Connect
|
* Copy `micropython.zip` to your Android device and download nRF Connect
|
||||||
for Android if you do not already have it.
|
for Android if you do not already have it.
|
||||||
* In nRF Connect, choose settings and reduce the DFU packet count from
|
* In nRF Connect, choose settings and reduce the DFU packet count from
|
||||||
|
@ -64,6 +67,12 @@ trying to program it.*
|
||||||
* Connect to PineDFU using nRFConnect, click the DFU button and send
|
* Connect to PineDFU using nRFConnect, click the DFU button and send
|
||||||
`micropython.zip` to the device.
|
`micropython.zip` to the device.
|
||||||
|
|
||||||
|
To install using Linux and ota-dfu:
|
||||||
|
|
||||||
|
* Look up the MAC address for your watch (try: `sudo hcitool lescan`).
|
||||||
|
* Use ota-dfu to upload `micropython.zip` to the device. For example:
|
||||||
|
`tools/ota-dfu/dfu.py -z micropython.zip -a A0:B1:C2:D3:E3:F5 --legacy`
|
||||||
|
|
||||||
At the end of this process your watch will show the time (03:00) together
|
At the end of this process your watch will show the time (03:00) together
|
||||||
with a date and battery meter. When the watch goes into power saving mode
|
with a date and battery meter. When the watch goes into power saving mode
|
||||||
you can use the side button to wake it again.
|
you can use the side button to wake it again.
|
||||||
|
|
1
tools/ota-dfu
Submodule
1
tools/ota-dfu
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 9cc61db89ec80ddbdc7a1ecee605cb5d4c391e19
|
Loading…
Reference in a new issue