@@ -89,20 +89,30 @@ You can find the firmwares listed [here](https://software.pycom.io/downloads/seq
89
89
90
90
91
91
# # USB
92
- If you do not have an SD card available, you can use the existing USB - UART interface . For this you will need to install
92
+ If you do not have an SD card available, you can update the firmware over USB . For this you will need to install
93
93
94
94
* [Python 3 ](https:// www.python.org/ downloads)
95
95
* [PySerial](https:// pythonhosted.org/ pyserial/ pyserial.html# installation)
96
96
* [sqnsupgrade python script](https:// github.com/ pycom/ pycom- libraries/ tree/ master/ lib/ sqnsupgrade)
97
97
98
- 1 . Use the following command to allow direct UART communication to the LTE modem:
98
+ 1 . On the Pycom module run the following command to allow direct UART communication to the LTE modem:
99
99
```python
100
100
import sqnsupgrade
101
101
sqnsupgrade.uart(True )
102
102
```
103
- 2 . Take note of the Serial port used and close the IDE .
103
+ 1 . You will see a response similar to this:
104
+ ```python
105
+ << < Welcome to the SQN3330 firmware updater [1.2 .6] >> >
106
+ >> > GPy with firmware version 1.20 .3.b2
107
+ Preparing modem for upgrade...
108
+ FFH mode is not necessary... ignoring!
109
+ Do not specify updater.elf when updating!
110
+ Attempting AT wakeup...
111
+ Going into MIRROR mode... please close this terminal to resume the upgrade via UART
112
+ ```
113
+ 1 . Take note of the Serial port used and close the REPL .
104
114
105
- 3 . Go to the directory where you saved the `sqnsupgrade` script and run the following commands in the command line / terminal
115
+ 1 . On the computer go to the directory where you saved the `sqnsupgrade` script and run the following commands in the command line / terminal
106
116
```python
107
117
$ python3
108
118
>> > import sqnsupgrade
@@ -114,9 +124,9 @@ If you do not have an SD card available, you can use the existing USB-UART inter
114
124
```
115
125
> Note: Replace the paths and `name.dup` with the actual files. There are different versions for `CAT - M1` and `NB - IoT`
116
126
117
- 4 . The update is now running. Note that the update may seem to ' stall' around 7 - 10 % and again at 99 % . This is completely normal.
127
+ 1 . The update is now running. Note that the update may seem to ' stall' around 7 - 10 % and again at 99 % . This is completely normal.
118
128
> Note: ** Do not disconnect power to the module during the updating process**
119
- 5 . The updater will show `SYSTEM VERSION ` when it is done, and return control to REPL .
129
+ 1 . The updater will show `SYSTEM VERSION ` when it is done, and return control to REPL .
120
130
121
131
122
132
# # Wireless
0 commit comments