Skip to content

Commit 23ef8f6

Browse files
committed
os.mkfs() replaced with os.fsformat()
os.mkfs() has been replaced with os.fsformat() Link explaining the replacement details: https://forum.pycom.io/topic/3351/new-development-firmware-release-v1-19-0-b1/2 Issue: https://forum.pycom.io/topic/5606/what-happened-to-pin_deepsleep_wakeup/9
1 parent a2d5481 commit 23ef8f6

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

content/gettingstarted/programming/first-project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,5 +118,5 @@ If you need to remove files from your device you have two options, either connec
118118
```python
119119

120120
import os
121-
os.mkfs('/flash')
121+
os.fsformat('/flash')
122122
```

content/gettingstarted/programming/safeboot.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If problems occur within the filesystem or you wish to factory reset your module
3535
```python
3636

3737
>>> import os
38-
>>> os.mkfs('/flash')
38+
>>> os.fsformat('flash')
3939
```
4040

4141
{{% hint style="danger" %}}
@@ -59,4 +59,3 @@ A hard reset is the same as performing a power cycle to the device. In order to
5959
>>> import machine
6060
>>> machine.reset()
6161
```
62-

content/tutorials/lte/firmware.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Please start with the following steps:
3737
2. Select Firmware Type `stable` in the communication window to upgrade to version `v1.18.1.r1`
3838

3939

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:
4141
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).
4242

4343
You can find the different versions of firmwares available [here](https://software.pycom.io/downloads/sequans2.html).
@@ -57,7 +57,7 @@ import sqnsupgrade
5757
sqnsupgrade.run('upgdiff_38638-to-39529.dup')
5858
```
5959
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.
6161
{{% /hint %}}
6262

6363
## Via SD card
@@ -72,8 +72,11 @@ To transfer the firmware files onto the SD card you have two options:
7272
from machine import SD
7373

7474
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 import SD
77+
sd = SD()
78+
fs = os.mkfat(sd)
79+
os.mount(fs, '/sd') # mount it
7780
os.listdir('/sd') # list its content
7881
```
7982

@@ -267,5 +270,3 @@ The latest version of the `sqnsupgrade` class has a few additional features that
267270

268271
#### sqnsupgrade.run(load_fff=True)
269272
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.
270-
271-

0 commit comments

Comments
 (0)