-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
modem.restart() hangs #38
Comments
I just tested with a super stupid sketch void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
while (!Serial);
// change this to your regional band (eg. US915, AS923, ...)
if (!modem.begin(EU868)) {
Serial.println("Failed to start module");
while (1) {}
};
Serial.print("Your module version is: ");
Serial.println(modem.version());
Serial.print("Your device EUI is: ");
Serial.println(modem.deviceEUI());
modem.restart();
Serial.print("Your module version is: ");
Serial.println(modem.version());
Serial.print("Your device EUI is: ");
Serial.println(modem.deviceEUI());
} and the output is correct
Can you share the sketch that hangs? |
Ok. I see the problem now. I called modem.restart() before modem.begin() to force a reset of the radio when the MKRWAN boots. This is in case there is some form of reset other than a POR. That is, if the radio is the problem, then reboot it. I did not realize modem.begin() needed to be called before this function. I expected that after rebooting the radio, I would have to configure the band again with a call to modem.begin(). Is the band configured properly after modem.restart()? Do you know if modem.begin() needs to be called again after restart()? So, I think if you modify your example you will experience the hang. |
|
Just to clarify, I do not recall that begin() resets the module, rather it resets the modem object? |
|
Oh, for some reason I though that was excluded by the #ifdef SerialloRa? The default condition is that SerialloRa is defined? I could not find it defined anywhere and I do not do so in my code. |
It's defined in MKRWAN core, so it can adapt to any other board using the Murata module. |
Ahh, that sheds a whole new light on my understanding of things. Thank you for that clarification. So, SerialloRa is intended to be defined when you use the SPI interface to communicate the the Murata module? (For some reason I misinterpreted its' intended use for when the UART interface is used). |
Since begin() does a module reset calling restart() then begin() is redundant. I suppose one could call restart() then configureBand() to avoid a pin reset of the module. Is there any reason to avoid a pin reset? If not, should restart() should be removed from the API? You may want to document on the Arduino website that begin() does a pin (hardware) reset of the module. |
The modem.restart() function does not return. It appears to hang on:
The text was updated successfully, but these errors were encountered: