mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 18:49:08 +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
|