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

Device never wakes on program run following sketch upload #5

Open
disk91 opened this issue Jun 10, 2018 · 9 comments
Open

Device never wakes on program run following sketch upload #5

disk91 opened this issue Jun 10, 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

@disk91
Copy link

disk91 commented Jun 10, 2018

After uploading a sketch to my MKR FOX 1200, the following code never wakes up after the first sleep call (LED remains on):

#include <ArduinoLowPower.h>
void setup() {
  pinMode(6, OUTPUT);
}

void loop() {
  digitalWrite(6, HIGH);
  LowPower.sleep(500);
  digitalWrite(6, LOW);
  LowPower.sleep(500);
}

The fault only occurs under the specific conditions of the program running after a sketch upload has been performed. If I power cycle the board, it works correctly.

Additional context

@disk91

This comment has been minimized.

@disk91

This comment has been minimized.

@facchinm
Copy link
Contributor

Hi @disk91 ,
this may depend on your operating system/USB connection; the code path in case of USB connection is quite different from the normal one.
Could you try reverting 8cf4c73 and see if the behaviour is the expected one (in your setup)?

@facchinm facchinm added the status: waiting for information More information must be provided before work can proceed label Jun 11, 2018
@sjernigan
Copy link

sjernigan commented Jun 13, 2018

We are seeing a similar problem. We also see that sometimes the first sleep call almost immediately returns.
Current Setup: Feather M0, using Mac to program/power, reverted the commit above as asked--
When powered from a battery (no data signal), the first call immediately returns, subsequent calls work correctly. Same for power by mac after unplugging. However, after you reprogram, the first call will never return. The reset button continues the previous behavior (ie., it does not change it to the unplugged/replug behavior).

@warriorfenixSM

This comment has been minimized.

@sslupsky
Copy link
Contributor

I think I have this problem as well. I think it may have something to do with the rtc. Recently I added an rtc.begin() in my setup() and this has stopped the OP’s issue from happening.

@sslupsky
Copy link
Contributor

I found another reference to this issue:

https://forum.arduino.cc/index.php?topic=499101.0

Gormd reported that using LowPower.attachInterruptWakeup() also cleared this up. Seem's to me there is a bug here related to declaration or construction of the RTC object?

@DanielRIOT
Copy link

You could call
SerialUSB.end(); just before calling LowPower.sleep();
to stop the USB interrupts from happening and continuously waking the system

@nekuneko
Copy link

nekuneko commented Jul 26, 2020

Hi @disk91 ,
this may depend on your operating system/USB connection; the code path in case of USB connection is quite different from the normal one.
Could you try reverting 8cf4c73 and see if the behaviour is the expected one (in your setup)?

@facchinm Is there any reason to use USBDevice.standby(); call ? I think it doesn't work in the propper way and in order to avoid issues, I would leave sleep() function simply as this:

void ArduinoLowPowerClass::sleep() {
	USBDevice.detach();
	SCB->SCR |= SCB_SCR_SLEEPDEEP_Msk;
	__DSB();
	__WFI();
       USBDevice.attach();
}

If standby is used, wouldn't it be necessary to have a function to "resume" and call runInStandby() as well standby function calls noRunInStandby()?

@per1234 per1234 changed the title Not working on SAMD Device never wakes on program run following sketch upload Mar 20, 2025
@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

8 participants