forked from forks/qmk_firmware
19 lines
415 B
C
19 lines
415 B
C
#pragma once
|
|
|
|
#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);
|
|
|
|
void suspend_wakeup_init_user(void);
|
|
void suspend_wakeup_init_kb(void);
|
|
void suspend_power_down_user(void);
|
|
void suspend_power_down_kb(void);
|
|
|
|
#ifndef USB_SUSPEND_WAKEUP_DELAY
|
|
# define USB_SUSPEND_WAKEUP_DELAY 0
|
|
#endif
|