Archivováno
1
0
Tento repozitář je archivovaný. Můžete prohlížet soubory, klonovat, ale nemůžete nahrávat a vytvářet nové úkoly nebo pull requesty.
tmk_keyboard_custom/common/suspend.h
Kai Ryu ee163c66ab Merge remote-tracking branch 'upstream/master'
Conflicts:
	common/avr/suspend.c
2015-04-07 14:57:03 +09:00

19 řádky
331 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);
#ifdef SUSPEND_ACTION
void suspend_power_down_action(void);
void suspend_wakeup_init_action(void);
#endif
#endif