]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - tmk_core/common/suspend.h
core: Update comments in keycode.h
[max/tmk_keyboard.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 #ifdef __cplusplus
9 extern "C" {
10 #endif
11
12 void suspend_idle(uint8_t timeout);
13 void suspend_power_down(void);
14 bool suspend_wakeup_condition(void);
15 void suspend_wakeup_init(void);
16
17 #ifdef __cplusplus
18 }
19 #endif
20
21 #endif