aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/suspend.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/suspend.h')
-rw-r--r--tmk_core/common/suspend.h13
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
8void suspend_idle(uint8_t timeout);
9void suspend_power_down(void);
10bool suspend_wakeup_condition(void);
11void suspend_wakeup_init(void);
12
13#endif