1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
53
54
55
61
62
63
64
65
66
67
/* ... */
#ifndef __ULP_COMMON_H__
#define __ULP_COMMON_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
#include "esp_err.h"
#include "ulp_common_defs.h"
/* ... */
esp_err_t ulp_set_wakeup_period(size_t period_index, uint32_t period_us);
/* ... */
void ulp_timer_stop(void);
/* ... */
void ulp_timer_resume(void);
#ifdef __cplusplus
}{...}
#endif
/* ... */
#endif