1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
22
23
24
25
26
27
28
29
30
31
32
33
34
35
41
55
56
59
60
61
62
63
64
65
68
74
77
81
82
83
84
87
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
/* ... */
#pragma once
#include "driver/i2s_types.h"
#include "hal/i2s_types.h"
#include "esp_types.h"
#include "esp_err.h"
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
#define I2S_CHANNEL_DEFAULT_CONFIG(i2s_num, i2s_role) { \
.id = i2s_num, \
.role = i2s_role, \
.dma_desc_num = 6, \
.dma_frame_num = 240, \
.auto_clear_after_cb = false, \
.auto_clear_before_cb = false, \
.allow_pd = false, \
.intr_priority = 0, \
}{...}
#define I2S_GPIO_UNUSED GPIO_NUM_NC
/* ... */
typedef struct {
i2s_isr_callback_t on_recv;
/* ... */
i2s_isr_callback_t on_recv_q_ovf;
/* ... */
i2s_isr_callback_t on_sent;
/* ... */
i2s_isr_callback_t on_send_q_ovf;
/* ... */
}{ ... } i2s_event_callbacks_t;
/* ... */
typedef struct {
i2s_port_t id;
i2s_role_t role;
uint32_t dma_desc_num;
uint32_t dma_frame_num;
/* ... */
union {
bool auto_clear;
bool auto_clear_after_cb;
/* ... */
}{ ... };
bool auto_clear_before_cb;
/* ... */
bool allow_pd;
/* ... */
int intr_priority;
}{ ... } i2s_chan_config_t;
/* ... */
typedef struct {
i2s_port_t id;
i2s_role_t role;
i2s_dir_t dir;
i2s_comm_mode_t mode;
i2s_chan_handle_t pair_chan;
uint32_t total_dma_buf_size;
/* ... */
}{ ... } i2s_chan_info_t;
/* ... */
esp_err_t i2s_new_channel(const i2s_chan_config_t *chan_cfg, i2s_chan_handle_t *ret_tx_handle, i2s_chan_handle_t *ret_rx_handle);
/* ... */
esp_err_t i2s_del_channel(i2s_chan_handle_t handle);
/* ... */
esp_err_t i2s_channel_get_info(i2s_chan_handle_t handle, i2s_chan_info_t *chan_info);
/* ... */
esp_err_t i2s_channel_enable(i2s_chan_handle_t handle);
/* ... */
esp_err_t i2s_channel_disable(i2s_chan_handle_t handle);
/* ... */
esp_err_t i2s_channel_preload_data(i2s_chan_handle_t tx_handle, const void *src, size_t size, size_t *bytes_loaded);
/* ... */
esp_err_t i2s_channel_write(i2s_chan_handle_t handle, const void *src, size_t size, size_t *bytes_written, uint32_t timeout_ms);
/* ... */
esp_err_t i2s_channel_read(i2s_chan_handle_t handle, void *dest, size_t size, size_t *bytes_read, uint32_t timeout_ms);
/* ... */
esp_err_t i2s_channel_register_event_callback(i2s_chan_handle_t handle, const i2s_event_callbacks_t *callbacks, void *user_data);
#ifdef __cplusplus
}{...}
#endif