2013-03-24 17:46:32 +01:00
|
|
|
#ifndef SUSPEND_H
|
|
|
|
#define SUSPEND_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
|
2014-11-20 09:06:46 +01:00
|
|
|
void suspend_idle(uint8_t timeout);
|
2014-11-26 03:25:45 +01:00
|
|
|
void suspend_power_down(void);
|
2013-03-24 17:46:32 +01:00
|
|
|
bool suspend_wakeup_condition(void);
|
|
|
|
void suspend_wakeup_init(void);
|
|
|
|
|
|
|
|
#endif
|