blob: 241ee0789f215662e644986d655a5bcdd3d89511 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#include <stdint.h>
#include "event.h"
#define EOS_PWR_MTYPE_BUTTON 1
#define EOS_PWR_MAX_MTYPE 2
#define EOS_PWR_WAKE_RST 0
#define EOS_PWR_WAKE_RTC 1
#define EOS_PWR_WAKE_BTN 2
#define EOS_PWR_INIT 0x80
#define EOS_PWR_RST_PWRON 0
#define EOS_PWR_RST_EXT 1
#define EOS_PWR_RST_WDOG 2
#define EOS_INIT_RST (EOS_PWR_WAKE_RST | EOS_PWR_INIT)
#define EOS_INIT_RTC (EOS_PWR_WAKE_RTC | EOS_PWR_INIT)
#define EOS_INIT_BTN (EOS_PWR_WAKE_BTN | EOS_PWR_INIT)
int eos_power_init(uint8_t wakeup_cause);
uint8_t eos_power_wakeup_cause(void);
uint8_t eos_power_reset_cause(void);
int eos_power_sleep(void);
void eos_power_wake_at(uint32_t msec);
void eos_power_wake_disable(void);
void eos_power_set_handler(unsigned char mtype, eos_evt_handler_t handler);
eos_evt_handler_t eos_power_get_handler(unsigned char mtype);
|