This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Description
Please include the following information when submitting a bug report:
G01
Pycom MicroPython 1.20.0.rc11
LTE no longer works. I can no longer even get the ccid (see code below) and no longer get a connection.
This worked with rc10 and I tried to go back to that but it doesn't exist in
https://software.pycom.io/downloads/GPy.html
Why not?
I went back to rc8 and the ccid code below and connection worked again.
self.lte = LTE()
self.thread_at_cmd('AT^RESET')
LTE.reconnect_uart()
self.lte.init()
for i in range(3):
self.ccid=self.lte.iccid()
print ("ccid = " + str(self.ccid))
if self.ccid:
break
time.sleep(1)