Fix call parameter of suspend_power_down()

master
Jun Wako 2015-01-26 11:25:22 +09:00
parent e872dd2149
commit abf482de8e
2 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ int main(void)
dprintf("Starting main loop");
while (1) {
while (suspend) {
suspend_power_down(WDTO_120MS);
suspend_power_down();
if (remote_wakeup && suspend_wakeup_condition()) {
usb_remote_wakeup();
}

View File

@ -61,7 +61,7 @@ int main(void)
#endif
while (1) {
while (suspend) {
suspend_power_down(WDTO_120MS);
suspend_power_down();
if (remote_wakeup && suspend_wakeup_condition()) {
usb_remote_wakeup();
}