You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#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
|