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
48
49
50
51
52
53
54
55
56
57
58
59
64
65
66
69
70
71
72
73
74
75
76
77
81
82
83
90
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
135
136
137
138
139
140
141
142
143
144
145
149
150
156
162
163
170
171
172
173
174
175
176
177
178
179
184
190
191
192
193
194
195
196
197
198
199
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
243
246
247
248
249
250
251
252
253
254
255
256
257
258
259
262
263
268
271
272
277
282
283
288
295
296
301
304
305
306
307
308
309
/* ... */
#ifndef _HARDWARE_ADC_H
#define _HARDWARE_ADC_H
#include "pico.h"
#include "hardware/structs/adc.h"
#include "hardware/gpio.h"
/* ... */
#ifndef PARAM_ASSERTIONS_ENABLED_HARDWARE_ADC
#ifdef PARAM_ASSERTIONS_ENABLED_ADC
#define PARAM_ASSERTIONS_ENABLED_HARDWARE_ADC PARAM_ASSERTIONS_ENABLED_ADC
#else
#define PARAM_ASSERTIONS_ENABLED_HARDWARE_ADC 0
#endif/* ... */
#endif
/* ... */
#ifndef ADC_TEMPERATURE_CHANNEL_NUM
#define ADC_TEMPERATURE_CHANNEL_NUM (NUM_ADC_CHANNELS - 1)
#endif
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
void adc_init(void);
/* ... */
static inline void adc_gpio_init(uint gpio) {
invalid_params_if(HARDWARE_ADC, gpio < ADC_BASE_PIN || gpio >= ADC_BASE_PIN + NUM_ADC_CHANNELS - 1);
gpio_set_function(gpio, GPIO_FUNC_NULL);
gpio_disable_pulls(gpio);
gpio_set_input_enabled(gpio, false);
}{ ... }
/* ... */
static inline void adc_select_input(uint input) {
valid_params_if(HARDWARE_ADC, input < NUM_ADC_CHANNELS);
hw_write_masked(&adc_hw->cs, input << ADC_CS_AINSEL_LSB, ADC_CS_AINSEL_BITS);
}{ ... }
/* ... */
static inline uint adc_get_selected_input(void) {
return (adc_hw->cs & ADC_CS_AINSEL_BITS) >> ADC_CS_AINSEL_LSB;
}{ ... }
/* ... */
static inline void adc_set_round_robin(uint input_mask) {
valid_params_if(HARDWARE_ADC, input_mask < (1 << NUM_ADC_CHANNELS));
hw_write_masked(&adc_hw->cs, input_mask << ADC_CS_RROBIN_LSB, ADC_CS_RROBIN_BITS);
}{ ... }
/* ... */
static inline void adc_set_temp_sensor_enabled(bool enable) {
if (enable)
hw_set_bits(&adc_hw->cs, ADC_CS_TS_EN_BITS);
else
hw_clear_bits(&adc_hw->cs, ADC_CS_TS_EN_BITS);
}{ ... }
/* ... */
static inline uint16_t adc_read(void) {
hw_set_bits(&adc_hw->cs, ADC_CS_START_ONCE_BITS);
while (!(adc_hw->cs & ADC_CS_READY_BITS))
tight_loop_contents();
return (uint16_t) adc_hw->result;
}{ ... }
/* ... */
static inline void adc_run(bool run) {
if (run)
hw_set_bits(&adc_hw->cs, ADC_CS_START_MANY_BITS);
else
hw_clear_bits(&adc_hw->cs, ADC_CS_START_MANY_BITS);
}{ ... }
/* ... */
static inline void adc_set_clkdiv(float clkdiv) {
invalid_params_if(HARDWARE_ADC, clkdiv >= 1 << (ADC_DIV_INT_MSB - ADC_DIV_INT_LSB + 1));
adc_hw->div = (uint32_t)(clkdiv * (float) (1 << ADC_DIV_INT_LSB));
}{ ... }
/* ... */
static inline void adc_fifo_setup(bool en, bool dreq_en, uint16_t dreq_thresh, bool err_in_fifo, bool byte_shift) {
hw_write_masked(&adc_hw->fcs,
(bool_to_bit(en) << ADC_FCS_EN_LSB) |
(bool_to_bit(dreq_en) << ADC_FCS_DREQ_EN_LSB) |
(((uint)dreq_thresh) << ADC_FCS_THRESH_LSB) |
(bool_to_bit(err_in_fifo) << ADC_FCS_ERR_LSB) |
(bool_to_bit(byte_shift) << ADC_FCS_SHIFT_LSB),
ADC_FCS_EN_BITS |
ADC_FCS_DREQ_EN_BITS |
ADC_FCS_THRESH_BITS |
ADC_FCS_ERR_BITS |
ADC_FCS_SHIFT_BITS
);
}{ ... }
/* ... */
static inline bool adc_fifo_is_empty(void) {
return adc_hw->fcs & ADC_FCS_EMPTY_BITS;
}{ ... }
/* ... */
static inline uint8_t adc_fifo_get_level(void) {
return (adc_hw->fcs & ADC_FCS_LEVEL_BITS) >> ADC_FCS_LEVEL_LSB;
}{ ... }
/* ... */
static inline uint16_t adc_fifo_get(void) {
return (uint16_t)adc_hw->fifo;
}{ ... }
/* ... */
static inline uint16_t adc_fifo_get_blocking(void) {
while (adc_fifo_is_empty())
tight_loop_contents();
return (uint16_t)adc_hw->fifo;
}{ ... }
/* ... */
static inline void adc_fifo_drain(void) {
while (!(adc_hw->cs & ADC_CS_READY_BITS))
tight_loop_contents();
while (!adc_fifo_is_empty())
(void) adc_fifo_get();
}{ ... }
/* ... */
static inline void adc_irq_set_enabled(bool enabled) {
adc_hw->inte = !!enabled;
}{ ... }
#ifdef __cplusplus
}extern "C" { ... }
#endif
/* ... */
#endif