mirror of
https://github.com/zsa/qmk_firmware.git
synced 2026-01-10 15:42:25 +00:00
14 lines
224 B
C
14 lines
224 B
C
|
|
#ifndef SUSPEND_H
|
||
|
|
#define SUSPEND_H
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
#include <stdbool.h>
|
||
|
|
|
||
|
|
|
||
|
|
void suspend_idle(uint8_t timeout);
|
||
|
|
void suspend_power_down(void);
|
||
|
|
bool suspend_wakeup_condition(void);
|
||
|
|
void suspend_wakeup_init(void);
|
||
|
|
|
||
|
|
#endif
|