From 3e93ae4a96c94df59022973a33d2a9933527f02e Mon Sep 17 00:00:00 2001 From: AnkithB2020 <60104194+AnkithB2020@users.noreply.github.com> Date: Tue, 28 Jan 2020 17:19:39 +0100 Subject: [PATCH] Adding changes of commit 23ef8f6 Commit 23ef8f6 includes changes related to replacement of os.mkfs() 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 --- content/gettingstarted/programming/first-project.md | 1 - content/gettingstarted/programming/safeboot.md | 1 - content/tutorials/lte/firmware.md | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/content/gettingstarted/programming/first-project.md b/content/gettingstarted/programming/first-project.md index c3fb47a..5b40ad6 100644 --- a/content/gettingstarted/programming/first-project.md +++ b/content/gettingstarted/programming/first-project.md @@ -119,5 +119,4 @@ If you need to remove files from your device you have two options, either connec import os os.fsformat('/flash') - ``` diff --git a/content/gettingstarted/programming/safeboot.md b/content/gettingstarted/programming/safeboot.md index 9c38c3d..29a190b 100644 --- a/content/gettingstarted/programming/safeboot.md +++ b/content/gettingstarted/programming/safeboot.md @@ -36,7 +36,6 @@ If problems occur within the filesystem or you wish to factory reset your module >>> import os >>> os.fsformat('flash') - ``` {{% hint style="danger" %}} diff --git a/content/tutorials/lte/firmware.md b/content/tutorials/lte/firmware.md index 70e0d72..fcb5b54 100644 --- a/content/tutorials/lte/firmware.md +++ b/content/tutorials/lte/firmware.md @@ -72,7 +72,7 @@ To transfer the firmware files onto the SD card you have two options: from machine import SD sd = SD() -os.fsformat('/sd') #format SD card +os.fsformat('/sd') # format SD card from machine import SD sd = SD() fs = os.mkfat(sd)