aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/suspend.h
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-11-19 18:41:02 +0000
committerGitHub <noreply@github.com>2021-11-19 10:41:02 -0800
commit2728603fe6d73e805a539d337fd01051c46ca806 (patch)
tree5c83ffc7efa112da870bd5d8502a9d91d4792f35 /tmk_core/common/suspend.h
parent43b9e23bae12916d5161f03700c9bfe46737324b (diff)
downloadqmk_firmware-2728603fe6d73e805a539d337fd01051c46ca806.tar.gz
qmk_firmware-2728603fe6d73e805a539d337fd01051c46ca806.zip
Move tmk_core/common/<plat> (#13918)
Diffstat (limited to 'tmk_core/common/suspend.h')
-rw-r--r--tmk_core/common/suspend.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/tmk_core/common/suspend.h b/tmk_core/common/suspend.h
deleted file mode 100644
index 081735f90..000000000
--- a/tmk_core/common/suspend.h
+++ /dev/null
@@ -1,20 +0,0 @@
1#pragma once
2
3#include <stdint.h>
4#include <stdbool.h>
5
6void suspend_idle(uint8_t timeout);
7void suspend_power_down(void);
8bool suspend_wakeup_condition(void);
9void suspend_wakeup_init(void);
10
11void suspend_wakeup_init_user(void);
12void suspend_wakeup_init_kb(void);
13void suspend_wakeup_init_quantum(void);
14void suspend_power_down_user(void);
15void suspend_power_down_kb(void);
16void suspend_power_down_quantum(void);
17
18#ifndef USB_SUSPEND_WAKEUP_DELAY
19# define USB_SUSPEND_WAKEUP_DELAY 0
20#endif