diff --git a/tutorials/lte/firmware.md b/tutorials/lte/firmware.md index 5a3fa75..3f78693 100644 --- a/tutorials/lte/firmware.md +++ b/tutorials/lte/firmware.md @@ -21,7 +21,7 @@ You can find the different versions of firmwares available here: [https://softwa There are two packages available, one for the latest CAT-M1 firmware, and another for the latest NB-IoT firmware. -After unpacking the zip archive, you will find each firmware packages contains two files, one being the firmware file \(`CATM1-38638.dup` or `NB1-37781.dup`\) and the `updater.elf` file, which is required when using the "recovery" firmware update method or if a previous upgrade failed and the modem is in recovery mode. +After unpacking the zip archive, you will find each firmware packages contains two files, one being the firmware file \(e.g. `CATM1-38638.dup` or `NB1-37781.dup`\) and the `updater.elf` file, which is required when using the "recovery" firmware update method or if a previous upgrade failed and the modem is in recovery mode. Please note that the `updater.elf` file is only around 300K so you can also store it inside the flash file system of the module. The firmware dup files will NOT fit into the available `/flash` file system on the module, so you either need to use an SD card or upload it directly from your computer. diff --git a/tutorials/lte/nb-iot.md b/tutorials/lte/nb-iot.md index e728968..fb90be4 100644 --- a/tutorials/lte/nb-iot.md +++ b/tutorials/lte/nb-iot.md @@ -20,8 +20,8 @@ from network import LTE lte = LTE() lte.send_at_cmd('AT+CFUN=0') lte.send_at_cmd('AT!="clearscanconfig"') -lte.send_at_cmd('AT!="addscanfreq band=20 dl-earfcn=6300"') -lte.send_at_cmd('AT!="zsp0:npc 1"') +lte.send_at_cmd('AT!="addscanband band=20"') +lte.send_at_cmd('AT!="disablelog 1"') lte.send_at_cmd('AT+CGDCONT=1,"IP","nb.inetd.gdsp"') lte.send_at_cmd('AT+CFUN=1')