1
6
7
8
9
10
11
12
13
14
15
16
17
18
21
22
23
26
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
88
89
90
91
92
/* ... */
#pragma once
#include <stdint.h>
#include <stdio.h>
#include "esp_err.h"
#include "hal/ldo_types.h"
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
typedef struct ldo_regulator_channel_t *esp_ldo_channel_handle_t;
/* ... */
typedef struct {
int chan_id;
int voltage_mv;
struct ldo_extra_flags {
uint32_t adjustable : 1;
uint32_t owned_by_hw: 1;
uint32_t bypass: 1 __attribute__((deprecated));
}{ ... } flags;
}{ ... } esp_ldo_channel_config_t;
/* ... */
esp_err_t esp_ldo_acquire_channel(const esp_ldo_channel_config_t *config, esp_ldo_channel_handle_t *out_handle);
/* ... */
esp_err_t esp_ldo_release_channel(esp_ldo_channel_handle_t chan);
/* ... */
esp_err_t esp_ldo_channel_adjust_voltage(esp_ldo_channel_handle_t chan, int voltage_mv);
/* ... */
esp_err_t esp_ldo_dump(FILE *stream);
#ifdef __cplusplus
}{...}
#endif