Skip to content
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

Open
sslupsky opened this issue Nov 7, 2018 · 9 comments
Open

modem.restart() hangs #38

sslupsky opened this issue Nov 7, 2018 · 9 comments
Labels
status: waiting for information More information must be provided before work can proceed type: imperfection Perceived defect in any part of project

Comments

@sslupsky
Copy link
Contributor

sslupsky commented Nov 7, 2018

The modem.restart() function does not return. It appears to hang on:

sendAT(GF("+REBOOT"));
@facchinm
Copy link
Contributor

facchinm commented Nov 8, 2018

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

Your module version is: ARD-078 1.1.8
Your device EUI is: a8610axxxxxxxxxx
Your module version is: ARD-078 1.1.8
Your device EUI is: a8610axxxxxxxxxx

Can you share the sketch that hangs?

@facchinm facchinm added the status: waiting for information More information must be provided before work can proceed label Nov 8, 2018
@sslupsky
Copy link
Contributor Author

sslupsky commented Nov 9, 2018

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.

@facchinm
Copy link
Contributor

begin() already resets the module, so restart() is only needed for "runtime restart". The band selection must be reapplied through another begin (or configureBand) though; I can understand the problem, will try to think about a proper API that leaves no space for ordering issues.

@sslupsky
Copy link
Contributor Author

Just to clarify, I do not recall that begin() resets the module, rather it resets the modem object?

@facchinm
Copy link
Contributor

begin() toggles RESET pin (https://github.com/arduino-libraries/MKRWAN/blob/master/src/MKRWAN.h#L406) , so it reboots the module, in a certain way 🙂

@sslupsky
Copy link
Contributor Author

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.

@facchinm
Copy link
Contributor

It's defined in MKRWAN core, so it can adapt to any other board using the Murata module.

@sslupsky
Copy link
Contributor Author

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).

@sslupsky
Copy link
Contributor Author

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.

@per1234 per1234 added the type: imperfection Perceived defect in any part of project label Mar 20, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: waiting for information More information must be provided before work can proceed type: imperfection Perceived defect in any part of project
Projects
None yet
Development

No branches or pull requests

3 participants