1
0

Fix call parameter of suspend_power_down()

This commit is contained in:
Jun Wako 2015-01-26 11:25:22 +09:00
父節點 b2ccaabda8
當前提交 e82c6007e3
共有 2 個檔案被更改,包括 2 行新增2 行删除

查看文件

@ -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();
}

查看文件

@ -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();
}