diff options
Diffstat (limited to 'tmk_core/common/suspend.h')
-rw-r--r-- | tmk_core/common/suspend.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tmk_core/common/suspend.h b/tmk_core/common/suspend.h new file mode 100644 index 000000000..80617a824 --- /dev/null +++ b/tmk_core/common/suspend.h | |||
@@ -0,0 +1,13 @@ | |||
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 | ||