~ruther/qmk_firmware

abf482de8e62880f27c377c2bdbcb664fda0df0b — Jun Wako 10 years ago e872dd2
Fix call parameter of suspend_power_down()
2 files changed, 2 insertions(+), 2 deletions(-)

M protocol/bluefruit/main.c
M protocol/pjrc/main.c
M protocol/bluefruit/main.c => protocol/bluefruit/main.c +1 -1
@@ 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();
                }

M protocol/pjrc/main.c => protocol/pjrc/main.c +1 -1
@@ 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();
            }