From 8404e9cc461c7caa2f2cf087ed8d3f93edca3b19 Mon Sep 17 00:00:00 2001 From: Jaap Crezee Date: Tue, 29 Dec 2020 16:28:37 +0100 Subject: [PATCH] Fixed typo in LTE modem upgrade SD code --- content/updatefirmware/ltemodem.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/updatefirmware/ltemodem.md b/content/updatefirmware/ltemodem.md index bddd567..54a42d2 100644 --- a/content/updatefirmware/ltemodem.md +++ b/content/updatefirmware/ltemodem.md @@ -61,7 +61,7 @@ You can find the firmwares listed [here](https://software.pycom.io/downloads/seq import os sd = SD() - os.mount(fs, '/sd') # mount it + os.mount(sd, '/sd') # mount it os.fsformat('/sd') # format SD card fs = os.mkfat(sd) print(os.listdir('/sd')) # list its content