You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/tutorials/lte/firmware.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ Please start with the following steps:
37
37
2. Select Firmware Type `stable` in the communication window to upgrade to version `v1.18.1.r1`
38
38
39
39
40
-
The modem firmware files are password protected, to download them you should be a forum.pycom.io member and access to:
40
+
The modem firmware files are password protected, to download them you should be a forum.pycom.io member and access to:
41
41
Announcements & News --> Announcements only for members --> Firmware Files for Sequans LTE modem now are secured, or clicking [Here](https://forum.pycom.io/topic/4020/firmware-files-for-sequans-lte-modem-now-are-secured).
42
42
43
43
You can find the different versions of firmwares available [here](https://software.pycom.io/downloads/sequans2.html).
@@ -57,7 +57,7 @@ import sqnsupgrade
57
57
sqnsupgrade.run('upgdiff_38638-to-39529.dup')
58
58
```
59
59
If you are updating the Sequans firmware on your module for the first time, please use instead the file upgdiff_33080-to-39529.dup (1.2M) from the same archive.
60
-
Similar upgrade packages are available for the NB-IoT firmwares.
60
+
Similar upgrade packages are available for the NB-IoT firmwares.
61
61
{{% /hint %}}
62
62
63
63
## Via SD card
@@ -72,8 +72,11 @@ To transfer the firmware files onto the SD card you have two options:
72
72
from machine importSD
73
73
74
74
sd = SD()
75
-
os.mkfs(sd) # format SD card
76
-
os.mount(sd, '/sd') # mount it
75
+
os.fsformat('/sd') # format SD card
76
+
from machine importSD
77
+
sd = SD()
78
+
fs = os.mkfat(sd)
79
+
os.mount(fs, '/sd') # mount it
77
80
os.listdir('/sd') # list its content
78
81
```
79
82
@@ -267,5 +270,3 @@ The latest version of the `sqnsupgrade` class has a few additional features that
267
270
268
271
#### sqnsupgrade.run(load_fff=True)
269
272
New optional command line option load_fff for the sqnsupgrade.run() command. This is designed to be an internal flag. And should only applied when advised by pycom support.
0 commit comments