Modem new firmware
-
Hi,
Ive been trying to upgrade the firmware of the modem on the fipy. I have followed these instructions.
https://docs.pycom.io/chapter/tutorials/lte/firmware.html
however I keep getting this:from machine import SD
import os
sd = SD()
os.mount(sd, '/sd')
os.listdir('/sd')
['System Volume Information', 'FIPY_GPY_CATM1_33988.dup']import sqnsupgrade
sqnsupgrade.run(/sd/FIPY_GPY_CATM1_33988.dup, 921600)
Traceback (most recent call last):
File "<stdin>", line 1
SyntaxError: invalid syntaxI've upgraded the other firmware already, so this will be the last one. Its got to be something simple I'm missing just wondering if anyone can point me as to what it is?
Thanks
-
@grantosw Glad I could help. ;o)
-
@rskoniec said in Modem new firmware:
sqnsupgrade.run('/sd/FIPY_GPY_CATM1_33988.dup', 921600)
Hi, yes that worked. Thankyou. Now I examine the wiki more closely I see I missed those characters.
regards
-
@grantosw Try with
' '
in the path:sqnsupgrade.run('/sd/FIPY_GPY_CATM1_33988.dup', 921600)