Reputation: 43
I have been working with an Arduino and a SIM7000E NB-IoT HAT for a little while now. The Arduino is communicating via SoftwareSerial with the SIM modem. They are connected via simple jumper wires. For testing purposes, my application only forwards messages between the SoftwareSerial port and the serial monitor.
The problem I am facing is that I repeatedly get the unsolicited result code RDY
followed by +CFUN: 1
, +CPIN: READY
and SMS Ready
. As I understand it (and as stated here), the result code RDY
should only be sent by the modem after the power on procedure is finished. I get this message so often that it inhibits other communication with the modem as I cannot send commands while receiving this unsolicited message.
Can anyone tell me why this could be happening? Is my modem faulty and rebooting, resulting in the repeated power on message? Or could it be something else?
Upvotes: 1
Views: 245
Reputation: 23
I had the same problem and fixed it by seeing that I left the turn-on pin on HIGH 🤦♂️, which resets the modem. Make sure you put the pin on LOW
Upvotes: 2