Skip to content

Commit 34f2138

Browse files
committed
Use the local copy of flash.xml
1 parent 6d28653 commit 34f2138

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

u-blox_Update_GUI/RTK_u-blox_Update_GUI.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def __init__(self, parent: QWidget = None) -> None:
206206
self._load_settings()
207207

208208
def button_state(self, b) -> None:
209-
if b.text() == "Safeboot":
209+
if b.text() == "Enter Safeboot":
210210
if b.isChecked() == True:
211211
self.training_btn.setChecked(True)
212212
self.training_btn.setEnabled(True)
@@ -495,6 +495,8 @@ def on_upload_btn_pressed(self) -> None:
495495
command.extend(["-b",self.baudRate + ":" + self.baudRate + ":115200"])
496496
if self.fisLocation_lineedit.text() != '':
497497
command.extend(["-F", self.theFisName])
498+
else:
499+
command.extend(["-F", resource_path("flash.xml")])
498500
if self.packet_dump_btn.isChecked() == True:
499501
command.extend(["-v","2"])
500502
else:
4.1 KB
Loading
3.42 KB
Binary file not shown.

u-blox_Update_GUI/readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ There is a full, integrated executable available for Windows.
88

99
### To Use
1010

11-
* Attach the RTK device's CONFIG UBLOX port to your computer using a USB cable.
12-
* Turn the RTK device on.
13-
* Open Device Manager to confirm which COM port the device is operating on.
11+
* Attach the RTK device's CONFIG UBLOX port to your computer using a USB cable
12+
* Turn the RTK device on
13+
* Open Device Manager to confirm which COM port the device is operating on
1414

1515
![Device Manager showing USB Serial port on COM14](./SparkFun_RTK_u-blox_Updater_COM_Port.jpg)
1616

1717
-> *Device Manager showing USB Serial port on COM14* <-
1818

19-
* Get the latest binary firmware file from the *[u-blox](https://www.u-blox.com/en/product/zed-f9p-module?file_category=Firmware%2520Update&legacy=Current)* website.
19+
* Get the latest binary firmware file from *[this repo](../Binaries)* or the *[u-blox](https://www.u-blox.com/en/product/zed-f9p-module?file_category=Firmware%2520Update&legacy=Current)* website
2020
* Run *RTK_u-blox_Update_GUI.exe* (it takes a few seconds to start)
21-
* Click *Browse* and select the binary file to update
22-
* Select the COM port previously seen in the Device Manager.
21+
* Click the Firmware File *Browse* and select the binary file for the update
22+
* Select the COM port previously seen in the Device Manager
2323
* Click *Update Firmware*
2424

2525
Once complete, the u-blox module will restart.

0 commit comments

Comments
 (0)