]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/common/suspend.h
ergodox qwerty_code_friendly: add macro keys (#1918)
[qmk_firmware.git] / tmk_core / common / suspend.h
1 #ifndef SUSPEND_H
2 #define SUSPEND_H
3
4 #include <stdint.h>
5 #include <stdbool.h>
6
7
8 void suspend_idle(uint8_t timeout);
9 void suspend_power_down(void);
10 bool suspend_wakeup_condition(void);
11 void suspend_wakeup_init(void);
12
13 #endif