diff --git a/_midi_event_8h.html b/_midi_event_8h.html index 6fc44d661..48a5641db 100644 --- a/_midi_event_8h.html +++ b/_midi_event_8h.html @@ -102,6 +102,7 @@
Classes | Namespaces | +Macros | Enumerations
MidiEvent.h File Reference
@@ -160,6 +161,11 @@  Hardware defines and helpers for daisy field platform.
  + + + +

+Macros

#define SYSEX_BUFFER_LEN   128
 

Enumerations

enum  daisy::MidiMessageType {
@@ -225,6 +231,21 @@ }
 
+

Macro Definition Documentation

+ +

◆ SYSEX_BUFFER_LEN

+ +
+
+ + + + +
#define SYSEX_BUFFER_LEN   128
+
+ +
+
diff --git a/_midi_event_8h.js b/_midi_event_8h.js index c4cffbc8d..632286017 100644 --- a/_midi_event_8h.js +++ b/_midi_event_8h.js @@ -1,5 +1,6 @@ var _midi_event_8h = [ + [ "SYSEX_BUFFER_LEN", "_midi_event_8h.html#a02f1ba6b22046642cb6f52e3fab60241", null ], [ "ChannelModeType", "_midi_event_8h.html#gaf9da54b73be4dec526670bd6c53ad98a", [ [ "AllSoundOff", "_midi_event_8h.html#ggaf9da54b73be4dec526670bd6c53ad98aa5b987ffb2be39ffa56bba82bd4d01151", null ], [ "ResetAllControllers", "_midi_event_8h.html#ggaf9da54b73be4dec526670bd6c53ad98aa16372b6654282e39482508fd9dd45752", null ], diff --git a/_midi_event_8h_source.html b/_midi_event_8h_source.html index 26e340b8b..f0e7aa622 100644 --- a/_midi_event_8h_source.html +++ b/_midi_event_8h_source.html @@ -102,469 +102,472 @@
MidiEvent.h
-Go to the documentation of this file.
1namespace daisy
-
2{
- -
18{
- - - - - - - - - - - -
30};
-
31
- -
33{
- - - - - - - - - -
43};
-
44
- -
46{
- - - - - - - - - -
56};
-
57
- -
59{
- - - - - - - - - -
69};
-
70
- -
75{
-
76 int channel;
-
77 uint8_t note;
-
78 uint8_t velocity;
-
79};
-
80
-
81
- -
86{
-
87 int channel;
-
88 uint8_t note;
-
89 uint8_t velocity;
-
90};
- -
95{
- -
97 uint8_t note;
-
98 uint8_t pressure;
-
99};
- -
104{
- - -
107 uint8_t value;
-
108};
- -
113{
- -
115 uint8_t program;
-
116};
- -
121{
- -
123 uint8_t pressure;
-
124};
- -
129{
- -
131 int16_t value;
-
132};
- -
137{
- - -
140 int16_t value;
-
141};
- -
146{
- - -
149};
- -
154{
-
155 uint8_t message_type;
-
156 uint8_t value;
-
157};
- -
162{
-
163 uint16_t position;
-
164};
- -
169{
-
170 uint8_t song;
-
171};
- -
176{
- -
178};
- -
183{
- -
185 uint8_t value;
-
186};
- -
191{
- - - -
195};
- -
200{
- -
202};
- -
207{
- -
209};
- -
214{
- -
216};
- -
221{
- -
223 uint8_t num_channels;
-
224};
- -
229{
- -
231};
-
232
-
233
- -
237{
-
238 // Newer ish.
- - -
241 uint8_t data[2];
- - - - - -
247
- -
250 {
-
251 NoteOffEvent m;
-
252 m.channel = channel;
-
253 m.note = data[0];
-
254 m.velocity = data[1];
-
255 return m;
-
256 }
-
257
- -
260 {
-
261 NoteOnEvent m;
-
262 m.channel = channel;
-
263 m.note = data[0];
-
264 m.velocity = data[1];
-
265 return m;
-
266 }
-
267
- -
270 {
- -
272 m.channel = channel;
-
273 m.note = data[0];
-
274 m.pressure = data[1];
-
275 return m;
-
276 }
-
277
- -
280 {
- -
282 m.channel = channel;
-
283 m.control_number = data[0];
-
284 m.value = data[1];
-
285 return m;
-
286 }
-
287
- -
290 {
- -
292 m.channel = channel;
-
293 m.program = data[0];
-
294 return m;
-
295 }
-
296
- -
299 {
- -
301 m.channel = channel;
-
302 m.pressure = data[0];
-
303 return m;
-
304 }
-
305
- -
308 {
- -
310 m.channel = channel;
-
311 m.value = ((uint16_t)data[1] << 7) + (data[0] - 8192);
-
312 return m;
-
313 }
-
314
- -
316 {
- -
318
-
319 m.channel = channel;
-
320 m.event_type = (ChannelModeType)(data[0] - 120);
-
321 m.value = data[1];
-
322
-
323 return m;
-
324 }
+Go to the documentation of this file.
1// TODO: make this adjustable
+
2#define SYSEX_BUFFER_LEN 128
+
3
+
4namespace daisy
+
5{
+ +
21{
+ + + + + + + + + + + +
33};
+
34
+ +
36{
+ + + + + + + + + +
46};
+
47
+ +
49{
+ + + + + + + + + +
59};
+
60
+ +
62{
+ + + + + + + + + +
72};
+
73
+ +
78{
+
79 int channel;
+
80 uint8_t note;
+
81 uint8_t velocity;
+
82};
+
83
+
84
+ +
89{
+
90 int channel;
+
91 uint8_t note;
+
92 uint8_t velocity;
+
93};
+ +
98{
+ +
100 uint8_t note;
+
101 uint8_t pressure;
+
102};
+ +
107{
+ + +
110 uint8_t value;
+
111};
+ +
116{
+ +
118 uint8_t program;
+
119};
+ +
124{
+ +
126 uint8_t pressure;
+
127};
+ +
132{
+ +
134 int16_t value;
+
135};
+ +
140{
+ + +
143 int16_t value;
+
144};
+ +
149{
+ + +
152};
+ +
157{
+
158 uint8_t message_type;
+
159 uint8_t value;
+
160};
+ +
165{
+
166 uint16_t position;
+
167};
+ +
172{
+
173 uint8_t song;
+
174};
+ +
179{
+ +
181};
+ +
186{
+ +
188 uint8_t value;
+
189};
+ +
194{
+ + + +
198};
+ +
203{
+ +
205};
+ +
210{
+ +
212};
+ +
217{
+ +
219};
+ +
224{
+ +
226 uint8_t num_channels;
+
227};
+ +
232{
+ +
234};
+
235
+
236
+ +
240{
+
241 // Newer ish.
+ + +
244 uint8_t data[2];
+ + + + + +
250
+ +
253 {
+
254 NoteOffEvent m;
+
255 m.channel = channel;
+
256 m.note = data[0];
+
257 m.velocity = data[1];
+
258 return m;
+
259 }
+
260
+ +
263 {
+
264 NoteOnEvent m;
+
265 m.channel = channel;
+
266 m.note = data[0];
+
267 m.velocity = data[1];
+
268 return m;
+
269 }
+
270
+ +
273 {
+ +
275 m.channel = channel;
+
276 m.note = data[0];
+
277 m.pressure = data[1];
+
278 return m;
+
279 }
+
280
+ +
283 {
+ +
285 m.channel = channel;
+
286 m.control_number = data[0];
+
287 m.value = data[1];
+
288 return m;
+
289 }
+
290
+ +
293 {
+ +
295 m.channel = channel;
+
296 m.program = data[0];
+
297 return m;
+
298 }
+
299
+ +
302 {
+ +
304 m.channel = channel;
+
305 m.pressure = data[0];
+
306 return m;
+
307 }
+
308
+ +
311 {
+ +
313 m.channel = channel;
+
314 m.value = ((uint16_t)data[1] << 7) + (data[0] - 8192);
+
315 return m;
+
316 }
+
317
+ +
319 {
+ +
321
+
322 m.channel = channel;
+
323 m.event_type = (ChannelModeType)(data[0] - 120);
+
324 m.value = data[1];
325
- -
327 {
- - -
330 for(int i = 0; i < SYSEX_BUFFER_LEN; i++)
-
331 {
-
332 m.data[i] = 0;
-
333 if(i < m.length)
-
334 {
-
335 m.data[i] = sysex_data[i];
-
336 }
-
337 }
-
338 return m;
-
339 }
- -
341 {
- -
343 m.message_type = (data[0] & 0x70) >> 4;
-
344 m.value = data[0] & 0x0f;
-
345 return m;
-
346 }
- -
348 {
- -
350 m.position = ((uint16_t)data[1] << 7) | data[0];
-
351 return m;
-
352 }
- -
354 {
- -
356 m.song = data[0];
-
357 return m;
-
358 }
- -
360 {
- -
362 m.channel = channel;
-
363 return m;
-
364 }
- -
366 {
- -
368 m.channel = channel;
-
369 m.value = data[1];
-
370 return m;
-
371 }
- -
373 {
- -
375 m.channel = channel;
-
376 m.local_control_off = data[1] == 0;
-
377 m.local_control_on = data[1] == 127;
-
378 return m;
-
379 }
- -
381 {
- -
383 m.channel = channel;
-
384 return m;
-
385 }
- -
387 {
- -
389 m.channel = channel;
-
390 return m;
-
391 }
- -
393 {
- -
395 m.channel = channel;
-
396 return m;
-
397 }
- -
399 {
- -
401 m.channel = channel;
-
402 m.num_channels = data[1];
-
403 return m;
-
404 }
- -
406 {
- -
408 m.channel = channel;
-
409 return m;
-
410 }
-
411};
-
412 // End midi_events
-
414 // End midi
-
416} //namespace daisy
-
SystemRealTimeType
Definition MidiEvent.h:46
-
SystemCommonType
Definition MidiEvent.h:33
-
MidiMessageType
Definition MidiEvent.h:18
-
ChannelModeType
Definition MidiEvent.h:59
-
@ Continue
Definition MidiEvent.h:50
-
@ SRTUndefined0
Definition MidiEvent.h:48
-
@ Reset
Definition MidiEvent.h:54
-
@ ActiveSensing
Definition MidiEvent.h:53
-
@ Start
Definition MidiEvent.h:49
-
@ SystemRealTimeLast
Definition MidiEvent.h:55
-
@ Stop
Definition MidiEvent.h:51
-
@ SRTUndefined1
Definition MidiEvent.h:52
-
@ TimingClock
Definition MidiEvent.h:47
-
@ SCUndefined1
Definition MidiEvent.h:39
-
@ MTCQuarterFrame
Definition MidiEvent.h:35
-
@ SongSelect
Definition MidiEvent.h:37
-
@ SystemExclusive
Definition MidiEvent.h:34
-
@ TuneRequest
Definition MidiEvent.h:40
-
@ SysExEnd
Definition MidiEvent.h:41
-
@ SystemCommonLast
Definition MidiEvent.h:42
-
@ SongPositionPointer
Definition MidiEvent.h:36
-
@ SCUndefined0
Definition MidiEvent.h:38
-
@ ControlChange
Definition MidiEvent.h:22
-
@ NoteOff
Definition MidiEvent.h:19
-
@ PolyphonicKeyPressure
Definition MidiEvent.h:21
-
@ SystemCommon
Definition MidiEvent.h:26
-
@ ProgramChange
Definition MidiEvent.h:23
-
@ MessageLast
Definition MidiEvent.h:29
-
@ PitchBend
Definition MidiEvent.h:25
-
@ SystemRealTime
Definition MidiEvent.h:27
-
@ ChannelPressure
Definition MidiEvent.h:24
-
@ NoteOn
Definition MidiEvent.h:20
-
@ ChannelMode
Definition MidiEvent.h:28
-
@ ResetAllControllers
Definition MidiEvent.h:61
-
@ PolyModeOn
Definition MidiEvent.h:67
-
@ LocalControl
Definition MidiEvent.h:62
-
@ AllNotesOff
Definition MidiEvent.h:63
-
@ AllSoundOff
Definition MidiEvent.h:60
-
@ OmniModeOn
Definition MidiEvent.h:65
-
@ ChannelModeLast
Definition MidiEvent.h:68
-
@ OmniModeOff
Definition MidiEvent.h:64
-
@ MonoModeOn
Definition MidiEvent.h:66
-
#define SYSEX_BUFFER_LEN
Definition midi.h:6
+
326 return m;
+
327 }
+
328
+ +
330 {
+ + +
333 for(int i = 0; i < SYSEX_BUFFER_LEN; i++)
+
334 {
+
335 m.data[i] = 0;
+
336 if(i < m.length)
+
337 {
+
338 m.data[i] = sysex_data[i];
+
339 }
+
340 }
+
341 return m;
+
342 }
+ +
344 {
+ +
346 m.message_type = (data[0] & 0x70) >> 4;
+
347 m.value = data[0] & 0x0f;
+
348 return m;
+
349 }
+ +
351 {
+ +
353 m.position = ((uint16_t)data[1] << 7) | data[0];
+
354 return m;
+
355 }
+ +
357 {
+ +
359 m.song = data[0];
+
360 return m;
+
361 }
+ +
363 {
+ +
365 m.channel = channel;
+
366 return m;
+
367 }
+ +
369 {
+ +
371 m.channel = channel;
+
372 m.value = data[1];
+
373 return m;
+
374 }
+ +
376 {
+ +
378 m.channel = channel;
+
379 m.local_control_off = data[1] == 0;
+
380 m.local_control_on = data[1] == 127;
+
381 return m;
+
382 }
+ +
384 {
+ +
386 m.channel = channel;
+
387 return m;
+
388 }
+ +
390 {
+ +
392 m.channel = channel;
+
393 return m;
+
394 }
+ +
396 {
+ +
398 m.channel = channel;
+
399 return m;
+
400 }
+ +
402 {
+ +
404 m.channel = channel;
+
405 m.num_channels = data[1];
+
406 return m;
+
407 }
+ +
409 {
+ +
411 m.channel = channel;
+
412 return m;
+
413 }
+
414};
+
415 // End midi_events
+
417 // End midi
+
419} //namespace daisy
+
#define SYSEX_BUFFER_LEN
Definition MidiEvent.h:2
+
SystemRealTimeType
Definition MidiEvent.h:49
+
SystemCommonType
Definition MidiEvent.h:36
+
MidiMessageType
Definition MidiEvent.h:21
+
ChannelModeType
Definition MidiEvent.h:62
+
@ Continue
Definition MidiEvent.h:53
+
@ SRTUndefined0
Definition MidiEvent.h:51
+
@ Reset
Definition MidiEvent.h:57
+
@ ActiveSensing
Definition MidiEvent.h:56
+
@ Start
Definition MidiEvent.h:52
+
@ SystemRealTimeLast
Definition MidiEvent.h:58
+
@ Stop
Definition MidiEvent.h:54
+
@ SRTUndefined1
Definition MidiEvent.h:55
+
@ TimingClock
Definition MidiEvent.h:50
+
@ SCUndefined1
Definition MidiEvent.h:42
+
@ MTCQuarterFrame
Definition MidiEvent.h:38
+
@ SongSelect
Definition MidiEvent.h:40
+
@ SystemExclusive
Definition MidiEvent.h:37
+
@ TuneRequest
Definition MidiEvent.h:43
+
@ SysExEnd
Definition MidiEvent.h:44
+
@ SystemCommonLast
Definition MidiEvent.h:45
+
@ SongPositionPointer
Definition MidiEvent.h:39
+
@ SCUndefined0
Definition MidiEvent.h:41
+
@ ControlChange
Definition MidiEvent.h:25
+
@ NoteOff
Definition MidiEvent.h:22
+
@ PolyphonicKeyPressure
Definition MidiEvent.h:24
+
@ SystemCommon
Definition MidiEvent.h:29
+
@ ProgramChange
Definition MidiEvent.h:26
+
@ MessageLast
Definition MidiEvent.h:32
+
@ PitchBend
Definition MidiEvent.h:28
+
@ SystemRealTime
Definition MidiEvent.h:30
+
@ ChannelPressure
Definition MidiEvent.h:27
+
@ NoteOn
Definition MidiEvent.h:23
+
@ ChannelMode
Definition MidiEvent.h:31
+
@ ResetAllControllers
Definition MidiEvent.h:64
+
@ PolyModeOn
Definition MidiEvent.h:70
+
@ LocalControl
Definition MidiEvent.h:65
+
@ AllNotesOff
Definition MidiEvent.h:66
+
@ AllSoundOff
Definition MidiEvent.h:63
+
@ OmniModeOn
Definition MidiEvent.h:68
+
@ ChannelModeLast
Definition MidiEvent.h:71
+
@ OmniModeOff
Definition MidiEvent.h:67
+
@ MonoModeOn
Definition MidiEvent.h:69
Hardware defines and helpers for daisy field platform.
Definition index.h:2
-
Definition MidiEvent.h:200
-
int channel
Definition MidiEvent.h:201
-
Definition MidiEvent.h:176
-
int channel
Definition MidiEvent.h:177
-
Definition MidiEvent.h:137
-
int16_t value
Definition MidiEvent.h:140
-
ChannelModeType event_type
Definition MidiEvent.h:139
-
int channel
Definition MidiEvent.h:138
-
Definition MidiEvent.h:121
-
int channel
Definition MidiEvent.h:122
-
uint8_t pressure
Definition MidiEvent.h:123
-
Definition MidiEvent.h:104
-
uint8_t value
Definition MidiEvent.h:107
-
uint8_t control_number
Definition MidiEvent.h:106
-
int channel
Definition MidiEvent.h:105
-
Definition MidiEvent.h:191
-
bool local_control_off
Definition MidiEvent.h:193
-
int channel
Definition MidiEvent.h:192
-
bool local_control_on
Definition MidiEvent.h:194
-
Definition MidiEvent.h:154
-
uint8_t message_type
Definition MidiEvent.h:155
-
uint8_t value
Definition MidiEvent.h:156
-
Definition MidiEvent.h:237
-
ChannelModeEvent AsChannelMode()
Definition MidiEvent.h:315
-
PolyphonicKeyPressureEvent AsPolyphonicKeyPressure()
Definition MidiEvent.h:269
-
PolyModeOnEvent AsPolyModeOn()
Definition MidiEvent.h:405
-
SystemExclusiveEvent AsSystemExclusive()
Definition MidiEvent.h:326
-
uint8_t sysex_data[SYSEX_BUFFER_LEN]
Definition MidiEvent.h:242
-
int channel
Definition MidiEvent.h:240
-
MTCQuarterFrameEvent AsMTCQuarterFrame()
Definition MidiEvent.h:340
-
AllSoundOffEvent AsAllSoundOff()
Definition MidiEvent.h:359
-
SongPositionPointerEvent AsSongPositionPointer()
Definition MidiEvent.h:347
-
uint8_t sysex_message_len
Definition MidiEvent.h:243
-
SystemRealTimeType srt_type
Definition MidiEvent.h:245
-
ChannelModeType cm_type
Definition MidiEvent.h:246
-
AllNotesOffEvent AsAllNotesOff()
Definition MidiEvent.h:380
-
SystemCommonType sc_type
Definition MidiEvent.h:244
-
ControlChangeEvent AsControlChange()
Definition MidiEvent.h:279
-
OmniModeOnEvent AsOmniModeOn()
Definition MidiEvent.h:392
-
LocalControlEvent AsLocalControl()
Definition MidiEvent.h:372
-
ChannelPressureEvent AsChannelPressure()
Definition MidiEvent.h:298
-
ProgramChangeEvent AsProgramChange()
Definition MidiEvent.h:289
-
SongSelectEvent AsSongSelect()
Definition MidiEvent.h:353
-
ResetAllControllersEvent AsResetAllControllers()
Definition MidiEvent.h:365
-
NoteOffEvent AsNoteOff()
Definition MidiEvent.h:249
-
uint8_t data[2]
Definition MidiEvent.h:241
-
OmniModeOffEvent AsOmniModeOff()
Definition MidiEvent.h:386
-
MidiMessageType type
Definition MidiEvent.h:239
-
MonoModeOnEvent AsMonoModeOn()
Definition MidiEvent.h:398
-
NoteOnEvent AsNoteOn()
Definition MidiEvent.h:259
-
PitchBendEvent AsPitchBend()
Definition MidiEvent.h:307
-
Definition MidiEvent.h:221
-
uint8_t num_channels
Definition MidiEvent.h:223
-
int channel
Definition MidiEvent.h:222
-
Definition MidiEvent.h:75
-
int channel
Definition MidiEvent.h:76
-
uint8_t note
Definition MidiEvent.h:77
-
uint8_t velocity
Definition MidiEvent.h:78
-
Definition MidiEvent.h:86
-
uint8_t velocity
Definition MidiEvent.h:89
-
int channel
Definition MidiEvent.h:87
-
uint8_t note
Definition MidiEvent.h:88
-
Definition MidiEvent.h:207
-
int channel
Definition MidiEvent.h:208
-
Definition MidiEvent.h:214
-
int channel
Definition MidiEvent.h:215
-
Definition MidiEvent.h:129
-
int channel
Definition MidiEvent.h:130
-
int16_t value
Definition MidiEvent.h:131
-
Definition MidiEvent.h:229
-
int channel
Definition MidiEvent.h:230
-
Definition MidiEvent.h:95
-
uint8_t pressure
Definition MidiEvent.h:98
-
uint8_t note
Definition MidiEvent.h:97
-
int channel
Definition MidiEvent.h:96
-
Definition MidiEvent.h:113
-
int channel
Definition MidiEvent.h:114
-
uint8_t program
Definition MidiEvent.h:115
-
Definition MidiEvent.h:183
-
int channel
Definition MidiEvent.h:184
-
uint8_t value
Definition MidiEvent.h:185
-
Definition MidiEvent.h:162
-
uint16_t position
Definition MidiEvent.h:163
-
Definition MidiEvent.h:169
-
uint8_t song
Definition MidiEvent.h:170
-
Definition MidiEvent.h:146
-
uint8_t data[SYSEX_BUFFER_LEN]
Definition MidiEvent.h:148
-
int length
Definition MidiEvent.h:147
+
Definition MidiEvent.h:203
+
int channel
Definition MidiEvent.h:204
+
Definition MidiEvent.h:179
+
int channel
Definition MidiEvent.h:180
+
Definition MidiEvent.h:140
+
int16_t value
Definition MidiEvent.h:143
+
ChannelModeType event_type
Definition MidiEvent.h:142
+
int channel
Definition MidiEvent.h:141
+
Definition MidiEvent.h:124
+
int channel
Definition MidiEvent.h:125
+
uint8_t pressure
Definition MidiEvent.h:126
+
Definition MidiEvent.h:107
+
uint8_t value
Definition MidiEvent.h:110
+
uint8_t control_number
Definition MidiEvent.h:109
+
int channel
Definition MidiEvent.h:108
+
Definition MidiEvent.h:194
+
bool local_control_off
Definition MidiEvent.h:196
+
int channel
Definition MidiEvent.h:195
+
bool local_control_on
Definition MidiEvent.h:197
+
Definition MidiEvent.h:157
+
uint8_t message_type
Definition MidiEvent.h:158
+
uint8_t value
Definition MidiEvent.h:159
+
Definition MidiEvent.h:240
+
ChannelModeEvent AsChannelMode()
Definition MidiEvent.h:318
+
PolyphonicKeyPressureEvent AsPolyphonicKeyPressure()
Definition MidiEvent.h:272
+
PolyModeOnEvent AsPolyModeOn()
Definition MidiEvent.h:408
+
SystemExclusiveEvent AsSystemExclusive()
Definition MidiEvent.h:329
+
int channel
Definition MidiEvent.h:243
+
MTCQuarterFrameEvent AsMTCQuarterFrame()
Definition MidiEvent.h:343
+
AllSoundOffEvent AsAllSoundOff()
Definition MidiEvent.h:362
+
SongPositionPointerEvent AsSongPositionPointer()
Definition MidiEvent.h:350
+
uint8_t sysex_message_len
Definition MidiEvent.h:246
+
SystemRealTimeType srt_type
Definition MidiEvent.h:248
+
uint8_t sysex_data[128]
Definition MidiEvent.h:245
+
ChannelModeType cm_type
Definition MidiEvent.h:249
+
AllNotesOffEvent AsAllNotesOff()
Definition MidiEvent.h:383
+
SystemCommonType sc_type
Definition MidiEvent.h:247
+
ControlChangeEvent AsControlChange()
Definition MidiEvent.h:282
+
OmniModeOnEvent AsOmniModeOn()
Definition MidiEvent.h:395
+
LocalControlEvent AsLocalControl()
Definition MidiEvent.h:375
+
ChannelPressureEvent AsChannelPressure()
Definition MidiEvent.h:301
+
ProgramChangeEvent AsProgramChange()
Definition MidiEvent.h:292
+
SongSelectEvent AsSongSelect()
Definition MidiEvent.h:356
+
ResetAllControllersEvent AsResetAllControllers()
Definition MidiEvent.h:368
+
NoteOffEvent AsNoteOff()
Definition MidiEvent.h:252
+
uint8_t data[2]
Definition MidiEvent.h:244
+
OmniModeOffEvent AsOmniModeOff()
Definition MidiEvent.h:389
+
MidiMessageType type
Definition MidiEvent.h:242
+
MonoModeOnEvent AsMonoModeOn()
Definition MidiEvent.h:401
+
NoteOnEvent AsNoteOn()
Definition MidiEvent.h:262
+
PitchBendEvent AsPitchBend()
Definition MidiEvent.h:310
+
Definition MidiEvent.h:224
+
uint8_t num_channels
Definition MidiEvent.h:226
+
int channel
Definition MidiEvent.h:225
+
Definition MidiEvent.h:78
+
int channel
Definition MidiEvent.h:79
+
uint8_t note
Definition MidiEvent.h:80
+
uint8_t velocity
Definition MidiEvent.h:81
+
Definition MidiEvent.h:89
+
uint8_t velocity
Definition MidiEvent.h:92
+
int channel
Definition MidiEvent.h:90
+
uint8_t note
Definition MidiEvent.h:91
+
Definition MidiEvent.h:210
+
int channel
Definition MidiEvent.h:211
+
Definition MidiEvent.h:217
+
int channel
Definition MidiEvent.h:218
+
Definition MidiEvent.h:132
+
int channel
Definition MidiEvent.h:133
+
int16_t value
Definition MidiEvent.h:134
+
Definition MidiEvent.h:232
+
int channel
Definition MidiEvent.h:233
+
Definition MidiEvent.h:98
+
uint8_t pressure
Definition MidiEvent.h:101
+
uint8_t note
Definition MidiEvent.h:100
+
int channel
Definition MidiEvent.h:99
+
Definition MidiEvent.h:116
+
int channel
Definition MidiEvent.h:117
+
uint8_t program
Definition MidiEvent.h:118
+
Definition MidiEvent.h:186
+
int channel
Definition MidiEvent.h:187
+
uint8_t value
Definition MidiEvent.h:188
+
Definition MidiEvent.h:165
+
uint16_t position
Definition MidiEvent.h:166
+
Definition MidiEvent.h:172
+
uint8_t song
Definition MidiEvent.h:173
+
Definition MidiEvent.h:149
+
int length
Definition MidiEvent.h:150
+
uint8_t data[128]
Definition MidiEvent.h:151
diff --git a/annotated.html b/annotated.html index 9c832caec..094c2fb56 100644 --- a/annotated.html +++ b/annotated.html @@ -208,110 +208,111 @@  CConfig  CMidiEvent  CMidiHandlerSimple MIDI Handler
- Parses bytes from an input into valid MidiEvents.
- The MidiEvents fill a FIFO queue that the user can pop messages from +Parses bytes from an input into valid MidiEvents.
+The MidiEvents fill a FIFO queue that the user can pop messages from  CConfig - CMidiUartTransportTransport layer for sending and receiving MIDI data over UART - CConfig - CMidiUsbTransportUSB Transport for MIDI - CConfig - CMonoModeOnEvent - CMpr121Device support for MPR121 12x Capacitive Touch Sensor - CConfig - CMpr121I2CTransport - CConfig - CMTCQuarterFrameEvent - CMultiSlaveSpiHandle - CConfig - CNeoPixelDevice support for Adafruit Neopixel Device - CConfig - CNeoPixelI2CTransport - CConfig - CNeoTrellisDevice support for the Adafruit Neotrellis device - CConfig - CkeyEvent - CBit - CkeyEventRaw - CkeyState - CNeoTrellisI2CTransport - CConfig - CNoteOffEvent - CNoteOnEvent - COledDisplay - CConfig - COmniModeOffEvent - COmniModeOnEvent - COneBitGraphicsDisplay - COneBitGraphicsDisplayImpl - CParameter - CPcm3060 - CPersistentStorageNon Volatile storage class for persistent settings on an external flash device - CPinRepresentation of hardware port/pin combination - CPitchBendEvent - CPolyModeOnEvent - CPolyphonicKeyPressureEvent - CPotMonitorA potentiometer monitor that generates events in a UiEventQueue - CProgramChangeEvent - CQSPIHandle - CConfig - CRandomTrue Random Number Generator access - CRectangle - CResetAllControllersEvent - CRgbLed - CRingBuffer - CRingBuffer< T, 0 > - CSaiHandle - CConfig - CScopedIrqBlocker - CSdmmcHandler - CConfig - CShiftRegister4021Device Driver for CD4021 shift register - CConfig - CSongPositionPointerEvent - CSongSelectEvent - CSpiHandle - CConfig - CSSD130x4WireSoftSpiTransport - CConfig - CSSD130x4WireSpiTransport - CConfig - CSSD130xDriver - CConfig - CSSD130xI2CTransport - CConfig - CStack - CStackBase - CSwitch - CSwitch3 - CSystem - CConfig - CSystemExclusiveEvent - CTimerHandleHardare timer peripheral support - CConfigConfiguration struct for the Peripheral - CTlv493dDevice support for TLV493D Magnetic Sensor - CAccessMode_t - CConfig - CRegMask_t - CTlv493dI2CTransport - CConfig - CUartHandler - CConfig - CUIA generic UI system - CSpecialControlIds - CUiCanvasDescriptorA descriptor for a canvas in the UI system - CUiEventQueueA queue that holds user input events in the UI system - CUiPageThe base class for a page in the UI system - CUSBHostHandlePresents a USB Mass Storage Device host interface - CConfigConfiguration structure for interfacing with MSD Driver - CVoctCalibrationHelper class for calibrating an input to 1V/oct response - CWAV_FormatTypeDef - CWaveTableLoader - CWavFileInfo - CWavPlayer - CWavWriter - CConfig - CWm8731 - CConfig + CMidiParserUtility class for parsing raw byte streams into MIDI messages + CMidiUartTransportTransport layer for sending and receiving MIDI data over UART + CConfigConfiguration structure for UART MIDI + CMidiUsbTransportUSB Transport for MIDI + CConfig + CMonoModeOnEvent + CMpr121Device support for MPR121 12x Capacitive Touch Sensor + CConfig + CMpr121I2CTransport + CConfig + CMTCQuarterFrameEvent + CMultiSlaveSpiHandle + CConfig + CNeoPixelDevice support for Adafruit Neopixel Device + CConfig + CNeoPixelI2CTransport + CConfig + CNeoTrellisDevice support for the Adafruit Neotrellis device + CConfig + CkeyEvent + CBit + CkeyEventRaw + CkeyState + CNeoTrellisI2CTransport + CConfig + CNoteOffEvent + CNoteOnEvent + COledDisplay + CConfig + COmniModeOffEvent + COmniModeOnEvent + COneBitGraphicsDisplay + COneBitGraphicsDisplayImpl + CParameter + CPcm3060 + CPersistentStorageNon Volatile storage class for persistent settings on an external flash device + CPinRepresentation of hardware port/pin combination + CPitchBendEvent + CPolyModeOnEvent + CPolyphonicKeyPressureEvent + CPotMonitorA potentiometer monitor that generates events in a UiEventQueue + CProgramChangeEvent + CQSPIHandle + CConfig + CRandomTrue Random Number Generator access + CRectangle + CResetAllControllersEvent + CRgbLed + CRingBuffer + CRingBuffer< T, 0 > + CSaiHandle + CConfig + CScopedIrqBlocker + CSdmmcHandler + CConfig + CShiftRegister4021Device Driver for CD4021 shift register + CConfig + CSongPositionPointerEvent + CSongSelectEvent + CSpiHandle + CConfig + CSSD130x4WireSoftSpiTransport + CConfig + CSSD130x4WireSpiTransport + CConfig + CSSD130xDriver + CConfig + CSSD130xI2CTransport + CConfig + CStack + CStackBase + CSwitch + CSwitch3 + CSystem + CConfig + CSystemExclusiveEvent + CTimerHandleHardare timer peripheral support + CConfigConfiguration struct for the Peripheral + CTlv493dDevice support for TLV493D Magnetic Sensor + CAccessMode_t + CConfig + CRegMask_t + CTlv493dI2CTransport + CConfig + CUartHandler + CConfig + CUIA generic UI system + CSpecialControlIds + CUiCanvasDescriptorA descriptor for a canvas in the UI system + CUiEventQueueA queue that holds user input events in the UI system + CUiPageThe base class for a page in the UI system + CUSBHostHandlePresents a USB Mass Storage Device host interface + CConfigConfiguration structure for interfacing with MSD Driver + CVoctCalibrationHelper class for calibrating an input to 1V/oct response + CWAV_FormatTypeDef + CWaveTableLoader + CWavFileInfo + CWavPlayer + CWavWriter + CConfig + CWm8731 + CConfig  Cdsy_gpio  Cdsy_gpio_pin  CDSY_SD_CardInfoTypeDef diff --git a/annotated_dup.js b/annotated_dup.js index 143c07762..fc5db7277 100644 --- a/annotated_dup.js +++ b/annotated_dup.js @@ -69,6 +69,7 @@ var annotated_dup = [ "Mcp23X17", "classdaisy_1_1_mcp23_x17.html", "classdaisy_1_1_mcp23_x17" ], [ "MidiEvent", "structdaisy_1_1_midi_event.html", "structdaisy_1_1_midi_event" ], [ "MidiHandler", "classdaisy_1_1_midi_handler.html", "classdaisy_1_1_midi_handler" ], + [ "MidiParser", "classdaisy_1_1_midi_parser.html", "classdaisy_1_1_midi_parser" ], [ "MidiUartTransport", "classdaisy_1_1_midi_uart_transport.html", "classdaisy_1_1_midi_uart_transport" ], [ "MidiUsbTransport", "classdaisy_1_1_midi_usb_transport.html", "classdaisy_1_1_midi_usb_transport" ], [ "MonoModeOnEvent", "structdaisy_1_1_mono_mode_on_event.html", "structdaisy_1_1_mono_mode_on_event" ], diff --git a/classdaisy_1_1_f_i_f_o_base.html b/classdaisy_1_1_f_i_f_o_base.html index 18a7f8566..383d2244f 100644 --- a/classdaisy_1_1_f_i_f_o_base.html +++ b/classdaisy_1_1_f_i_f_o_base.html @@ -117,8 +117,9 @@
-daisy::FIFO< Event, 256 > -daisy::FIFO< T, capacity > +daisy::FIFO< daisy::MidiEvent, 256 > +daisy::FIFO< Event, 256 > +daisy::FIFO< T, capacity >
diff --git a/classdaisy_1_1_f_i_f_o_base.png b/classdaisy_1_1_f_i_f_o_base.png index 0dc0e5fc8..55e3d4d12 100644 Binary files a/classdaisy_1_1_f_i_f_o_base.png and b/classdaisy_1_1_f_i_f_o_base.png differ diff --git a/classdaisy_1_1_midi_handler.html b/classdaisy_1_1_midi_handler.html index 1fbf054b1..eb50fa0e9 100644 --- a/classdaisy_1_1_midi_handler.html +++ b/classdaisy_1_1_midi_handler.html @@ -108,14 +108,14 @@

Simple MIDI Handler
- Parses bytes from an input into valid MidiEvents.
- The MidiEvents fill a FIFO queue that the user can pop messages from. +Parses bytes from an input into valid MidiEvents.
+The MidiEvents fill a FIFO queue that the user can pop messages from. More...

Detailed Description

template<typename Transport>
class daisy::MidiHandler< Transport >

Simple MIDI Handler
- Parses bytes from an input into valid MidiEvents.
- The MidiEvents fill a FIFO queue that the user can pop messages from.

+Parses bytes from an input into valid MidiEvents.
+The MidiEvents fill a FIFO queue that the user can pop messages from.

Author
shensley
Date
March 2020
@@ -256,7 +256,7 @@

-

Initializes the MidiHandler

Parameters
+

Initializes the MidiHandler

Parameters

configConfiguration structure used to define specifics to the MIDI Handler.
@@ -318,9 +318,11 @@

-

Feed in bytes to state machine from a queue. Populates internal FIFO queue with MIDI Messages For example with uart: midi.Parse(uart.PopRx());

Parameters
+

Feed in bytes to parser state machine from an external source. Populates internal FIFO queue with MIDI Messages.

+
Note
Normally application code won't need to use this method directly.
+
Parameters
- +
byte&
byteMIDI byte to be parsed
diff --git a/classdaisy_1_1_midi_parser-members.html b/classdaisy_1_1_midi_parser-members.html new file mode 100644 index 000000000..52b1c1d62 --- /dev/null +++ b/classdaisy_1_1_midi_parser-members.html @@ -0,0 +1,136 @@ + + + + + + + + +libDaisy: Member List + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
libDaisy +
+
Hardware Library for Daisy
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
daisy::MidiParser Member List
+
+
+ +

This is the complete list of members for daisy::MidiParser, including all inherited members.

+ + + + + + +
Init()daisy::MidiParserinline
MidiParser()daisy::MidiParserinline
Parse(uint8_t byte, MidiEvent *event_out)daisy::MidiParser
Reset()daisy::MidiParser
~MidiParser()daisy::MidiParserinline
+
+ + + + + + \ No newline at end of file diff --git a/classdaisy_1_1_midi_parser.html b/classdaisy_1_1_midi_parser.html new file mode 100644 index 000000000..463ff3fd0 --- /dev/null +++ b/classdaisy_1_1_midi_parser.html @@ -0,0 +1,295 @@ + + + + + + + + +libDaisy: daisy::MidiParser Class Reference + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
libDaisy +
+
Hardware Library for Daisy
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
daisy::MidiParser Class Reference
+
+
+ +

Utility class for parsing raw byte streams into MIDI messages. + More...

+

Detailed Description

+

Utility class for parsing raw byte streams into MIDI messages.

+

Implemented as a state machine designed to parse one byte at a time

+
+

#include <midi_parser.h>

+ + + + + + + + + + + + + + +

+Public Member Functions

 MidiParser ()
 
 ~MidiParser ()
 
void Init ()
 
bool Parse (uint8_t byte, MidiEvent *event_out)
 Parse one MIDI byte. If the byte completes a parsed event, its value will be assigned to the dereferenced output pointer. Otherwise, status is preserved in anticipation of the next sequential byte. Return value indicates if a new event was parsed or not.
 
void Reset ()
 Reset parser to default state.
 
+

Constructor & Destructor Documentation

+ +

◆ MidiParser()

+ +
+
+ + + + + +
+ + + + + + + +
daisy::MidiParser::MidiParser ()
+
+inline
+
+ +
+
+ +

◆ ~MidiParser()

+ +
+
+ + + + + +
+ + + + + + + +
daisy::MidiParser::~MidiParser ()
+
+inline
+
+ +
+
+

Member Function Documentation

+ +

◆ Init()

+ +
+
+ + + + + +
+ + + + + + + +
void daisy::MidiParser::Init ()
+
+inline
+
+ +
+
+ +

◆ Parse()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool daisy::MidiParser::Parse (uint8_t byte,
MidiEventevent_out 
)
+
+ +

Parse one MIDI byte. If the byte completes a parsed event, its value will be assigned to the dereferenced output pointer. Otherwise, status is preserved in anticipation of the next sequential byte. Return value indicates if a new event was parsed or not.

+
Parameters
+ + + +
byteRaw MIDI byte to parse
event_outPointer to output event object, value assigned on parse success
+
+
+
Returns
true If a new event was parsed
+
+false If no new event was parsed
+ +
+
+ +

◆ Reset()

+ +
+
+ + + + + + + +
void daisy::MidiParser::Reset ()
+
+ +

Reset parser to default state.

+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + + + \ No newline at end of file diff --git a/classdaisy_1_1_midi_parser.js b/classdaisy_1_1_midi_parser.js new file mode 100644 index 000000000..66ffac4f5 --- /dev/null +++ b/classdaisy_1_1_midi_parser.js @@ -0,0 +1,8 @@ +var classdaisy_1_1_midi_parser = +[ + [ "MidiParser", "classdaisy_1_1_midi_parser.html#a7c8613042df01c8fbd96f38618266c93", null ], + [ "~MidiParser", "classdaisy_1_1_midi_parser.html#a97e189d4b01195b78d6f687e91d4cffd", null ], + [ "Init", "classdaisy_1_1_midi_parser.html#adddae08eba63035e5d7d49fb3de201f8", null ], + [ "Parse", "classdaisy_1_1_midi_parser.html#ac0f99ea908391d2f95ddac9ce80fc31a", null ], + [ "Reset", "classdaisy_1_1_midi_parser.html#a9fca6bc5b70e646c61a6abcd477a885c", null ] +]; \ No newline at end of file diff --git a/classdaisy_1_1_midi_uart_transport-members.html b/classdaisy_1_1_midi_uart_transport-members.html index 6886ad9cd..da62ec01c 100644 --- a/classdaisy_1_1_midi_uart_transport-members.html +++ b/classdaisy_1_1_midi_uart_transport-members.html @@ -107,13 +107,12 @@ - - - - - - - + + + + + +
FlushRx()daisy::MidiUartTransportinline
Init(Config config)daisy::MidiUartTransportinline
MidiUartTransport()daisy::MidiUartTransportinline
Readable()daisy::MidiUartTransportinline
Rx()daisy::MidiUartTransportinline
RxActive()daisy::MidiUartTransportinline
StartRx()daisy::MidiUartTransportinline
Tx(uint8_t *buff, size_t size)daisy::MidiUartTransportinline
~MidiUartTransport()daisy::MidiUartTransportinline
MidiRxParseCallback typedefdaisy::MidiUartTransport
MidiUartTransport()daisy::MidiUartTransportinline
RxActive()daisy::MidiUartTransportinline
StartRx(MidiRxParseCallback parse_callback, void *context)daisy::MidiUartTransportinline
Tx(uint8_t *buff, size_t size)daisy::MidiUartTransportinline
~MidiUartTransport()daisy::MidiUartTransportinline
diff --git a/classdaisy_1_1_midi_uart_transport.html b/classdaisy_1_1_midi_uart_transport.html index f2427220e..4884ec768 100644 --- a/classdaisy_1_1_midi_uart_transport.html +++ b/classdaisy_1_1_midi_uart_transport.html @@ -101,6 +101,7 @@
daisy::MidiUartTransport Class Reference
@@ -111,15 +112,21 @@ More...

Detailed Description

Transport layer for sending and receiving MIDI data over UART.

-

This is the mode of communication used for TRS and DIN MIDI

+

This is the mode of communication used for TRS and DIN MIDI There is an additional 2kB of RAM data used within this class for processing bulk data from the UART peripheral

#include <midi.h>

+

Classes

struct  Config
 Configuration structure for UART MIDI. More...
 
+ + + +

+Public Types

typedef void(* MidiRxParseCallback) (uint8_t *data, size_t size, void *context)
 
@@ -127,20 +134,36 @@ + - - - - - - + + + + + +

Public Member Functions

 MidiUartTransport ()
 ~MidiUartTransport ()
 
void Init (Config config)
 Initialization of UART using config struct.
 
void StartRx ()
 
size_t Readable ()
 
uint8_t Rx ()
 
void StartRx (MidiRxParseCallback parse_callback, void *context)
 Start the UART peripheral in listening mode. This will fill an internal data structure in the background.
 
bool RxActive ()
 returns whether the UART peripheral is actively listening in the background or not
 
void FlushRx ()
 This is a no-op for UART transport - Rx is via DMA callback with circular buffer.
 
void Tx (uint8_t *buff, size_t size)
 sends the buffer of bytes out of the UART peripheral
 
+

Member Typedef Documentation

+ +

◆ MidiRxParseCallback

+ +
+
+ + + + +
typedef void(* daisy::MidiUartTransport::MidiRxParseCallback) (uint8_t *data, size_t size, void *context)
+
+ +
+

Constructor & Destructor Documentation

◆ MidiUartTransport()

@@ -216,6 +239,8 @@

+

This is a no-op for UART transport - Rx is via DMA callback with circular buffer.

+

@@ -242,55 +267,8 @@

- - - -

◆ Readable()

- -
-
- - - - - -
- - - - - - - -
size_t daisy::MidiUartTransport::Readable ()
-
-inline
-
- -
-
- -

◆ Rx()

- -
-
- - - - - -
- - - - - - - -
uint8_t daisy::MidiUartTransport::Rx ()
-
-inline
-
+

Initialization of UART using config struct.

+

zero the buffer to ensure emptiness regardless of source memory

@@ -317,10 +295,12 @@

+

returns whether the UART peripheral is actively listening in the background or not

+ -
-

◆ StartRx()

+ +

◆ StartRx()

@@ -378,6 +371,8 @@

+

sends the buffer of bytes out of the UART peripheral

+
The documentation for this class was generated from the following file:

-
Returns
Whether the receive was successful or not
-
-

◆ DmaReceiveFifo()

+ +

◆ DmaListenStop()

- +
Result daisy::UartHandler::DmaReceiveFifo Result daisy::UartHandler::DmaListenStop ( )
-

Start the DMA Receive with a double buffered FIFO

Returns
OK or ERR
+

Stops the DMA Reception during listen mode

- -

◆ DmaTransmit()

+ +

◆ DmaReceive()

- + @@ -542,7 +550,7 @@

-

DMA-based transmit

Parameters
+

DMA-based receive

Parameters

Result daisy::UartHandler::DmaTransmit Result daisy::UartHandler::DmaReceive ( uint8_t *  buff,
@@ -553,43 +561,65 @@

Returns
Whether the transmit was successful or not
+
Returns
Whether the receive was successful or not
-
-

◆ FlushFifo()

+ +

◆ DmaTransmit()

*buffinput buffer
sizebuffer size
- + - + + + + + + + -
Result daisy::UartHandler::FlushFifo Result daisy::UartHandler::DmaTransmit ()uint8_t * buff,
size_t size,
-
-

Flush all of the data from the fifo

Returns
OK or ERR
- -
-
- -

◆ FlushRx()

- -
-
- - - - + + + + + + + + + + + + + + + + + + + +
Result daisy::UartHandler::FlushRx () UartHandler::StartCallbackFunctionPtr start_callback,
UartHandler::EndCallbackFunctionPtr end_callback,
void * callback_context 
)
-

Will be deprecated soon! Wrapper for FlushFifo

+

DMA-based transmit

Parameters
+ + + + + + +
*buffinput buffer
sizebuffer size
start_callbackA callback to execute when the transfer starts, or NULL. The callback is called from an interrupt, so keep it fast.
end_callbackA callback to execute when the transfer finishes, or NULL. The callback is called from an interrupt, so keep it fast.
callback_contextA pointer that will be passed back to you in the callbacks.
+
+
+
+
Returns
Whether the transmit was successful or not
@@ -628,6 +658,24 @@

Initializes the UART Peripheral

+ + +
+

◆ IsListening()

+ +
+
+ + + + + + + +
bool daisy::UartHandler::IsListening () const
+
+

Returns whether listen the DmaListen mode is active or not

+
@@ -718,122 +766,6 @@

Will be deprecated soon! Wrapper for BlockingTransmit

- - -
-

◆ PopFifo()

- -
-
- - - - - - - -
uint8_t daisy::UartHandler::PopFifo ()
-
-

Get the top item off of the FIFO

Returns
Top item from the FIFO
- -
-
- -

◆ PopRx()

- -
-
- - - - - - - -
uint8_t daisy::UartHandler::PopRx ()
-
-

Will be deprecated soon! Wrapper PopFifo

- -
-
- -

◆ Readable()

- -
-
- - - - - - - -
size_t daisy::UartHandler::Readable ()
-
-

Will be deprecated soon! Wrapper for ReadableFifo

- -
-
- -

◆ ReadableFifo()

- -
-
- - - - - - - -
size_t daisy::UartHandler::ReadableFifo ()
-
-

How much data is in the FIFO

Returns
number of elements ready to pop from FIFO
- -
-
- -

◆ RxActive()

- -
-
- - - - - -
- - - - - - - -
bool daisy::UartHandler::RxActive ()
-
-inline
-
-

Will be deprecated soon!

Returns
true. New DMA will always restart itself.
- -
-
- -

◆ StartRx()

- -
-
- - - - - - - -
Result daisy::UartHandler::StartRx ()
-
-

Will be deprecated soon! Wrapper for DmaReceiveFifo

-

The documentation for this class was generated from the following file:

#define DSY_MIDI_H   -#define SYSEX_BUFFER_LEN   128 -  @@ -167,20 +169,6 @@

- - - -

◆ SYSEX_BUFFER_LEN

- -
-
-

Typedefs

- - - -
#define SYSEX_BUFFER_LEN   128
-
-
diff --git a/midi_8h.js b/midi_8h.js index 67f3cb324..f6907ef83 100644 --- a/midi_8h.js +++ b/midi_8h.js @@ -3,7 +3,6 @@ var midi_8h = [ "daisy::MidiUartTransport::Config", "structdaisy_1_1_midi_uart_transport_1_1_config.html", "structdaisy_1_1_midi_uart_transport_1_1_config" ], [ "daisy::MidiHandler< Transport >::Config", "structdaisy_1_1_midi_handler_1_1_config.html", "structdaisy_1_1_midi_handler_1_1_config" ], [ "DSY_MIDI_H", "midi_8h.html#a1e52176e4f92572132c9ea700e70ad9d", null ], - [ "SYSEX_BUFFER_LEN", "midi_8h.html#a02f1ba6b22046642cb6f52e3fab60241", null ], [ "MidiUartHandler", "midi_8h.html#gaaa674dd8cc356904785b384ed493b201", null ], [ "MidiUsbHandler", "midi_8h.html#gaae7397a71c41654e7d4236b47185ced1", null ] ]; \ No newline at end of file diff --git a/midi_8h_source.html b/midi_8h_source.html index 701a978a9..4ba0ab608 100644 --- a/midi_8h_source.html +++ b/midi_8h_source.html @@ -106,402 +106,245 @@
2#ifndef DSY_MIDI_H
3#define DSY_MIDI_H
4
-
5// TODO: make this adjustable
-
6#define SYSEX_BUFFER_LEN 128
-
7
-
8#include <stdint.h>
-
9#include <stdlib.h>
-
10#include "per/uart.h"
-
11#include "util/ringbuffer.h"
-
12#include "hid/MidiEvent.h"
-
13#include "hid/usb_midi.h"
+
5#include <stdint.h>
+
6#include <stdlib.h>
+
7#include <algorithm>
+
8#include "per/uart.h"
+
9#include "util/ringbuffer.h"
+
10#include "util/FIFO.h"
+
11#include "hid/midi_parser.h"
+
12#include "hid/usb_midi.h"
+
13#include "sys/dma.h"
14#include "sys/system.h"
15
16namespace daisy
17{
- -
23{
-
24 public:
- - -
27
-
28 struct Config
-
29 {
- - - + +
25{
+
26 public:
+
27 typedef void (*MidiRxParseCallback)(uint8_t* data,
+
28 size_t size,
+
29 void* context);
+
30
+ +
33
- -
35 {
- -
37 rx = {DSY_GPIOB, 7};
-
38 tx = {DSY_GPIOB, 6};
-
39 }
-
40 };
-
41
-
42 inline void Init(Config config)
-
43 {
-
44 UartHandler::Config uart_config;
-
45
-
46 //defaults
-
47 uart_config.baudrate = 31250;
- - - - -
52
-
53 //user settings
-
54 uart_config.periph = config.periph;
-
55 uart_config.pin_config.rx = config.rx;
-
56 uart_config.pin_config.tx = config.tx;
+
35 struct Config
+
36 {
+ + + +
40
+
48 uint8_t* rx_buffer;
+
49
+
57
-
58 uart_.Init(uart_config);
-
59 }
+ +
59 };
60
-
61 inline void StartRx() { uart_.StartRx(); }
-
62 inline size_t Readable() { return uart_.Readable(); }
-
63 inline uint8_t Rx() { return uart_.PopRx(); }
-
64 inline bool RxActive() { return uart_.RxActive(); }
-
65 inline void FlushRx() { uart_.FlushRx(); }
-
66 inline void Tx(uint8_t* buff, size_t size) { uart_.PollTx(buff, size); }
-
67
-
68 private:
-
69 UartHandler uart_;
-
70};
-
71
-
80template <typename Transport>
- -
82{
-
83 public:
- - +
62 inline void Init(Config config)
+
63 {
+
64 UartHandler::Config uart_config;
+
65
+
66 //defaults
+
67 uart_config.baudrate = 31250;
+ + + + +
72
+
73 //user settings
+
74 uart_config.periph = config.periph;
+
75 uart_config.pin_config.rx = config.rx;
+
76 uart_config.pin_config.tx = config.tx;
+
77
+
78 rx_buffer = config.rx_buffer;
+
79 rx_buffer_size = config.rx_buffer_size;
+
80
+
82 std::fill(rx_buffer, rx_buffer + rx_buffer_size, 0);
+
83
+
84 uart_.Init(uart_config);
+
85 }
86
-
87 struct Config
-
88 {
-
89 typename Transport::Config transport_config;
-
90 };
-
91
-
95 void Init(Config config)
-
96 {
-
97 config_ = config;
+
89 inline void StartRx(MidiRxParseCallback parse_callback, void* context)
+
90 {
+
91 parse_context_ = context;
+
92 parse_callback_ = parse_callback;
+
93 dsy_dma_clear_cache_for_buffer((uint8_t*)this,
+
94 sizeof(MidiUartTransport));
+
95 uart_.DmaListenStart(
+
96 rx_buffer, rx_buffer_size, MidiUartTransport::rxCallback, this);
+
97 }
98
-
99 transport_.Init(config_.transport_config);
-
100
-
101 event_q_.Init();
-
102 incoming_message_.type = MessageLast;
-
103 pstate_ = ParserEmpty;
-
104 }
-
105
-
107 void StartReceive() { transport_.StartRx(); }
-
108
-
110 void Listen()
-
111 {
-
112 uint32_t now;
-
113 now = System::GetNow();
-
114 while(transport_.Readable())
-
115 {
-
116 last_read_ = now;
-
117 Parse(transport_.Rx());
-
118 }
-
119
-
120 // In case of UART Error, (particularly
-
121 // overrun error), UART disables itself.
-
122 // Flush the buff, and restart.
-
123 if(!transport_.RxActive())
-
124 {
-
125 pstate_ = ParserEmpty;
-
126 transport_.FlushRx();
-
127 StartReceive();
-
128 }
-
129 }
-
130
-
134 bool HasEvents() const { return event_q_.readable(); }
-
135
-
136
-
140 MidiEvent PopEvent() { return event_q_.Read(); }
-
141
-
145 void SendMessage(uint8_t* bytes, size_t size)
-
146 {
-
147 transport_.Tx(bytes, size);
-
148 }
-
149
-
156 void Parse(uint8_t byte)
-
157 {
-
158 // reset parser when status byte is received
-
159 if((byte & kStatusByteMask) && pstate_ != ParserSysEx)
-
160 {
-
161 pstate_ = ParserEmpty;
-
162 }
-
163 switch(pstate_)
-
164 {
-
165 case ParserEmpty:
-
166 // check byte for valid Status Byte
-
167 if(byte & kStatusByteMask)
-
168 {
-
169 // Get MessageType, and Channel
-
170 incoming_message_.channel = byte & kChannelMask;
-
171 incoming_message_.type = static_cast<MidiMessageType>(
-
172 (byte & kMessageMask) >> 4);
-
173
-
174 // Validate, and move on.
-
175 if(incoming_message_.type < MessageLast)
-
176 {
-
177 pstate_ = ParserHasStatus;
-
178 // Mark this status byte as running_status
-
179 running_status_ = incoming_message_.type;
-
180
-
181 if(running_status_ == SystemCommon)
-
182 {
-
183 incoming_message_.channel = 0;
-
184 //system real time = 1111 1xxx
-
185 if(byte & 0x08)
-
186 {
-
187 incoming_message_.type = SystemRealTime;
-
188 running_status_ = SystemRealTime;
-
189 incoming_message_.srt_type
-
190 = static_cast<SystemRealTimeType>(
-
191 byte & kSystemRealTimeMask);
-
192
-
193 //short circuit to start
-
194 pstate_ = ParserEmpty;
-
195 event_q_.Write(incoming_message_);
-
196 }
-
197 //system common
-
198 else
-
199 {
-
200 incoming_message_.sc_type
-
201 = static_cast<SystemCommonType>(byte
-
202 & 0x07);
-
203 //sysex
-
204 if(incoming_message_.sc_type == SystemExclusive)
-
205 {
-
206 pstate_ = ParserSysEx;
-
207 incoming_message_.sysex_message_len = 0;
-
208 }
-
209 //short circuit
-
210 else if(incoming_message_.sc_type > SongSelect)
-
211 {
-
212 pstate_ = ParserEmpty;
-
213 event_q_.Write(incoming_message_);
-
214 }
-
215 }
-
216 }
-
217 }
-
218 // Else we'll keep waiting for a valid incoming status byte
-
219 }
-
220 else
-
221 {
-
222 // Handle as running status
-
223 incoming_message_.type = running_status_;
-
224 incoming_message_.data[0] = byte & kDataByteMask;
-
225 //check for single byte running status, really this only applies to channel pressure though
-
226 if(running_status_ == ChannelPressure
-
227 || running_status_ == ProgramChange
-
228 || incoming_message_.sc_type == MTCQuarterFrame
-
229 || incoming_message_.sc_type == SongSelect)
-
230 {
-
231 //Send the single byte update
-
232 pstate_ = ParserEmpty;
-
233 event_q_.Write(incoming_message_);
-
234 }
-
235 else
-
236 {
-
237 pstate_
-
238 = ParserHasData0; //we need to get the 2nd byte yet.
-
239 }
-
240 }
-
241 break;
-
242 case ParserHasStatus:
-
243 if((byte & kStatusByteMask) == 0)
-
244 {
-
245 incoming_message_.data[0] = byte & kDataByteMask;
-
246 if(running_status_ == ChannelPressure
-
247 || running_status_ == ProgramChange
-
248 || incoming_message_.sc_type == MTCQuarterFrame
-
249 || incoming_message_.sc_type == SongSelect)
-
250 {
-
251 //these are just one data byte, so we short circuit back to start
-
252 pstate_ = ParserEmpty;
-
253 event_q_.Write(incoming_message_);
-
254 }
-
255 else
-
256 {
-
257 pstate_ = ParserHasData0;
-
258 }
-
259
-
260 //ChannelModeMessages (reserved Control Changes)
-
261 if(running_status_ == ControlChange
-
262 && incoming_message_.data[0] > 119)
-
263 {
-
264 incoming_message_.type = ChannelMode;
-
265 running_status_ = ChannelMode;
-
266 incoming_message_.cm_type
-
267 = static_cast<ChannelModeType>(
-
268 incoming_message_.data[0] - 120);
-
269 }
-
270 }
-
271 else
-
272 {
-
273 // invalid message go back to start ;p
-
274 pstate_ = ParserEmpty;
-
275 }
-
276 break;
-
277 case ParserHasData0:
-
278 if((byte & kStatusByteMask) == 0)
-
279 {
-
280 incoming_message_.data[1] = byte & kDataByteMask;
-
281
-
282 //velocity 0 NoteOns are NoteOffs
-
283 if(running_status_ == NoteOn
-
284 && incoming_message_.data[1] == 0)
-
285 {
-
286 incoming_message_.type = NoteOff;
-
287 }
-
288
-
289 // At this point the message is valid, and we can add this MidiEvent to the queue
-
290 event_q_.Write(incoming_message_);
-
291 }
-
292 else
-
293 {
-
294 // invalid message go back to start ;p
-
295 pstate_ = ParserEmpty;
-
296 }
-
297 // Regardless, of whether the data was valid or not we go back to empty
-
298 // because either the message is queued for handling or its not.
-
299 pstate_ = ParserEmpty;
-
300 break;
-
301 case ParserSysEx:
-
302 // end of sysex
-
303 if(byte == 0xf7)
-
304 {
-
305 pstate_ = ParserEmpty;
-
306 event_q_.Write(incoming_message_);
-
307 }
-
308 else if(incoming_message_.sysex_message_len < SYSEX_BUFFER_LEN)
-
309 {
-
310 incoming_message_
-
311 .sysex_data[incoming_message_.sysex_message_len]
-
312 = byte;
-
313 incoming_message_.sysex_message_len++;
-
314 }
-
315 break;
-
316 default: break;
-
317 }
-
318 }
-
319
-
320 private:
-
321 enum ParserState
-
322 {
-
323 ParserEmpty,
-
324 ParserHasStatus,
-
325 ParserHasData0,
-
326 ParserSysEx,
-
327 };
-
328 UartHandler uart_;
-
329 ParserState pstate_;
-
330 MidiEvent incoming_message_;
-
331 RingBuffer<MidiEvent, 256> event_q_;
-
332 uint32_t last_read_; // time of last byte
-
333 MidiMessageType running_status_;
-
334 Config config_;
-
335 Transport transport_;
-
336
-
337 // Masks to check for message type, and byte content
-
338 const uint8_t kStatusByteMask = 0x80;
-
339 const uint8_t kMessageMask = 0x70;
-
340 const uint8_t kDataByteMask = 0x7F;
-
341 const uint8_t kSystemCommonMask = 0xF0;
-
342 const uint8_t kChannelMask = 0x0F;
-
343 const uint8_t kRealTimeMask = 0xF8;
-
344 const uint8_t kSystemRealTimeMask = 0x07;
-
345};
-
346
- - -
355} // namespace daisy
-
356#endif
- -
Simple MIDI Handler Parses bytes from an input into valid MidiEvents. The MidiEvents fill a FIFO ...
Definition midi.h:82
-
void StartReceive()
Definition midi.h:107
-
MidiEvent PopEvent()
Definition midi.h:140
-
void Listen()
Definition midi.h:110
-
void SendMessage(uint8_t *bytes, size_t size)
Definition midi.h:145
-
MidiHandler()
Definition midi.h:84
-
void Parse(uint8_t byte)
Definition midi.h:156
-
bool HasEvents() const
Definition midi.h:134
-
void Init(Config config)
Definition midi.h:95
-
~MidiHandler()
Definition midi.h:85
-
Transport layer for sending and receiving MIDI data over UART.
Definition midi.h:23
-
size_t Readable()
Definition midi.h:62
-
void Tx(uint8_t *buff, size_t size)
Definition midi.h:66
-
~MidiUartTransport()
Definition midi.h:26
-
void FlushRx()
Definition midi.h:65
-
uint8_t Rx()
Definition midi.h:63
-
void StartRx()
Definition midi.h:61
-
MidiUartTransport()
Definition midi.h:25
-
bool RxActive()
Definition midi.h:64
-
void Init(Config config)
Definition midi.h:42
-
static uint32_t GetNow()
-
Definition uart.h:26
- - - +
100 inline bool RxActive() { return uart_.IsListening(); }
+
101
+
103 inline void FlushRx() {}
+
104
+
106 inline void Tx(uint8_t* buff, size_t size) { uart_.PollTx(buff, size); }
+
107
+
108 private:
+
109 UartHandler uart_;
+
110 uint8_t* rx_buffer;
+
111 size_t rx_buffer_size;
+
112 void* parse_context_;
+
113 MidiRxParseCallback parse_callback_;
+
114
+
124 static void rxCallback(uint8_t* data,
+
125 size_t size,
+
126 void* context,
+ +
128 {
+
130 MidiUartTransport* transport
+
131 = reinterpret_cast<MidiUartTransport*>(context);
+
132 if(res == UartHandler::Result::OK)
+
133 {
+
134 if(transport->parse_callback_)
+
135 {
+
136 transport->parse_callback_(
+
137 data, size, transport->parse_context_);
+
138 }
+
139 }
+
140 }
+
141};
+
142
+
151template <typename Transport>
+ +
153{
+
154 public:
+ + +
157
+
158 struct Config
+
159 {
+
160 typename Transport::Config transport_config;
+
161 };
+
162
+
166 void Init(Config config)
+
167 {
+
168 config_ = config;
+
169 transport_.Init(config_.transport_config);
+
170 parser_.Init();
+
171 }
+
172
+ +
176 {
+
177 transport_.StartRx(MidiHandler::ParseCallback, this);
+
178 }
+
179
+
181 void Listen()
+
182 {
+
183 // In case of UART Error, (particularly
+
184 // overrun error), UART disables itself.
+
185 // Flush the buff, and restart.
+
186 if(!transport_.RxActive())
+
187 {
+
188 parser_.Reset();
+
189 transport_.FlushRx();
+
190 StartReceive();
+
191 }
+
192 }
+
193
+
197 bool HasEvents() const { return event_q_.GetNumElements() > 0; }
+
198
+
199
+
203 MidiEvent PopEvent() { return event_q_.PopFront(); }
+
204
+
208 void SendMessage(uint8_t* bytes, size_t size)
+
209 {
+
210 transport_.Tx(bytes, size);
+
211 }
+
212
+
219 void Parse(uint8_t byte)
+
220 {
+
221 MidiEvent event;
+
222 if(parser_.Parse(byte, &event))
+
223 {
+
224 event_q_.PushBack(event);
+
225 }
+
226 }
+
227
+
228 private:
+
229 Config config_;
+
230 Transport transport_;
+
231 MidiParser parser_;
+
232 FIFO<MidiEvent, 256> event_q_;
+
233
+
234 static void ParseCallback(uint8_t* data, size_t size, void* context)
+
235 {
+
236 MidiHandler* handler = reinterpret_cast<MidiHandler*>(context);
+
237 for(size_t i = 0; i < size; i++)
+
238 {
+
239 handler->Parse(data[i]);
+
240 }
+
241 }
+
242};
+
243
+ + +
252} // namespace daisy
+
253#endif
+ +
Definition FIFO.h:299
+
Simple MIDI Handler Parses bytes from an input into valid MidiEvents. The MidiEvents fill a FIFO qu...
Definition midi.h:153
+
void StartReceive()
Definition midi.h:175
+
MidiEvent PopEvent()
Definition midi.h:203
+
void Listen()
Definition midi.h:181
+
void SendMessage(uint8_t *bytes, size_t size)
Definition midi.h:208
+
MidiHandler()
Definition midi.h:155
+
void Parse(uint8_t byte)
Definition midi.h:219
+
bool HasEvents() const
Definition midi.h:197
+
void Init(Config config)
Definition midi.h:166
+
~MidiHandler()
Definition midi.h:156
+
Utility class for parsing raw byte streams into MIDI messages.
Definition midi_parser.h:16
+
void Reset()
Reset parser to default state.
+
bool Parse(uint8_t byte, MidiEvent *event_out)
Parse one MIDI byte. If the byte completes a parsed event, its value will be assigned to the derefere...
+
void Init()
Definition midi_parser.h:21
+
Transport layer for sending and receiving MIDI data over UART.
Definition midi.h:25
+
void StartRx(MidiRxParseCallback parse_callback, void *context)
Start the UART peripheral in listening mode. This will fill an internal data structure in the backgro...
Definition midi.h:89
+
void Tx(uint8_t *buff, size_t size)
sends the buffer of bytes out of the UART peripheral
Definition midi.h:106
+
~MidiUartTransport()
Definition midi.h:32
+
void FlushRx()
This is a no-op for UART transport - Rx is via DMA callback with circular buffer.
Definition midi.h:103
+
void(* MidiRxParseCallback)(uint8_t *data, size_t size, void *context)
Definition midi.h:27
+
MidiUartTransport()
Definition midi.h:31
+
bool RxActive()
returns whether the UART peripheral is actively listening in the background or not
Definition midi.h:100
+
void Init(Config config)
Initialization of UART using config struct.
Definition midi.h:62
+
Definition uart.h:24
+
bool IsListening() const
+
Result DmaListenStart(uint8_t *buff, size_t size, CircularRxCallbackFunctionPtr cb, void *callback_context)
Result PollTx(uint8_t *buff, size_t size)
Result Init(const Config &config)
- -
bool RxActive()
Definition uart.h:209
-
SystemRealTimeType
Definition MidiEvent.h:46
-
SystemCommonType
Definition MidiEvent.h:33
-
MidiMessageType
Definition MidiEvent.h:18
-
ChannelModeType
Definition MidiEvent.h:59
-
@ MTCQuarterFrame
Definition MidiEvent.h:35
-
@ SongSelect
Definition MidiEvent.h:37
-
@ SystemExclusive
Definition MidiEvent.h:34
-
@ ControlChange
Definition MidiEvent.h:22
-
@ NoteOff
Definition MidiEvent.h:19
-
@ SystemCommon
Definition MidiEvent.h:26
-
@ ProgramChange
Definition MidiEvent.h:23
-
@ MessageLast
Definition MidiEvent.h:29
-
@ SystemRealTime
Definition MidiEvent.h:27
-
@ ChannelPressure
Definition MidiEvent.h:24
-
@ NoteOn
Definition MidiEvent.h:20
-
@ ChannelMode
Definition MidiEvent.h:28
-
@ DSY_GPIOB
Definition daisy_core.h:183
-
#define SYSEX_BUFFER_LEN
Definition midi.h:6
+
Result
Definition uart.h:100
+ + +
void dsy_dma_clear_cache_for_buffer(uint8_t *buffer, size_t size)
+
Hardware defines and helpers for daisy field platform.
Definition index.h:2
-
Definition MidiEvent.h:237
-
uint8_t sysex_data[SYSEX_BUFFER_LEN]
Definition MidiEvent.h:242
-
int channel
Definition MidiEvent.h:240
-
uint8_t sysex_message_len
Definition MidiEvent.h:243
-
SystemRealTimeType srt_type
Definition MidiEvent.h:245
-
ChannelModeType cm_type
Definition MidiEvent.h:246
-
SystemCommonType sc_type
Definition MidiEvent.h:244
-
uint8_t data[2]
Definition MidiEvent.h:241
-
MidiMessageType type
Definition MidiEvent.h:239
-
Definition midi.h:88
-
Transport::Config transport_config
Definition midi.h:89
- -
dsy_gpio_pin tx
Definition midi.h:32
-
UartHandler::Config::Peripheral periph
Definition midi.h:30
-
dsy_gpio_pin rx
Definition midi.h:31
-
Config()
Definition midi.h:34
-
Definition uart.h:29
+
Definition MidiEvent.h:240
+
Definition midi.h:159
+
Transport::Config transport_config
Definition midi.h:160
+
Configuration structure for UART MIDI.
Definition midi.h:36
+
dsy_gpio_pin tx
Definition midi.h:39
+
UartHandler::Config::Peripheral periph
Definition midi.h:37
+
dsy_gpio_pin rx
Definition midi.h:38
+
size_t rx_buffer_size
Definition midi.h:56
+ +
uint8_t * rx_buffer
Definition midi.h:48
+
Definition uart.h:27
-
Mode mode
Definition uart.h:91
-
StopBits stopbits
Definition uart.h:89
-
WordLength wordlength
Definition uart.h:92
-
Peripheral periph
Definition uart.h:88
+
Mode mode
Definition uart.h:88
+
StopBits stopbits
Definition uart.h:86
+
WordLength wordlength
Definition uart.h:89
+
Peripheral periph
Definition uart.h:85
struct daisy::UartHandler::Config::@18 pin_config
-
uint32_t baudrate
Definition uart.h:93
+
uint32_t baudrate
Definition uart.h:90
-
Parity parity
Definition uart.h:90
-
Peripheral
Definition uart.h:31
- -
dsy_gpio_pin rx
Definition uart.h:75
+
Parity parity
Definition uart.h:87
+
Peripheral
Definition uart.h:29
+
dsy_gpio_pin rx
Definition uart.h:73
-
dsy_gpio_pin tx
Definition uart.h:74
+
dsy_gpio_pin tx
Definition uart.h:72
Definition daisy_core.h:205
diff --git a/midi__parser_8h.html b/midi__parser_8h.html new file mode 100644 index 000000000..dbcd74287 --- /dev/null +++ b/midi__parser_8h.html @@ -0,0 +1,171 @@ + + + + + + + + +libDaisy: src/hid/midi_parser.h File Reference + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
libDaisy +
+
Hardware Library for Daisy
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
midi_parser.h File Reference
+
+
+
#include <stdint.h>
+#include <stdlib.h>
+#include "hid/MidiEvent.h"
+
+

Go to the source code of this file.

+ + + + + +

+Classes

class  daisy::MidiParser
 Utility class for parsing raw byte streams into MIDI messages. More...
 
+ + + + +

+Namespaces

namespace  daisy
 Hardware defines and helpers for daisy field platform.
 
+ + + +

+Macros

#define DSY_MIDI_PARSER_H
 
+

Macro Definition Documentation

+ +

◆ DSY_MIDI_PARSER_H

+ +
+
+ + + + +
#define DSY_MIDI_PARSER_H
+
+ +
+
+
+
+ + + + + + \ No newline at end of file diff --git a/midi__parser_8h.js b/midi__parser_8h.js new file mode 100644 index 000000000..3536d3e87 --- /dev/null +++ b/midi__parser_8h.js @@ -0,0 +1,4 @@ +var midi__parser_8h = +[ + [ "DSY_MIDI_PARSER_H", "midi__parser_8h.html#a162408cf7d1cf060cf5f7c1d5f31f7a2", null ] +]; \ No newline at end of file diff --git a/midi__parser_8h_source.html b/midi__parser_8h_source.html new file mode 100644 index 000000000..c700b4e6f --- /dev/null +++ b/midi__parser_8h_source.html @@ -0,0 +1,185 @@ + + + + + + + + +libDaisy: src/hid/midi_parser.h Source File + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
libDaisy +
+
Hardware Library for Daisy
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
midi_parser.h
+
+
+Go to the documentation of this file.
1#pragma once
+
2#ifndef DSY_MIDI_PARSER_H
+
3#define DSY_MIDI_PARSER_H
+
4
+
5#include <stdint.h>
+
6#include <stdlib.h>
+
7#include "hid/MidiEvent.h"
+
8
+
9namespace daisy
+
10{
+ +
16{
+
17 public:
+ + +
20
+
21 inline void Init() { Reset(); }
+
22
+
34 bool Parse(uint8_t byte, MidiEvent *event_out);
+
35
+
39 void Reset();
+
40
+
41 private:
+
42 enum ParserState
+
43 {
+
44 ParserEmpty,
+
45 ParserHasStatus,
+
46 ParserHasData0,
+
47 ParserSysEx,
+
48 };
+
49
+
50 ParserState pstate_;
+
51 MidiEvent incoming_message_;
+
52 MidiMessageType running_status_;
+
53
+
54 // Masks to check for message type, and byte content
+
55 const uint8_t kStatusByteMask = 0x80;
+
56 const uint8_t kMessageMask = 0x70;
+
57 const uint8_t kDataByteMask = 0x7F;
+
58 const uint8_t kChannelMask = 0x0F;
+
59 const uint8_t kSystemRealTimeMask = 0x07;
+
60};
+
61
+
62} // namespace daisy
+
63
+
64#endif
+ +
Utility class for parsing raw byte streams into MIDI messages.
Definition midi_parser.h:16
+
MidiParser()
Definition midi_parser.h:18
+
~MidiParser()
Definition midi_parser.h:19
+
void Reset()
Reset parser to default state.
+
bool Parse(uint8_t byte, MidiEvent *event_out)
Parse one MIDI byte. If the byte completes a parsed event, its value will be assigned to the derefere...
+
void Init()
Definition midi_parser.h:21
+
MidiMessageType
Definition MidiEvent.h:21
+
Hardware defines and helpers for daisy field platform.
Definition index.h:2
+
Definition MidiEvent.h:240
+
+
+ + + + + + \ No newline at end of file diff --git a/namespacedaisy.html b/namespacedaisy.html index e9bb7b06f..4f396428a 100644 --- a/namespacedaisy.html +++ b/namespacedaisy.html @@ -289,8 +289,11 @@   class  MidiHandler  Simple MIDI Handler
- Parses bytes from an input into valid MidiEvents.
- The MidiEvents fill a FIFO queue that the user can pop messages from. More...
+Parses bytes from an input into valid MidiEvents.
+The MidiEvents fill a FIFO queue that the user can pop messages from. More...
+  +class  MidiParser + Utility class for parsing raw byte streams into MIDI messages. More...
  class  MidiUartTransport  Transport layer for sending and receiving MIDI data over UART. More...
diff --git a/navtreedata.js b/navtreedata.js index 9e99d2394..ed5c0989e 100644 --- a/navtreedata.js +++ b/navtreedata.js @@ -155,21 +155,21 @@ var NAVTREE = var NAVTREEINDEX = [ "_abstract_menu_8h.html", -"classdaisy_1_1_apds9960.html#a3e2dfaffe42d0bc1482da0d0e0fbad92", -"classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3abd85d3626ac80d244f744f96df92b58a", -"classdaisy_1_1_dps310.html#a711b21ddb3d3c70d4849b1b784930d97", -"classdaisy_1_1_icm20948.html#a8950d4b910aada48b53e7d160448d331a4775f76bfcd5a898915cbdf30a8f2bf1", -"classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a98d7dbbd774fe8b1d46ed4d96dbd7754", -"classdaisy_1_1_persistent_storage.html#ad48f55bcb2a8b6959c0f4cf7822b0efaa2e40ad879e955201df4dedbf8d479a12", -"classdaisy_1_1_switch.html#aef37136dd1b4cd077ef82a0f62bcfa3da6a67d181b4de52438ae5109bd9cfec63", +"classdaisy_1_1_apds9960.html#a3cf8c7053b967952b70d4da945ea3fc9", +"classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3a97da9bc7e7650022b0109eba62759e5a", +"classdaisy_1_1_dps310.html#a5efac61910adc2f4b8f3f7a93ff3a23e", +"classdaisy_1_1_icm20948.html#a8950d4b910aada48b53e7d160448d331", +"classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a8963e3a75478e33f625eba239dc67629", +"classdaisy_1_1_persistent_storage.html#a250a8352eb62ed2db360d89c06d4aa17", +"classdaisy_1_1_switch.html#aa6c26cb923638a248a1d8d3cb1755e51aec89c3f7c267f0eaacd65441ef854bca", "classdaisy_1_1_wav_writer.html#a9c03052fee69006c6f021391ecc93f20", "ffconf_8h.html#aaab0313f867bb008b64236239f5c2660", "group__flash.html#ga04fd60926b738c3e978ee46725b3b341", "group__ui.html#ggac734c565c1dc55cbf6b74ea942f40c1ca7c4f29407893c334a6cb7a87bf045c0d", "md_doc_2md_2__a2___getting-_started-_serial-_printing.html#autotoc_md15", -"structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a33d3e4f8290feaeafaf6129817623b88", -"structdaisy_1_1_note_off_event.html", -"structdaisy_1_1_uart_handler_1_1_config.html#a69458bc285ceaf3e20fba9299e2ea5b8a57a1355d5527355458c7cc08ba70bf94" +"structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html", +"structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a60556e52b033f81831b4b8ec43b7d0d9", +"structdaisy_1_1_uart_handler_1_1_config.html#a490845e58271053432b93ec8cc56798e" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/navtreeindex0.js b/navtreeindex0.js index a06d914a5..36c9d92de 100644 --- a/navtreeindex0.js +++ b/navtreeindex0.js @@ -15,8 +15,9 @@ var NAVTREEINDEX0 = "_full_screen_item_menu_8h_source.html":[17,0,1,4,2], "_mapped_value_8h.html":[17,0,1,5,6], "_mapped_value_8h_source.html":[17,0,1,5,6], -"_midi_event_8h.html":[17,0,1,1,9], -"_midi_event_8h_source.html":[17,0,1,1,9], +"_midi_event_8h.html":[17,0,1,1,10], +"_midi_event_8h.html#a02f1ba6b22046642cb6f52e3fab60241":[17,0,1,1,10,0], +"_midi_event_8h_source.html":[17,0,1,1,10], "_persistent_storage_8h.html":[17,0,1,5,8], "_persistent_storage_8h_source.html":[17,0,1,5,8], "_pot_monitor_8h.html":[17,0,1,4,3], @@ -121,44 +122,44 @@ var NAVTREEINDEX0 = "class_shift_register595.html#acc9e7d74069edd4b2711a9de01e9617c":[4,0,4,0,1,3], "class_shift_register595.html#af8bd4833320c0674521dd23d5be874cb":[4,0,4,0,1,2], "class_usb_handle.html":[16,0,7], -"class_usb_handle.html#a0b8bd2b2482a5cf7479f1472094d2099":[16,0,7,6], "class_usb_handle.html#a0b8bd2b2482a5cf7479f1472094d2099":[16,0,7,8], -"class_usb_handle.html#a0e30c290afb4d303ecf3b0c83d71f24d":[16,0,7,12], +"class_usb_handle.html#a0b8bd2b2482a5cf7479f1472094d2099":[16,0,7,6], "class_usb_handle.html#a0e30c290afb4d303ecf3b0c83d71f24d":[16,0,7,13], +"class_usb_handle.html#a0e30c290afb4d303ecf3b0c83d71f24d":[16,0,7,12], "class_usb_handle.html#a33ca9123252e485a3d2045590e5e6217":[16,0,7,0], "class_usb_handle.html#a33ca9123252e485a3d2045590e5e6217":[16,0,7,1], "class_usb_handle.html#a4658cfe98d883c621e2c6353de515ad2":[16,0,7,17], "class_usb_handle.html#a4658cfe98d883c621e2c6353de515ad2":[16,0,7,16], -"class_usb_handle.html#a52c22cce6616ab3948d7933bfc0e7d0b":[16,0,7,14], "class_usb_handle.html#a52c22cce6616ab3948d7933bfc0e7d0b":[16,0,7,15], -"class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6":[16,0,7,2], +"class_usb_handle.html#a52c22cce6616ab3948d7933bfc0e7d0b":[16,0,7,14], "class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6":[16,0,7,3], -"class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6acd22bad976363fdd1bfbf6759fede482":[16,0,7,3,3], +"class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6":[16,0,7,2], +"class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6acd22bad976363fdd1bfbf6759fede482":[16,0,7,2,3], "class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6acd22bad976363fdd1bfbf6759fede482":[16,0,7,3,1], +"class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6acd22bad976363fdd1bfbf6759fede482":[16,0,7,3,3], "class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6acd22bad976363fdd1bfbf6759fede482":[16,0,7,2,1], -"class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6acd22bad976363fdd1bfbf6759fede482":[16,0,7,2,3], -"class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6ae0aa021e21dddbd6d8cecec71e9cf564":[16,0,7,2,2], "class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6ae0aa021e21dddbd6d8cecec71e9cf564":[16,0,7,2,0], -"class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6ae0aa021e21dddbd6d8cecec71e9cf564":[16,0,7,3,0], "class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6ae0aa021e21dddbd6d8cecec71e9cf564":[16,0,7,3,2], +"class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6ae0aa021e21dddbd6d8cecec71e9cf564":[16,0,7,2,2], +"class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6ae0aa021e21dddbd6d8cecec71e9cf564":[16,0,7,3,0], "class_usb_handle.html#a6ad15406df47137dddf3edcb6c10c9c1":[16,0,7,9], "class_usb_handle.html#a6ad15406df47137dddf3edcb6c10c9c1":[16,0,7,7], -"class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4":[16,0,7,4], "class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4":[16,0,7,5], -"class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4a26ab786f68f31edaf520641878d210b4":[16,0,7,4,1], +"class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4":[16,0,7,4], "class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4a26ab786f68f31edaf520641878d210b4":[16,0,7,4,4], +"class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4a26ab786f68f31edaf520641878d210b4":[16,0,7,4,1], "class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4a26ab786f68f31edaf520641878d210b4":[16,0,7,5,1], "class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4a26ab786f68f31edaf520641878d210b4":[16,0,7,5,4], -"class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4a7926eaf0841374d9b4afa7965a75127b":[16,0,7,5,2], "class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4a7926eaf0841374d9b4afa7965a75127b":[16,0,7,4,5], -"class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4a7926eaf0841374d9b4afa7965a75127b":[16,0,7,5,5], "class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4a7926eaf0841374d9b4afa7965a75127b":[16,0,7,4,2], +"class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4a7926eaf0841374d9b4afa7965a75127b":[16,0,7,5,5], +"class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4a7926eaf0841374d9b4afa7965a75127b":[16,0,7,5,2], "class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4afa4206af38c6c3fcb6a7c33d7cf6b665":[16,0,7,4,3], -"class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4afa4206af38c6c3fcb6a7c33d7cf6b665":[16,0,7,5,3], "class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4afa4206af38c6c3fcb6a7c33d7cf6b665":[16,0,7,5,0], "class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4afa4206af38c6c3fcb6a7c33d7cf6b665":[16,0,7,4,0], -"class_usb_handle.html#ac167e061b8619e82666f67e13020ba6e":[16,0,7,19], +"class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4afa4206af38c6c3fcb6a7c33d7cf6b665":[16,0,7,5,3], "class_usb_handle.html#ac167e061b8619e82666f67e13020ba6e":[16,0,7,18], +"class_usb_handle.html#ac167e061b8619e82666f67e13020ba6e":[16,0,7,19], "class_usb_handle.html#adb9593d7dd0fa2d459e19fc7801efa15":[16,0,7,10], "class_usb_handle.html#adb9593d7dd0fa2d459e19fc7801efa15":[16,0,7,11], "classdaisy_1_1_abstract_menu.html":[4,0,5,0], @@ -248,6 +249,5 @@ var NAVTREEINDEX0 = "classdaisy_1_1_apds9960.html#a2223fb264bb7284f6a294a311f0fa490":[4,1,1,24], "classdaisy_1_1_apds9960.html#a25b3ecd642bb7918fd1af80c4269851b":[4,1,1,27], "classdaisy_1_1_apds9960.html#a30065fbd4498c53073e95ea6e1142c22":[4,1,1,26], -"classdaisy_1_1_apds9960.html#a3bb1a90fd6838df8349b983bf090e9dd":[4,1,1,29], -"classdaisy_1_1_apds9960.html#a3cf8c7053b967952b70d4da945ea3fc9":[4,1,1,38] +"classdaisy_1_1_apds9960.html#a3bb1a90fd6838df8349b983bf090e9dd":[4,1,1,29] }; diff --git a/navtreeindex1.js b/navtreeindex1.js index ae5f2ec73..d1e80b9df 100644 --- a/navtreeindex1.js +++ b/navtreeindex1.js @@ -1,5 +1,6 @@ var NAVTREEINDEX1 = { +"classdaisy_1_1_apds9960.html#a3cf8c7053b967952b70d4da945ea3fc9":[4,1,1,38], "classdaisy_1_1_apds9960.html#a3e2dfaffe42d0bc1482da0d0e0fbad92":[4,1,1,35], "classdaisy_1_1_apds9960.html#a3f4e889772c6170099623fc62b04dce6":[4,1,1,21], "classdaisy_1_1_apds9960.html#a52a083d0ee8ead33d27047f25a9bb770":[4,1,1,30], @@ -248,6 +249,5 @@ var NAVTREEINDEX1 = "classdaisy_1_1_daisy_patch.html#aef89b7d3492d87652af2207f315e6c6d":[4,0,0,2,17], "classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3":[4,0,0,2,0], "classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3a4ea357339c00d73927aaa0efe10b8a97":[4,0,0,2,0,2], -"classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3a877a1afe40324da5847f486c32a1be93":[4,0,0,2,0,1], -"classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3a97da9bc7e7650022b0109eba62759e5a":[4,0,0,2,0,3] +"classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3a877a1afe40324da5847f486c32a1be93":[4,0,0,2,0,1] }; diff --git a/navtreeindex10.js b/navtreeindex10.js index 704ed0411..ebde7130a 100644 --- a/navtreeindex10.js +++ b/navtreeindex10.js @@ -11,8 +11,8 @@ var NAVTREEINDEX10 = "group__flash.html#ga12fe83d74a765a1b4ae033e22a23dafe":[4,0,4,1,156], "group__flash.html#ga12fe83d74a765a1b4ae033e22a23dafe":[4,0,4,1,155], "group__flash.html#ga13516c913c7b4ffa33b2d10eb3274ba8":[4,0,4,1,160], -"group__flash.html#ga15383120ee1aebbe28abbf04db5faf41":[4,0,4,1,114], "group__flash.html#ga15383120ee1aebbe28abbf04db5faf41":[4,0,4,1,115], +"group__flash.html#ga15383120ee1aebbe28abbf04db5faf41":[4,0,4,1,114], "group__flash.html#ga1633c595f8ab8e4dbd35f2704a911a31":[4,0,4,1,87], "group__flash.html#ga18877986bcd4d3480dd59a072dc0ef2c":[4,0,4,1,58], "group__flash.html#ga18d1eb584a16a8dbf577822d18f08a7c":[4,0,4,1,103], @@ -21,23 +21,23 @@ var NAVTREEINDEX10 = "group__flash.html#ga1c49d911b3c48f69ec597f2ec8b3d3b9":[4,0,4,1,62], "group__flash.html#ga1c9d4f2029d4a946161c6a8ac88bf814":[4,0,4,1,56], "group__flash.html#ga2097a0f1150ea4ee1954a1f07b1e781c":[4,0,4,1,64], -"group__flash.html#ga21623e2a5501c821da54dd76ffc1d077":[4,0,4,1,125], "group__flash.html#ga21623e2a5501c821da54dd76ffc1d077":[4,0,4,1,126], -"group__flash.html#ga216fff040d8bab7b5df5591ebfc2c5d6":[4,0,4,1,138], +"group__flash.html#ga21623e2a5501c821da54dd76ffc1d077":[4,0,4,1,125], "group__flash.html#ga216fff040d8bab7b5df5591ebfc2c5d6":[4,0,4,1,137], +"group__flash.html#ga216fff040d8bab7b5df5591ebfc2c5d6":[4,0,4,1,138], "group__flash.html#ga222437d6975ac6ea75f60867cff60554":[4,0,4,1,136], -"group__flash.html#ga2311f7c228e930564f83c6d08e6fbd17":[4,0,4,1,16], "group__flash.html#ga2311f7c228e930564f83c6d08e6fbd17":[4,0,4,1,15], -"group__flash.html#ga284a289754bb038d437af7c7ef8a6153":[4,0,4,1,162], +"group__flash.html#ga2311f7c228e930564f83c6d08e6fbd17":[4,0,4,1,16], "group__flash.html#ga284a289754bb038d437af7c7ef8a6153":[4,0,4,1,161], +"group__flash.html#ga284a289754bb038d437af7c7ef8a6153":[4,0,4,1,162], "group__flash.html#ga2a3c04a993ff5bca6075734959f2dac9":[4,0,4,1,86], "group__flash.html#ga2b48fc9b6548c3c8c2a0ef3524ba73b3":[4,0,4,1,163], "group__flash.html#ga330f99f433553eb8a0da8af9abf7d4ea":[4,0,4,1,76], "group__flash.html#ga34ed3e12e6dd3eaa8f5146b8159e7a0b":[4,0,4,1,63], "group__flash.html#ga3526ea57cac3c88dcc5a4d41cd700e0b":[4,0,4,1,98], "group__flash.html#ga3669a15eb6127b163120997053ac2946":[4,0,4,1,101], -"group__flash.html#ga3b7e0d2d5d8c080c64110cd29f6ca4ad":[4,0,4,1,18], "group__flash.html#ga3b7e0d2d5d8c080c64110cd29f6ca4ad":[4,0,4,1,17], +"group__flash.html#ga3b7e0d2d5d8c080c64110cd29f6ca4ad":[4,0,4,1,18], "group__flash.html#ga3d390e71fdce7913eebf99002b1945b8":[4,0,4,1,127], "group__flash.html#ga4046a25f9eaf371e491c288fa2e6d897":[4,0,4,1,41], "group__flash.html#ga4086ceecce00b9633422e6a5f4aae4be":[4,0,4,1,42], @@ -47,8 +47,8 @@ var NAVTREEINDEX10 = "group__flash.html#ga450502c8fe6f02e6bb5756714a39220b":[4,0,4,1,121], "group__flash.html#ga4897782a7735445bdab14d0948809a0b":[4,0,4,1,19], "group__flash.html#ga4897782a7735445bdab14d0948809a0b":[4,0,4,1,20], -"group__flash.html#ga49e65f982b506a78ed7d93dceb1b9650":[4,0,4,1,149], "group__flash.html#ga49e65f982b506a78ed7d93dceb1b9650":[4,0,4,1,150], +"group__flash.html#ga49e65f982b506a78ed7d93dceb1b9650":[4,0,4,1,149], "group__flash.html#ga49fea1dc4bd9a0427af026deabe392dd":[4,0,4,1,80], "group__flash.html#ga4a4fa885d9fc54a5200679b5cc473d51":[4,0,4,1,21], "group__flash.html#ga4a4fa885d9fc54a5200679b5cc473d51":[4,0,4,1,22], @@ -61,46 +61,46 @@ var NAVTREEINDEX10 = "group__flash.html#ga5636bed05f7ecd27f6a4eeeb7c6d3ed3":[4,0,4,1,113], "group__flash.html#ga5636bed05f7ecd27f6a4eeeb7c6d3ed3":[4,0,4,1,112], "group__flash.html#ga63f50ca9489e4a5caef37117ae99635b":[4,0,4,1,46], +"group__flash.html#ga69adbf63db6a1f1a286e4f77b95f7c25":[4,0,4,1,109], "group__flash.html#ga69adbf63db6a1f1a286e4f77b95f7c25":[4,0,4,1,111], "group__flash.html#ga69adbf63db6a1f1a286e4f77b95f7c25":[4,0,4,1,110], -"group__flash.html#ga69adbf63db6a1f1a286e4f77b95f7c25":[4,0,4,1,109], "group__flash.html#ga6c6c5f62171e9f51b99caf27259fcaa8":[4,0,4,1,78], "group__flash.html#ga6cc6c40a977f4410fcf53b95510730c8":[4,0,4,1,99], "group__flash.html#ga6e61280857e9c2209de5be48c3d39ec8":[4,0,4,1,67], "group__flash.html#ga6f01f2023eb68191377b6730387742e9":[4,0,4,1,50], -"group__flash.html#ga73c9113cb75af5967e7293a9b796fc32":[4,0,4,1,11], "group__flash.html#ga73c9113cb75af5967e7293a9b796fc32":[4,0,4,1,12], +"group__flash.html#ga73c9113cb75af5967e7293a9b796fc32":[4,0,4,1,11], "group__flash.html#ga73ef317e70d221347230018152749727":[4,0,4,1,102], "group__flash.html#ga7659fa58a66f0aa59abea4df13406b38":[4,0,4,1,88], "group__flash.html#ga76788543a6f62f40f2fa8ee9873aec94":[4,0,4,1,116], -"group__flash.html#ga778f641f7a12aabbe1ffd0c948f8e1f9":[4,0,4,1,158], "group__flash.html#ga778f641f7a12aabbe1ffd0c948f8e1f9":[4,0,4,1,157], +"group__flash.html#ga778f641f7a12aabbe1ffd0c948f8e1f9":[4,0,4,1,158], "group__flash.html#ga77cff06e2677577d08cdf39158d295b6":[4,0,4,1,54], "group__flash.html#ga78e830179f6aee3be8ccc8bd5d2aff67":[4,0,4,1,34], "group__flash.html#ga78e830179f6aee3be8ccc8bd5d2aff67":[4,0,4,1,33], "group__flash.html#ga7965160c5b31c4c64ade56532f82f983":[4,0,4,1,79], -"group__flash.html#ga7b3458f6b1276a94e7a51f0e32ff2ee0":[4,0,4,1,120], "group__flash.html#ga7b3458f6b1276a94e7a51f0e32ff2ee0":[4,0,4,1,119], -"group__flash.html#ga7d41c156bf7cc13fbefd7ab284cc37e6":[4,0,4,1,7], +"group__flash.html#ga7b3458f6b1276a94e7a51f0e32ff2ee0":[4,0,4,1,120], "group__flash.html#ga7d41c156bf7cc13fbefd7ab284cc37e6":[4,0,4,1,8], +"group__flash.html#ga7d41c156bf7cc13fbefd7ab284cc37e6":[4,0,4,1,7], "group__flash.html#ga7e086caffc322edd284f901286bbc47d":[4,0,4,1,89], "group__flash.html#ga7f93a22b18a56f3850a795b30bc80dd1":[4,0,4,1,65], -"group__flash.html#ga84be0facd4f8826caa06489155815937":[4,0,4,1,165], "group__flash.html#ga84be0facd4f8826caa06489155815937":[4,0,4,1,164], +"group__flash.html#ga84be0facd4f8826caa06489155815937":[4,0,4,1,165], "group__flash.html#ga8623d9a06ad6dbcf3aa30c92d35b5cce":[4,0,4,1,107], "group__flash.html#ga8623d9a06ad6dbcf3aa30c92d35b5cce":[4,0,4,1,108], "group__flash.html#ga8663d59f179bd596f3f939e85c3c84c6":[4,0,4,1,74], "group__flash.html#ga8ab2d4b76e0eb78d1ea79297ed876003":[4,0,4,1,85], -"group__flash.html#ga8ba5c5c22f19ff7047d85ef8c2a954b3":[4,0,4,1,167], "group__flash.html#ga8ba5c5c22f19ff7047d85ef8c2a954b3":[4,0,4,1,166], +"group__flash.html#ga8ba5c5c22f19ff7047d85ef8c2a954b3":[4,0,4,1,167], "group__flash.html#ga9189d6b7bc63bb8b2a89e1021fd9f8a5":[4,0,4,1,71], "group__flash.html#ga970696b0d306f51162bd75ddcacafa8d":[4,0,4,1,106], "group__flash.html#ga970696b0d306f51162bd75ddcacafa8d":[4,0,4,1,105], "group__flash.html#ga9b58e3d8eaefa240d9ccbac870fc1c2b":[4,0,4,1,3], "group__flash.html#ga9b58e3d8eaefa240d9ccbac870fc1c2b":[4,0,4,1,2], "group__flash.html#ga9ea8e7a9c90fc02a950203a99f9b241f":[4,0,4,1,95], -"group__flash.html#ga9f85bde4369ff218cf1ce490262cd150":[4,0,4,1,151], "group__flash.html#ga9f85bde4369ff218cf1ce490262cd150":[4,0,4,1,152], +"group__flash.html#ga9f85bde4369ff218cf1ce490262cd150":[4,0,4,1,151], "group__flash.html#ga9f93740a219497082411a0d215f5e01b":[4,0,4,1,118], "group__flash.html#ga9f93740a219497082411a0d215f5e01b":[4,0,4,1,117], "group__flash.html#gaa2371656f25790f0cc317fbeb5a07fd5":[4,0,4,1,104], @@ -115,10 +115,10 @@ var NAVTREEINDEX10 = "group__flash.html#gaaa9f0b43b7e4f0f5caf4aa703dc794eb":[4,0,4,1,143], "group__flash.html#gaaaaa373b169f88aee8c36de4a51ff5dd":[4,0,4,1,30], "group__flash.html#gaabb969e2c6b1ff90241f05e69c562030":[4,0,4,1,47], -"group__flash.html#gaac90026cd6e74bd4149b109c1e22712f":[4,0,4,1,37], "group__flash.html#gaac90026cd6e74bd4149b109c1e22712f":[4,0,4,1,38], -"group__flash.html#gaae24865abb3b5a27f5400ca2f68f427c":[4,0,4,1,28], +"group__flash.html#gaac90026cd6e74bd4149b109c1e22712f":[4,0,4,1,37], "group__flash.html#gaae24865abb3b5a27f5400ca2f68f427c":[4,0,4,1,29], +"group__flash.html#gaae24865abb3b5a27f5400ca2f68f427c":[4,0,4,1,28], "group__flash.html#gab12c44a9f9b6066dce5eedf3027a292b":[4,0,4,1,51], "group__flash.html#gab14d52cafb26c1f139168e6f807551ee":[4,0,4,1,66], "group__flash.html#gab326593933b21da8d3fb2765aca1d282":[4,0,4,1,141], @@ -159,13 +159,13 @@ var NAVTREEINDEX10 = "group__flash.html#gaefbd95c0b0666f56e742bab7f6d5cf55":[4,0,4,1,40], "group__flash.html#gaefbd95c0b0666f56e742bab7f6d5cf55":[4,0,4,1,39], "group__flash.html#gaf0080fe758e9658cd656b96602c2dbfd":[4,0,4,1,75], -"group__flash.html#gaf554334e9020f34fbb26ebd5edc539e4":[4,0,4,1,13], "group__flash.html#gaf554334e9020f34fbb26ebd5edc539e4":[4,0,4,1,14], +"group__flash.html#gaf554334e9020f34fbb26ebd5edc539e4":[4,0,4,1,13], "group__flash.html#gaf588dcc1f3859124b8eacbca548998cd":[4,0,4,1,60], "group__flash.html#gafa3f62391f3e8fbfc1fba32754e88b55":[4,0,4,1,148], "group__flash.html#gafa3f62391f3e8fbfc1fba32754e88b55":[4,0,4,1,147], -"group__flash.html#gafad735439bdb43ab280755aa4f129e05":[4,0,4,1,130], "group__flash.html#gafad735439bdb43ab280755aa4f129e05":[4,0,4,1,131], +"group__flash.html#gafad735439bdb43ab280755aa4f129e05":[4,0,4,1,130], "group__hid__logging.html":[4,0,1,3], "group__human__interface.html":[4,0,1], "group__led.html":[4,0,4,3], @@ -187,8 +187,8 @@ var NAVTREEINDEX10 = "group__logging__macros.html#gad4da30407c6778ebdea4c0002df9daab":[4,0,1,3,0,2], "group__logging__macros.html#gaf90e7cb64f23452c7c57b9b231bace78":[4,0,1,3,0,9], "group__midi.html":[4,0,1,4], -"group__midi.html#gaaa674dd8cc356904785b384ed493b201":[4,0,1,4,4], -"group__midi.html#gaae7397a71c41654e7d4236b47185ced1":[4,0,1,4,5], +"group__midi.html#gaaa674dd8cc356904785b384ed493b201":[4,0,1,4,5], +"group__midi.html#gaae7397a71c41654e7d4236b47185ced1":[4,0,1,4,6], "group__midi__events.html":[4,0,1,4,0], "group__midi__events.html#ga3069be23e98a0299bbfa8f1759754d45":[4,0,1,4,0,24], "group__midi__events.html#ga4f648ead175d62e97ceb4d3b49f692f5":[4,0,1,4,0,23], diff --git a/navtreeindex12.js b/navtreeindex12.js index 5b7d059bd..7a0023adf 100644 --- a/navtreeindex12.js +++ b/navtreeindex12.js @@ -56,9 +56,11 @@ var NAVTREEINDEX12 = "md_doc_2md_2__b1___development-_unit-_testing.html#autotoc_md68":[12,2], "md_doc_2md_2__b1___development-_unit-_testing.html#autotoc_md69":[12,3], "midi_8h.html":[17,0,1,1,8], -"midi_8h.html#a02f1ba6b22046642cb6f52e3fab60241":[17,0,1,1,8,3], "midi_8h.html#a1e52176e4f92572132c9ea700e70ad9d":[17,0,1,1,8,2], "midi_8h_source.html":[17,0,1,1,8], +"midi__parser_8h.html":[17,0,1,1,9], +"midi__parser_8h.html#a162408cf7d1cf060cf5f7c1d5f31f7a2":[17,0,1,1,9,0], +"midi__parser_8h_source.html":[17,0,1,1,9], "modules.html":[4], "mpr121_8h.html":[17,0,1,0,13], "mpr121_8h.html#a4b3fd951704a4d69529cec6c8996a560":[17,0,1,0,13,5], @@ -139,17 +141,17 @@ var NAVTREEINDEX12 = "oled__ssd130x_8h.html#af93a87691f811767ffd06cc43679041f":[17,0,1,0,16,12], "oled__ssd130x_8h_source.html":[17,0,1,0,16], "pages.html":[], -"parameter_8h.html":[17,0,1,1,10], -"parameter_8h_source.html":[17,0,1,1,10], +"parameter_8h.html":[17,0,1,1,11], +"parameter_8h_source.html":[17,0,1,1,11], "qspi_8h.html":[17,0,1,2,4], "qspi_8h.html#a3cccb1f07e68606c30c396e4344b2a22":[17,0,1,2,4,4], "qspi_8h.html#a60e1f5f509302b4539a5153c90880d68":[17,0,1,2,4,2], "qspi_8h.html#adf221bedb8997d5c1ae2b218a817d417":[17,0,1,2,4,3], "qspi_8h.html#ae6d4ba284e88afd6885030e4385eb7c7":[17,0,1,2,4,1], "qspi_8h_source.html":[17,0,1,2,4], -"rgb__led_8h.html":[17,0,1,1,11], -"rgb__led_8h.html#a0a7587c33027dddf5cba9430263876a0":[17,0,1,1,11,0], -"rgb__led_8h_source.html":[17,0,1,1,11], +"rgb__led_8h.html":[17,0,1,1,12], +"rgb__led_8h.html#a0a7587c33027dddf5cba9430263876a0":[17,0,1,1,12,0], +"rgb__led_8h_source.html":[17,0,1,1,12], "ringbuffer_8h.html":[17,0,1,5,9], "ringbuffer_8h.html#a34eee6c4d4db12db17fd2036cc3c7d3b":[17,0,1,5,9,0], "ringbuffer_8h_source.html":[17,0,1,5,9], @@ -247,7 +249,5 @@ var NAVTREEINDEX12 = "structdaisy_1_1_apds9960_1_1_config.html#ad4d79096c4adec916ba725bf312dc63a":[4,1,1,0,5], "structdaisy_1_1_apds9960_1_1_config.html#adcbb5e6fa46f8999f940b9c632ef6a08":[4,1,1,0,1], "structdaisy_1_1_apds9960_1_1_config.html#ae8ae6e88599c1502d8b3526a478cfae2":[4,1,1,0,3], -"structdaisy_1_1_apds9960_1_1_config.html#af099413639a7e25b9d954cd1fc51b011":[4,1,1,0,4], -"structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html":[4,1,0,0], -"structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a19aca0bbb0d3386d5808506c6d8e0743":[4,1,0,0,2] +"structdaisy_1_1_apds9960_1_1_config.html#af099413639a7e25b9d954cd1fc51b011":[4,1,1,0,4] }; diff --git a/navtreeindex13.js b/navtreeindex13.js index 0f02bd7bc..ef99f4fe8 100644 --- a/navtreeindex13.js +++ b/navtreeindex13.js @@ -1,5 +1,7 @@ var NAVTREEINDEX13 = { +"structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html":[4,1,0,0], +"structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a19aca0bbb0d3386d5808506c6d8e0743":[4,1,0,0,2], "structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a33d3e4f8290feaeafaf6129817623b88":[4,1,0,0,4], "structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a753b56324f7e8d5733a4b56b30779e46":[4,1,0,0,0], "structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a776e12358363059e096dd614fa9bb4d6":[4,1,0,0,3], @@ -156,13 +158,13 @@ var NAVTREEINDEX13 = "structdaisy_1_1_midi_event.html#a0a901876c13206b6edfe51a22dbf26c0":[4,0,1,4,0,20,14], "structdaisy_1_1_midi_event.html#a1da94effb63a42c7455aaf2fa8cd81a5":[4,0,1,4,0,20,13], "structdaisy_1_1_midi_event.html#a3072c26dd0a2e1ce7b5bbff2e74a2923":[4,0,1,4,0,20,19], -"structdaisy_1_1_midi_event.html#a3832d8ac412e42359eff562b56362cbb":[4,0,1,4,0,20,25], "structdaisy_1_1_midi_event.html#a4116a938a5978cf20e11b0d7dc022deb":[4,0,1,4,0,20,20], "structdaisy_1_1_midi_event.html#a444a56003671e191ff5b2768c6501d9e":[4,0,1,4,0,20,7], "structdaisy_1_1_midi_event.html#a51bf39a73e3d521f93e0a940d3dead96":[4,0,1,4,0,20,1], "structdaisy_1_1_midi_event.html#a5459a58fc45bcdc76a01f0e32888e017":[4,0,1,4,0,20,17], "structdaisy_1_1_midi_event.html#a63fe8f48ba2e932b407a8fb4d74f8cc1":[4,0,1,4,0,20,26], "structdaisy_1_1_midi_event.html#a6981641c0057f45e3a8556a55948b9fc":[4,0,1,4,0,20,24], +"structdaisy_1_1_midi_event.html#a7a51f09a3214731e5c02b6bf72985ac9":[4,0,1,4,0,20,25], "structdaisy_1_1_midi_event.html#a7fd8633bad4e22a3a6855ad7b1857dc8":[4,0,1,4,0,20,21], "structdaisy_1_1_midi_event.html#a8a909f5a769eedf0eed5ee54890c5fa5":[4,0,1,4,0,20,0], "structdaisy_1_1_midi_event.html#a8f58f94c7adcb1974372ce1379958b76":[4,0,1,4,0,20,23], @@ -183,17 +185,19 @@ var NAVTREEINDEX13 = "structdaisy_1_1_midi_handler_1_1_config.html":[4,0,1,4,2,0], "structdaisy_1_1_midi_handler_1_1_config.html#a1d9f206964ccadc8ecec5f84a592e74b":[4,0,1,4,2,0,0], "structdaisy_1_1_midi_uart_transport_1_1_config.html":[4,0,1,4,1,0], -"structdaisy_1_1_midi_uart_transport_1_1_config.html#a1637525e57e5aa3773d32d3f619f71f0":[4,0,1,4,1,0,3], +"structdaisy_1_1_midi_uart_transport_1_1_config.html#a1637525e57e5aa3773d32d3f619f71f0":[4,0,1,4,1,0,5], "structdaisy_1_1_midi_uart_transport_1_1_config.html#a7b90ff952ac1811fa126e29549482732":[4,0,1,4,1,0,1], "structdaisy_1_1_midi_uart_transport_1_1_config.html#a84c3f711773c994ae22fbb3969573a11":[4,0,1,4,1,0,2], +"structdaisy_1_1_midi_uart_transport_1_1_config.html#ac9c46f68be9880b9f0479f8162f77007":[4,0,1,4,1,0,4], "structdaisy_1_1_midi_uart_transport_1_1_config.html#acf3aaf63941621f4dc93aa42026293bf":[4,0,1,4,1,0,0], -"structdaisy_1_1_midi_usb_transport_1_1_config.html":[4,0,1,4,3,0], -"structdaisy_1_1_midi_usb_transport_1_1_config.html#a311d07b4a6ee2ec3f5df578e95b6b124":[4,0,1,4,3,0,2], -"structdaisy_1_1_midi_usb_transport_1_1_config.html#a4f3333af23786bc6f4f9040722b2c5e9":[4,0,1,4,3,0,3], -"structdaisy_1_1_midi_usb_transport_1_1_config.html#ac2c6a3bd5bb0b444072cf7ebd8454b61":[4,0,1,4,3,0,0], -"structdaisy_1_1_midi_usb_transport_1_1_config.html#ac2c6a3bd5bb0b444072cf7ebd8454b61a04b6299ba514b1f29d9c01c989677852":[4,0,1,4,3,0,0,1], -"structdaisy_1_1_midi_usb_transport_1_1_config.html#ac2c6a3bd5bb0b444072cf7ebd8454b61a7823cd640b9527fc8a9e6a767d08a992":[4,0,1,4,3,0,0,0], -"structdaisy_1_1_midi_usb_transport_1_1_config.html#acb8a68dec27a0685a753252e0974fd83":[4,0,1,4,3,0,1], +"structdaisy_1_1_midi_uart_transport_1_1_config.html#aef5688ab3707e03afb90a53356386d6c":[4,0,1,4,1,0,3], +"structdaisy_1_1_midi_usb_transport_1_1_config.html":[4,0,1,4,4,0], +"structdaisy_1_1_midi_usb_transport_1_1_config.html#a311d07b4a6ee2ec3f5df578e95b6b124":[4,0,1,4,4,0,2], +"structdaisy_1_1_midi_usb_transport_1_1_config.html#a4f3333af23786bc6f4f9040722b2c5e9":[4,0,1,4,4,0,3], +"structdaisy_1_1_midi_usb_transport_1_1_config.html#ac2c6a3bd5bb0b444072cf7ebd8454b61":[4,0,1,4,4,0,0], +"structdaisy_1_1_midi_usb_transport_1_1_config.html#ac2c6a3bd5bb0b444072cf7ebd8454b61a04b6299ba514b1f29d9c01c989677852":[4,0,1,4,4,0,0,1], +"structdaisy_1_1_midi_usb_transport_1_1_config.html#ac2c6a3bd5bb0b444072cf7ebd8454b61a7823cd640b9527fc8a9e6a767d08a992":[4,0,1,4,4,0,0,0], +"structdaisy_1_1_midi_usb_transport_1_1_config.html#acb8a68dec27a0685a753252e0974fd83":[4,0,1,4,4,0,1], "structdaisy_1_1_mono_mode_on_event.html":[4,0,1,4,0,18], "structdaisy_1_1_mono_mode_on_event.html#a000e23868355edbb3d3ba5b378535d03":[4,0,1,4,0,18,1], "structdaisy_1_1_mono_mode_on_event.html#a98685d31207264f56110f6cf14e96e6c":[4,0,1,4,0,18,0], @@ -245,9 +249,5 @@ var NAVTREEINDEX13 = "structdaisy_1_1_neo_trellis_1_1key_event_1_1_bit.html#a9b958e8d1f48ed61865de6907f5c90a6":[4,1,13,1,0,0], "structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html":[4,1,12,0], "structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a30b84a65c6e28b1838d7536c78fcdb19":[4,1,12,0,2], -"structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a58eb60473ecc33d01fa04720d47bc275":[4,1,12,0,5], -"structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a60556e52b033f81831b4b8ec43b7d0d9":[4,1,12,0,0], -"structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a65146322b1ea8590e25abdfcd2f8b159":[4,1,12,0,4], -"structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a84f92212e2e732c74a9bfb89f85118e8":[4,1,12,0,1], -"structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#acec420c950ea14c1fe0ae358e7578be3":[4,1,12,0,3] +"structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a58eb60473ecc33d01fa04720d47bc275":[4,1,12,0,5] }; diff --git a/navtreeindex14.js b/navtreeindex14.js index 5f6eb1c13..fb5b90150 100644 --- a/navtreeindex14.js +++ b/navtreeindex14.js @@ -1,5 +1,9 @@ var NAVTREEINDEX14 = { +"structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a60556e52b033f81831b4b8ec43b7d0d9":[4,1,12,0,0], +"structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a65146322b1ea8590e25abdfcd2f8b159":[4,1,12,0,4], +"structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a84f92212e2e732c74a9bfb89f85118e8":[4,1,12,0,1], +"structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#acec420c950ea14c1fe0ae358e7578be3":[4,1,12,0,3], "structdaisy_1_1_note_off_event.html":[4,0,1,4,0,0], "structdaisy_1_1_note_off_event.html#a76253736b9fe792133ab5613761f3017":[4,0,1,4,0,0,0], "structdaisy_1_1_note_off_event.html#a889c129b1e9c3b56cef43cc383036c3c":[4,0,1,4,0,0,1], @@ -14,15 +18,15 @@ var NAVTREEINDEX14 = "structdaisy_1_1_omni_mode_off_event.html#a4b7980c7513829edc53a42910fa4fc8e":[4,0,1,4,0,16,0], "structdaisy_1_1_omni_mode_on_event.html":[4,0,1,4,0,17], "structdaisy_1_1_omni_mode_on_event.html#ac4e3c2e5d0050beaf6d74f2013739bd5":[4,0,1,4,0,17,0], -"structdaisy_1_1_pin.html":[16,0,0,85], -"structdaisy_1_1_pin.html#a09a02dc8bbf3957abe1e0dff73f4749f":[16,0,0,85,7], -"structdaisy_1_1_pin.html#a492cdf058721dc44c910ce799463ce1b":[16,0,0,85,1], -"structdaisy_1_1_pin.html#a61f0a2333599cbfb4ba48e3d5af57ae0":[16,0,0,85,4], -"structdaisy_1_1_pin.html#a8802f817cfbaaf9e6a6344e9419cdb60":[16,0,0,85,5], -"structdaisy_1_1_pin.html#aaae9c3c475b50ff3195037760d971fc1":[16,0,0,85,6], -"structdaisy_1_1_pin.html#ac72ec3d38c8a42f047a3bead1b2c5ee7":[16,0,0,85,2], -"structdaisy_1_1_pin.html#ad9a2515c425471812d946be056ca60d0":[16,0,0,85,0], -"structdaisy_1_1_pin.html#ae4b23ddfd692db5f51aca7227db3fe36":[16,0,0,85,3], +"structdaisy_1_1_pin.html":[16,0,0,86], +"structdaisy_1_1_pin.html#a09a02dc8bbf3957abe1e0dff73f4749f":[16,0,0,86,7], +"structdaisy_1_1_pin.html#a492cdf058721dc44c910ce799463ce1b":[16,0,0,86,1], +"structdaisy_1_1_pin.html#a61f0a2333599cbfb4ba48e3d5af57ae0":[16,0,0,86,4], +"structdaisy_1_1_pin.html#a8802f817cfbaaf9e6a6344e9419cdb60":[16,0,0,86,5], +"structdaisy_1_1_pin.html#aaae9c3c475b50ff3195037760d971fc1":[16,0,0,86,6], +"structdaisy_1_1_pin.html#ac72ec3d38c8a42f047a3bead1b2c5ee7":[16,0,0,86,2], +"structdaisy_1_1_pin.html#ad9a2515c425471812d946be056ca60d0":[16,0,0,86,0], +"structdaisy_1_1_pin.html#ae4b23ddfd692db5f51aca7227db3fe36":[16,0,0,86,3], "structdaisy_1_1_pitch_bend_event.html":[4,0,1,4,0,6], "structdaisy_1_1_pitch_bend_event.html#a0b0bd11c42dfdc9f2f9ae482a7977d26":[4,0,1,4,0,6,0], "structdaisy_1_1_pitch_bend_event.html#a1fc608e73e787366ee6822d63b6c7e7e":[4,0,1,4,0,6,1], @@ -56,62 +60,62 @@ var NAVTREEINDEX14 = "structdaisy_1_1_reset_all_controllers_event.html":[4,0,1,4,0,13], "structdaisy_1_1_reset_all_controllers_event.html#a026546b1bdf6df08d9e976cf3825752f":[4,0,1,4,0,13,0], "structdaisy_1_1_reset_all_controllers_event.html#a888de3e15c1efc5859f54c09b9b40bfd":[4,0,1,4,0,13,1], -"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html":[16,0,0,105,0], -"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a0e59a703a862b53bfb19cd022ade99e2":[16,0,0,105,0,1], -"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a0e6385a90de1a3e4ffaa4023b3d9a83b":[16,0,0,105,0,0], -"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a21662ebfa665bc9c4e8e8c73278de342":[16,0,0,105,0,7], -"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a407208ebf6efb96a495b7ffb0dca7934":[16,0,0,105,0,4], -"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a54c84e1f05573803c9196b54ec89c897":[16,0,0,105,0,6], -"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a9518cb4063728948abcd2e59b878692a":[16,0,0,105,0,2], -"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#ab96fc6bc46066a9248add9a536ec554c":[16,0,0,105,0,3], -"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#af882736a325872cbb3814e8b25805742":[16,0,0,105,0,5], -"structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html":[16,0,0,106,0], -"structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a0e71fcc1289ae82c2ea9cad6413d21f5":[16,0,0,106,0,2], -"structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a2725b473c07c6bf9e8b57a0a810799c1":[16,0,0,106,0,5], -"structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a2d4cd8072f0348581e6777290c5a1465":[16,0,0,106,0,1], -"structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a3040b9e73290c3c0d562169b5f630c0e":[16,0,0,106,0,4], -"structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a4273d35c4a13337de45ece31f6e1c50a":[16,0,0,106,0,3], -"structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#af2f5c92ac23ceeed040e6f63d880cbaa":[16,0,0,106,0,0], -"structdaisy_1_1_s_s_d130x_driver_1_1_config.html":[16,0,0,107,0], -"structdaisy_1_1_s_s_d130x_driver_1_1_config.html#a576d18c3fe7f9a81565cd21ccca866da":[16,0,0,107,0,0], -"structdaisy_1_1_s_s_d130x_i2_c_transport_1_1_config.html":[16,0,0,108,0], -"structdaisy_1_1_s_s_d130x_i2_c_transport_1_1_config.html#a4ab21336ab0b2e121284265d2902091d":[16,0,0,108,0,2], -"structdaisy_1_1_s_s_d130x_i2_c_transport_1_1_config.html#a51b14efb0b5e7871328f53407377b67a":[16,0,0,108,0,1], -"structdaisy_1_1_s_s_d130x_i2_c_transport_1_1_config.html#aa87b410e13f44b509f5f41db8d6a140a":[16,0,0,108,0,3], -"structdaisy_1_1_s_s_d130x_i2_c_transport_1_1_config.html#af233d5e1f3dd1d8445a183692e593cfe":[16,0,0,108,0,0], -"structdaisy_1_1_sai_handle_1_1_config.html":[16,0,0,98,0], -"structdaisy_1_1_sai_handle_1_1_config.html#a05f5f92b5f15f31c8ffef09403412370":[16,0,0,98,0,17], -"structdaisy_1_1_sai_handle_1_1_config.html#a1585662c8843c7a59e0de3366df039b8":[16,0,0,98,0,9], -"structdaisy_1_1_sai_handle_1_1_config.html#a1c687b656fe1214692da9386cad76d42":[16,0,0,98,0,16], -"structdaisy_1_1_sai_handle_1_1_config.html#a269af182475979f6845fb06ffa3c4055":[16,0,0,98,0,4], -"structdaisy_1_1_sai_handle_1_1_config.html#a269af182475979f6845fb06ffa3c4055a79e19bc2ac33d6c81272024561992f37":[16,0,0,98,0,4,1], -"structdaisy_1_1_sai_handle_1_1_config.html#a269af182475979f6845fb06ffa3c4055a89a1533c37ec9254f22b5e0f29c9c0ff":[16,0,0,98,0,4,0], -"structdaisy_1_1_sai_handle_1_1_config.html#a2ec771f070f868f83d7f7d8f3de2462e":[16,0,0,98,0,5], -"structdaisy_1_1_sai_handle_1_1_config.html#a39845c4ac5a8044cc2afeaa90d2b747a":[16,0,0,98,0,7], -"structdaisy_1_1_sai_handle_1_1_config.html#a573d8b4f46f1cc461e7d89385b037b20":[16,0,0,98,0,13], -"structdaisy_1_1_sai_handle_1_1_config.html#a68789209ff997e6ca653db010594959b":[16,0,0,98,0,2], -"structdaisy_1_1_sai_handle_1_1_config.html#a68789209ff997e6ca653db010594959ba4afc2d6496e42b44dbf0f14420f3c021":[16,0,0,98,0,2,1], -"structdaisy_1_1_sai_handle_1_1_config.html#a68789209ff997e6ca653db010594959ba5bb62b6087bfd1f2707ba56be08c7dce":[16,0,0,98,0,2,0], -"structdaisy_1_1_sai_handle_1_1_config.html#a80ffb7d40b82652f1550e8cf6ca56f81":[16,0,0,98,0,1], -"structdaisy_1_1_sai_handle_1_1_config.html#a80ffb7d40b82652f1550e8cf6ca56f81a02d786cd0f7318c2533125f8b591abc5":[16,0,0,98,0,1,0], -"structdaisy_1_1_sai_handle_1_1_config.html#a80ffb7d40b82652f1550e8cf6ca56f81a42ddaaef1ffd16ad35901150add8f8f2":[16,0,0,98,0,1,1], -"structdaisy_1_1_sai_handle_1_1_config.html#a8fdd5be3f876f377d45c30baa49f41e2":[16,0,0,98,0,15], -"structdaisy_1_1_sai_handle_1_1_config.html#aafe336101d7c50dd68e2611ccce7c808":[16,0,0,98,0,0], -"structdaisy_1_1_sai_handle_1_1_config.html#aafe336101d7c50dd68e2611ccce7c808a7994246c841f7ea31972c7402eddc18d":[16,0,0,98,0,0,1], -"structdaisy_1_1_sai_handle_1_1_config.html#aafe336101d7c50dd68e2611ccce7c808ad21dd059762187003af4c3f0a25aef6a":[16,0,0,98,0,0,0], -"structdaisy_1_1_sai_handle_1_1_config.html#aafe336101d7c50dd68e2611ccce7c808add4793358b8e8a34793de0b01fa71e83":[16,0,0,98,0,0,2], -"structdaisy_1_1_sai_handle_1_1_config.html#ab9ee816b5ca6eb3823fbb15f410c90d6":[16,0,0,98,0,6], -"structdaisy_1_1_sai_handle_1_1_config.html#ac59816a80f77783dbce0e9aee8f6d1ed":[16,0,0,98,0,12], -"structdaisy_1_1_sai_handle_1_1_config.html#adace22abaff171f0c459cff4a44026fc":[16,0,0,98,0,3], -"structdaisy_1_1_sai_handle_1_1_config.html#adace22abaff171f0c459cff4a44026fca446573039304140ef825bbaa25847a2c":[16,0,0,98,0,3,2], -"structdaisy_1_1_sai_handle_1_1_config.html#adace22abaff171f0c459cff4a44026fca62c81bb497adbcc2d3f3369d0f5cc6a7":[16,0,0,98,0,3,0], -"structdaisy_1_1_sai_handle_1_1_config.html#adace22abaff171f0c459cff4a44026fcab4d8d55267fb73cafd0cfe1f94bc451c":[16,0,0,98,0,3,1], -"structdaisy_1_1_sai_handle_1_1_config.html#adace22abaff171f0c459cff4a44026fcabe2da78731d2386be1e8ace72a568eee":[16,0,0,98,0,3,4], -"structdaisy_1_1_sai_handle_1_1_config.html#adace22abaff171f0c459cff4a44026fcace337daebe0497b3d035fb836885bbbf":[16,0,0,98,0,3,3], -"structdaisy_1_1_sai_handle_1_1_config.html#ae94551a85d97c784e3849cc287b02603":[16,0,0,98,0,8], -"structdaisy_1_1_sai_handle_1_1_config.html#aec46ca01070e5cb40c457f7ba3e7b871":[16,0,0,98,0,14], -"structdaisy_1_1_sai_handle_1_1_config.html#aee60a0c6ca7c0d57d8cd965ce85a94f5":[16,0,0,98,0,11], -"structdaisy_1_1_sai_handle_1_1_config.html#aff0746f3a8ff80d4ad7763e5d4994b67":[16,0,0,98,0,10], +"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html":[16,0,0,106,0], +"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a0e59a703a862b53bfb19cd022ade99e2":[16,0,0,106,0,1], +"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a0e6385a90de1a3e4ffaa4023b3d9a83b":[16,0,0,106,0,0], +"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a21662ebfa665bc9c4e8e8c73278de342":[16,0,0,106,0,7], +"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a407208ebf6efb96a495b7ffb0dca7934":[16,0,0,106,0,4], +"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a54c84e1f05573803c9196b54ec89c897":[16,0,0,106,0,6], +"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a9518cb4063728948abcd2e59b878692a":[16,0,0,106,0,2], +"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#ab96fc6bc46066a9248add9a536ec554c":[16,0,0,106,0,3], +"structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#af882736a325872cbb3814e8b25805742":[16,0,0,106,0,5], +"structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html":[16,0,0,107,0], +"structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a0e71fcc1289ae82c2ea9cad6413d21f5":[16,0,0,107,0,2], +"structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a2725b473c07c6bf9e8b57a0a810799c1":[16,0,0,107,0,5], +"structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a2d4cd8072f0348581e6777290c5a1465":[16,0,0,107,0,1], +"structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a3040b9e73290c3c0d562169b5f630c0e":[16,0,0,107,0,4], +"structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a4273d35c4a13337de45ece31f6e1c50a":[16,0,0,107,0,3], +"structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#af2f5c92ac23ceeed040e6f63d880cbaa":[16,0,0,107,0,0], +"structdaisy_1_1_s_s_d130x_driver_1_1_config.html":[16,0,0,108,0], +"structdaisy_1_1_s_s_d130x_driver_1_1_config.html#a576d18c3fe7f9a81565cd21ccca866da":[16,0,0,108,0,0], +"structdaisy_1_1_s_s_d130x_i2_c_transport_1_1_config.html":[16,0,0,109,0], +"structdaisy_1_1_s_s_d130x_i2_c_transport_1_1_config.html#a4ab21336ab0b2e121284265d2902091d":[16,0,0,109,0,2], +"structdaisy_1_1_s_s_d130x_i2_c_transport_1_1_config.html#a51b14efb0b5e7871328f53407377b67a":[16,0,0,109,0,1], +"structdaisy_1_1_s_s_d130x_i2_c_transport_1_1_config.html#aa87b410e13f44b509f5f41db8d6a140a":[16,0,0,109,0,3], +"structdaisy_1_1_s_s_d130x_i2_c_transport_1_1_config.html#af233d5e1f3dd1d8445a183692e593cfe":[16,0,0,109,0,0], +"structdaisy_1_1_sai_handle_1_1_config.html":[16,0,0,99,0], +"structdaisy_1_1_sai_handle_1_1_config.html#a05f5f92b5f15f31c8ffef09403412370":[16,0,0,99,0,17], +"structdaisy_1_1_sai_handle_1_1_config.html#a1585662c8843c7a59e0de3366df039b8":[16,0,0,99,0,9], +"structdaisy_1_1_sai_handle_1_1_config.html#a1c687b656fe1214692da9386cad76d42":[16,0,0,99,0,16], +"structdaisy_1_1_sai_handle_1_1_config.html#a269af182475979f6845fb06ffa3c4055":[16,0,0,99,0,4], +"structdaisy_1_1_sai_handle_1_1_config.html#a269af182475979f6845fb06ffa3c4055a79e19bc2ac33d6c81272024561992f37":[16,0,0,99,0,4,1], +"structdaisy_1_1_sai_handle_1_1_config.html#a269af182475979f6845fb06ffa3c4055a89a1533c37ec9254f22b5e0f29c9c0ff":[16,0,0,99,0,4,0], +"structdaisy_1_1_sai_handle_1_1_config.html#a2ec771f070f868f83d7f7d8f3de2462e":[16,0,0,99,0,5], +"structdaisy_1_1_sai_handle_1_1_config.html#a39845c4ac5a8044cc2afeaa90d2b747a":[16,0,0,99,0,7], +"structdaisy_1_1_sai_handle_1_1_config.html#a573d8b4f46f1cc461e7d89385b037b20":[16,0,0,99,0,13], +"structdaisy_1_1_sai_handle_1_1_config.html#a68789209ff997e6ca653db010594959b":[16,0,0,99,0,2], +"structdaisy_1_1_sai_handle_1_1_config.html#a68789209ff997e6ca653db010594959ba4afc2d6496e42b44dbf0f14420f3c021":[16,0,0,99,0,2,1], +"structdaisy_1_1_sai_handle_1_1_config.html#a68789209ff997e6ca653db010594959ba5bb62b6087bfd1f2707ba56be08c7dce":[16,0,0,99,0,2,0], +"structdaisy_1_1_sai_handle_1_1_config.html#a80ffb7d40b82652f1550e8cf6ca56f81":[16,0,0,99,0,1], +"structdaisy_1_1_sai_handle_1_1_config.html#a80ffb7d40b82652f1550e8cf6ca56f81a02d786cd0f7318c2533125f8b591abc5":[16,0,0,99,0,1,0], +"structdaisy_1_1_sai_handle_1_1_config.html#a80ffb7d40b82652f1550e8cf6ca56f81a42ddaaef1ffd16ad35901150add8f8f2":[16,0,0,99,0,1,1], +"structdaisy_1_1_sai_handle_1_1_config.html#a8fdd5be3f876f377d45c30baa49f41e2":[16,0,0,99,0,15], +"structdaisy_1_1_sai_handle_1_1_config.html#aafe336101d7c50dd68e2611ccce7c808":[16,0,0,99,0,0], +"structdaisy_1_1_sai_handle_1_1_config.html#aafe336101d7c50dd68e2611ccce7c808a7994246c841f7ea31972c7402eddc18d":[16,0,0,99,0,0,1], +"structdaisy_1_1_sai_handle_1_1_config.html#aafe336101d7c50dd68e2611ccce7c808ad21dd059762187003af4c3f0a25aef6a":[16,0,0,99,0,0,0], +"structdaisy_1_1_sai_handle_1_1_config.html#aafe336101d7c50dd68e2611ccce7c808add4793358b8e8a34793de0b01fa71e83":[16,0,0,99,0,0,2], +"structdaisy_1_1_sai_handle_1_1_config.html#ab9ee816b5ca6eb3823fbb15f410c90d6":[16,0,0,99,0,6], +"structdaisy_1_1_sai_handle_1_1_config.html#ac59816a80f77783dbce0e9aee8f6d1ed":[16,0,0,99,0,12], +"structdaisy_1_1_sai_handle_1_1_config.html#adace22abaff171f0c459cff4a44026fc":[16,0,0,99,0,3], +"structdaisy_1_1_sai_handle_1_1_config.html#adace22abaff171f0c459cff4a44026fca446573039304140ef825bbaa25847a2c":[16,0,0,99,0,3,2], +"structdaisy_1_1_sai_handle_1_1_config.html#adace22abaff171f0c459cff4a44026fca62c81bb497adbcc2d3f3369d0f5cc6a7":[16,0,0,99,0,3,0], +"structdaisy_1_1_sai_handle_1_1_config.html#adace22abaff171f0c459cff4a44026fcab4d8d55267fb73cafd0cfe1f94bc451c":[16,0,0,99,0,3,1], +"structdaisy_1_1_sai_handle_1_1_config.html#adace22abaff171f0c459cff4a44026fcabe2da78731d2386be1e8ace72a568eee":[16,0,0,99,0,3,4], +"structdaisy_1_1_sai_handle_1_1_config.html#adace22abaff171f0c459cff4a44026fcace337daebe0497b3d035fb836885bbbf":[16,0,0,99,0,3,3], +"structdaisy_1_1_sai_handle_1_1_config.html#ae94551a85d97c784e3849cc287b02603":[16,0,0,99,0,8], +"structdaisy_1_1_sai_handle_1_1_config.html#aec46ca01070e5cb40c457f7ba3e7b871":[16,0,0,99,0,14], +"structdaisy_1_1_sai_handle_1_1_config.html#aee60a0c6ca7c0d57d8cd965ce85a94f5":[16,0,0,99,0,11], +"structdaisy_1_1_sai_handle_1_1_config.html#aff0746f3a8ff80d4ad7763e5d4994b67":[16,0,0,99,0,10], "structdaisy_1_1_sdmmc_handler_1_1_config.html":[4,0,2,4,0], "structdaisy_1_1_sdmmc_handler_1_1_config.html#a2087cb1829dbf51e1de53e98e653c387":[4,0,2,4,0,1], "structdaisy_1_1_sdmmc_handler_1_1_config.html#a4dd9ff5a58dd3f71514a986856b13615":[4,0,2,4,0,0], @@ -185,22 +189,22 @@ var NAVTREEINDEX14 = "structdaisy_1_1_system_1_1_config.html#adc21f9d3bcc3b5a016c985df1c62533f":[4,0,3,0,0,5], "structdaisy_1_1_system_1_1_config.html#afa170762e834fa4446b52850c7814848":[4,0,3,0,0,2], "structdaisy_1_1_system_exclusive_event.html":[4,0,1,4,0,8], -"structdaisy_1_1_system_exclusive_event.html#a784689ef707c6a80e2b90b7996887e9b":[4,0,1,4,0,8,0], "structdaisy_1_1_system_exclusive_event.html#a975aabec2f3903d767b50652a877d2b0":[4,0,1,4,0,8,1], -"structdaisy_1_1_timer_handle_1_1_config.html":[16,0,0,115,0], -"structdaisy_1_1_timer_handle_1_1_config.html#a0dd9b7de7144428da36ab1e140081e7b":[16,0,0,115,0,0], -"structdaisy_1_1_timer_handle_1_1_config.html#a0dd9b7de7144428da36ab1e140081e7bac4e0e4e3118472beeb2ae75827450f1f":[16,0,0,115,0,0,1], -"structdaisy_1_1_timer_handle_1_1_config.html#a0dd9b7de7144428da36ab1e140081e7bafbaedde498cdead4f2780217646e9ba1":[16,0,0,115,0,0,0], -"structdaisy_1_1_timer_handle_1_1_config.html#a431b23e53eedab70c3582535ebb866a2":[16,0,0,115,0,3], -"structdaisy_1_1_timer_handle_1_1_config.html#a80d102d9f279eed83f2fb22323a5d4b7":[16,0,0,115,0,5], -"structdaisy_1_1_timer_handle_1_1_config.html#a8221f500730fb53dcef869678a2634ba":[16,0,0,115,0,6], -"structdaisy_1_1_timer_handle_1_1_config.html#a907160c00bf0cad7ec645368bd4f5bca":[16,0,0,115,0,1], -"structdaisy_1_1_timer_handle_1_1_config.html#a907160c00bf0cad7ec645368bd4f5bcaa069b86aefb75f0c622fc14d8e28db631":[16,0,0,115,0,1,1], -"structdaisy_1_1_timer_handle_1_1_config.html#a907160c00bf0cad7ec645368bd4f5bcaa6840481ce38511a53a7e49e81c02a936":[16,0,0,115,0,1,3], -"structdaisy_1_1_timer_handle_1_1_config.html#a907160c00bf0cad7ec645368bd4f5bcaa848c6355c514c385d53dde45615d0411":[16,0,0,115,0,1,0], -"structdaisy_1_1_timer_handle_1_1_config.html#a907160c00bf0cad7ec645368bd4f5bcaac9136368e302d247b27e74dd7726ec1f":[16,0,0,115,0,1,2], -"structdaisy_1_1_timer_handle_1_1_config.html#ab16930ef8452a8b0dc78ff46918a94a5":[16,0,0,115,0,2], -"structdaisy_1_1_timer_handle_1_1_config.html#ad596ac4c02799e9bfd637bfaec82d41f":[16,0,0,115,0,4], +"structdaisy_1_1_system_exclusive_event.html#ab93fc459d6ccd356113d077f67e08109":[4,0,1,4,0,8,0], +"structdaisy_1_1_timer_handle_1_1_config.html":[16,0,0,116,0], +"structdaisy_1_1_timer_handle_1_1_config.html#a0dd9b7de7144428da36ab1e140081e7b":[16,0,0,116,0,0], +"structdaisy_1_1_timer_handle_1_1_config.html#a0dd9b7de7144428da36ab1e140081e7bac4e0e4e3118472beeb2ae75827450f1f":[16,0,0,116,0,0,1], +"structdaisy_1_1_timer_handle_1_1_config.html#a0dd9b7de7144428da36ab1e140081e7bafbaedde498cdead4f2780217646e9ba1":[16,0,0,116,0,0,0], +"structdaisy_1_1_timer_handle_1_1_config.html#a431b23e53eedab70c3582535ebb866a2":[16,0,0,116,0,3], +"structdaisy_1_1_timer_handle_1_1_config.html#a80d102d9f279eed83f2fb22323a5d4b7":[16,0,0,116,0,5], +"structdaisy_1_1_timer_handle_1_1_config.html#a8221f500730fb53dcef869678a2634ba":[16,0,0,116,0,6], +"structdaisy_1_1_timer_handle_1_1_config.html#a907160c00bf0cad7ec645368bd4f5bca":[16,0,0,116,0,1], +"structdaisy_1_1_timer_handle_1_1_config.html#a907160c00bf0cad7ec645368bd4f5bcaa069b86aefb75f0c622fc14d8e28db631":[16,0,0,116,0,1,1], +"structdaisy_1_1_timer_handle_1_1_config.html#a907160c00bf0cad7ec645368bd4f5bcaa6840481ce38511a53a7e49e81c02a936":[16,0,0,116,0,1,3], +"structdaisy_1_1_timer_handle_1_1_config.html#a907160c00bf0cad7ec645368bd4f5bcaa848c6355c514c385d53dde45615d0411":[16,0,0,116,0,1,0], +"structdaisy_1_1_timer_handle_1_1_config.html#a907160c00bf0cad7ec645368bd4f5bcaac9136368e302d247b27e74dd7726ec1f":[16,0,0,116,0,1,2], +"structdaisy_1_1_timer_handle_1_1_config.html#ab16930ef8452a8b0dc78ff46918a94a5":[16,0,0,116,0,2], +"structdaisy_1_1_timer_handle_1_1_config.html#ad596ac4c02799e9bfd637bfaec82d41f":[16,0,0,116,0,4], "structdaisy_1_1_tlv493d_1_1_access_mode__t.html":[4,1,15,0], "structdaisy_1_1_tlv493d_1_1_access_mode__t.html#a7899f7a1fc68175e24d947a47e089a46":[4,1,15,0,3], "structdaisy_1_1_tlv493d_1_1_access_mode__t.html#a7f344c1a0bbb88419b51b492a92722a2":[4,1,15,0,1], @@ -232,22 +236,18 @@ var NAVTREEINDEX14 = "structdaisy_1_1_u_i_1_1_special_control_ids.html#acd6212fa0072616b591c9b6093ea70b6":[4,0,5,6,0,4], "structdaisy_1_1_u_i_1_1_special_control_ids.html#ad027f56d4c7ec77935537d466d6003d2":[4,0,5,6,0,7], "structdaisy_1_1_u_i_1_1_special_control_ids.html#ad12c52e607cd3903797666dd43f2c4d4":[4,0,5,6,0,5], -"structdaisy_1_1_u_s_b_host_handle_1_1_config.html":[16,0,0,123,0], -"structdaisy_1_1_u_s_b_host_handle_1_1_config.html#a06835f58a7cbad412f4b9b032d328844":[16,0,0,123,0,3], -"structdaisy_1_1_u_s_b_host_handle_1_1_config.html#a4b22935a59a911e83ecba4a7b3235e4e":[16,0,0,123,0,1], -"structdaisy_1_1_u_s_b_host_handle_1_1_config.html#a6fc69f202495d06c0a0d20401b06fa93":[16,0,0,123,0,2], -"structdaisy_1_1_u_s_b_host_handle_1_1_config.html#a7953c141d57decc990362228ad289098":[16,0,0,123,0,5], -"structdaisy_1_1_u_s_b_host_handle_1_1_config.html#aa0675092d5abd9d7c43a2d57cd1a737c":[16,0,0,123,0,4], -"structdaisy_1_1_u_s_b_host_handle_1_1_config.html#af5880d86c7ad0a0a9161c5e72ff88b0c":[16,0,0,123,0,0], +"structdaisy_1_1_u_s_b_host_handle_1_1_config.html":[16,0,0,124,0], +"structdaisy_1_1_u_s_b_host_handle_1_1_config.html#a06835f58a7cbad412f4b9b032d328844":[16,0,0,124,0,3], +"structdaisy_1_1_u_s_b_host_handle_1_1_config.html#a4b22935a59a911e83ecba4a7b3235e4e":[16,0,0,124,0,1], +"structdaisy_1_1_u_s_b_host_handle_1_1_config.html#a6fc69f202495d06c0a0d20401b06fa93":[16,0,0,124,0,2], +"structdaisy_1_1_u_s_b_host_handle_1_1_config.html#a7953c141d57decc990362228ad289098":[16,0,0,124,0,5], +"structdaisy_1_1_u_s_b_host_handle_1_1_config.html#aa0675092d5abd9d7c43a2d57cd1a737c":[16,0,0,124,0,4], +"structdaisy_1_1_u_s_b_host_handle_1_1_config.html#af5880d86c7ad0a0a9161c5e72ff88b0c":[16,0,0,124,0,0], "structdaisy_1_1_uart_handler_1_1_config.html":[4,0,2,0,3,0], "structdaisy_1_1_uart_handler_1_1_config.html#a308b7817c645e6af7d8115da1e5beb94":[4,0,2,0,3,0,3], "structdaisy_1_1_uart_handler_1_1_config.html#a308b7817c645e6af7d8115da1e5beb94a08670704a035571395ac7232b1bd887b":[4,0,2,0,3,0,3,1], "structdaisy_1_1_uart_handler_1_1_config.html#a308b7817c645e6af7d8115da1e5beb94a115d1573a9cbee16d05e279a4d2b8876":[4,0,2,0,3,0,3,2], "structdaisy_1_1_uart_handler_1_1_config.html#a308b7817c645e6af7d8115da1e5beb94a7d79b1b4569953571af8eddc164131db":[4,0,2,0,3,0,3,3], "structdaisy_1_1_uart_handler_1_1_config.html#a308b7817c645e6af7d8115da1e5beb94aaa433221191fb734ebd8acbba94e4db2":[4,0,2,0,3,0,3,0], -"structdaisy_1_1_uart_handler_1_1_config.html#a3b30e6ff02efbb4829b888f7d93091ea":[4,0,2,0,3,0,7], -"structdaisy_1_1_uart_handler_1_1_config.html#a490845e58271053432b93ec8cc56798e":[4,0,2,0,3,0,12], -"structdaisy_1_1_uart_handler_1_1_config.html#a563a78c968ce1adbcc05585c617a5eec":[4,0,2,0,3,0,14], -"structdaisy_1_1_uart_handler_1_1_config.html#a610e071e45e1258b17896a05c4a23cf3":[4,0,2,0,3,0,9], -"structdaisy_1_1_uart_handler_1_1_config.html#a69458bc285ceaf3e20fba9299e2ea5b8":[4,0,2,0,3,0,1] +"structdaisy_1_1_uart_handler_1_1_config.html#a3b30e6ff02efbb4829b888f7d93091ea":[4,0,2,0,3,0,7] }; diff --git a/navtreeindex15.js b/navtreeindex15.js index f7c551153..b989a865d 100644 --- a/navtreeindex15.js +++ b/navtreeindex15.js @@ -1,5 +1,9 @@ var NAVTREEINDEX15 = { +"structdaisy_1_1_uart_handler_1_1_config.html#a490845e58271053432b93ec8cc56798e":[4,0,2,0,3,0,12], +"structdaisy_1_1_uart_handler_1_1_config.html#a563a78c968ce1adbcc05585c617a5eec":[4,0,2,0,3,0,14], +"structdaisy_1_1_uart_handler_1_1_config.html#a610e071e45e1258b17896a05c4a23cf3":[4,0,2,0,3,0,9], +"structdaisy_1_1_uart_handler_1_1_config.html#a69458bc285ceaf3e20fba9299e2ea5b8":[4,0,2,0,3,0,1], "structdaisy_1_1_uart_handler_1_1_config.html#a69458bc285ceaf3e20fba9299e2ea5b8a57a1355d5527355458c7cc08ba70bf94":[4,0,2,0,3,0,1,2], "structdaisy_1_1_uart_handler_1_1_config.html#a69458bc285ceaf3e20fba9299e2ea5b8a6634c67f28ba9a80efe941b9519aa106":[4,0,2,0,3,0,1,1], "structdaisy_1_1_uart_handler_1_1_config.html#a69458bc285ceaf3e20fba9299e2ea5b8ab50339a10e1de285ac99d4c3990b8693":[4,0,2,0,3,0,1,0], @@ -37,44 +41,44 @@ var NAVTREEINDEX15 = "structdaisy_1_1_ui_canvas_descriptor.html#abad766aae20df7c5c6fcafced7dcf6c1":[4,0,5,4,4], "structdaisy_1_1_ui_canvas_descriptor.html#acde42d0bcf27e4e78933e0bca8deb324":[4,0,5,4,8], "structdaisy_1_1_ui_canvas_descriptor.html#afa1e4cb91ba86756f938950157f8934b":[4,0,5,4,2], -"structdaisy_1_1_w_a_v___format_type_def.html":[16,0,0,125], -"structdaisy_1_1_w_a_v___format_type_def.html#a027b8307b27f1648d55fbcc9be8fa02f":[16,0,0,125,9], -"structdaisy_1_1_w_a_v___format_type_def.html#a088662aadfb9d39a43eea4450611711d":[16,0,0,125,2], -"structdaisy_1_1_w_a_v___format_type_def.html#a3f00bebc16e12c569d7a30d4d0da5abc":[16,0,0,125,10], -"structdaisy_1_1_w_a_v___format_type_def.html#a62021d1850a14721086b0cb35a75ff1e":[16,0,0,125,3], -"structdaisy_1_1_w_a_v___format_type_def.html#a68590b48ece3d4984edd6514a17ed5e6":[16,0,0,125,5], -"structdaisy_1_1_w_a_v___format_type_def.html#a7277bbe7165d74a62927d574cfb70a85":[16,0,0,125,4], -"structdaisy_1_1_w_a_v___format_type_def.html#a93968350c8f1abcd287e79ded8b6a81d":[16,0,0,125,12], -"structdaisy_1_1_w_a_v___format_type_def.html#abcdd6e56d61ed2fe3f12621c9ef05110":[16,0,0,125,7], -"structdaisy_1_1_w_a_v___format_type_def.html#ad504435ae2f2f6767f43b131e2ffd9b5":[16,0,0,125,1], -"structdaisy_1_1_w_a_v___format_type_def.html#ada338826e889f5ba97407e2f0654ee5e":[16,0,0,125,6], -"structdaisy_1_1_w_a_v___format_type_def.html#ae31021692b18b35a7f33e9e5e8d0a3f1":[16,0,0,125,11], -"structdaisy_1_1_w_a_v___format_type_def.html#aeb09ec4e4df16bd903f5d31af5a18681":[16,0,0,125,0], -"structdaisy_1_1_w_a_v___format_type_def.html#af94f78ad6e950a2084e143fdc4b4ba04":[16,0,0,125,8], -"structdaisy_1_1_wav_file_info.html":[16,0,0,127], -"structdaisy_1_1_wav_file_info.html#ac1ed8afd18796f33e4eb163f56fcf154":[16,0,0,127,0], -"structdaisy_1_1_wav_file_info.html#ad1e3c8f4c720cbbdfbdf26b5a2ea2903":[16,0,0,127,1], -"structdaisy_1_1_wav_writer_1_1_config.html":[16,0,0,129,0], -"structdaisy_1_1_wav_writer_1_1_config.html#a02a811d9a6779afd16ea34c0b2d1817e":[16,0,0,129,0,0], -"structdaisy_1_1_wav_writer_1_1_config.html#a143f2278359597869a0de80cc8edba86":[16,0,0,129,0,2], -"structdaisy_1_1_wav_writer_1_1_config.html#af9ffa3fe0d56cfc55521a33569d45632":[16,0,0,129,0,1], -"structdaisy_1_1_wm8731_1_1_config.html":[16,0,0,130,0], -"structdaisy_1_1_wm8731_1_1_config.html#a34027e7604b8cfc9649d4eb972665f99":[16,0,0,130,0,6], -"structdaisy_1_1_wm8731_1_1_config.html#a37915e9bbce58b19d2ae1c7ebb9c2aa3":[16,0,0,130,0,2], -"structdaisy_1_1_wm8731_1_1_config.html#a6b83d4a8f2c0fc7a247d6071df07834b":[16,0,0,130,0,3], -"structdaisy_1_1_wm8731_1_1_config.html#a91edb01dd260a86a27fc80705a627435":[16,0,0,130,0,4], -"structdaisy_1_1_wm8731_1_1_config.html#ab4f7715d2649dc0e73aad513a9ac9326":[16,0,0,130,0,5], -"structdaisy_1_1_wm8731_1_1_config.html#acad7ca8ac2aec44154cb3c175a07ed90":[16,0,0,130,0,1], -"structdaisy_1_1_wm8731_1_1_config.html#acad7ca8ac2aec44154cb3c175a07ed90a3daf6fb62a0c590cae93239f9d7298d0":[16,0,0,130,0,1,1], -"structdaisy_1_1_wm8731_1_1_config.html#acad7ca8ac2aec44154cb3c175a07ed90a671a244b271434b9c01ccdf031f4e927":[16,0,0,130,0,1,3], -"structdaisy_1_1_wm8731_1_1_config.html#acad7ca8ac2aec44154cb3c175a07ed90a6a3400cf8e1f58ffc870005831acfc8d":[16,0,0,130,0,1,2], -"structdaisy_1_1_wm8731_1_1_config.html#acad7ca8ac2aec44154cb3c175a07ed90abb5d31439f5385837df1e6e250880da0":[16,0,0,130,0,1,0], -"structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104":[16,0,0,130,0,0], -"structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104a463db1dea7845050306bf03576aeeea5":[16,0,0,130,0,0,1], -"structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104a7afea11a7df0179a32a3e20d7f8beef4":[16,0,0,130,0,0,2], -"structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104ac0dc8df68b79ed124e7c649d1df58fb5":[16,0,0,130,0,0,3], -"structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104ae15fc5eea5e09485aef36afee2d15590":[16,0,0,130,0,0,0], -"structdaisy_1_1_wm8731_1_1_config.html#af7820bfc598cc2123e9d91eb740e965a":[16,0,0,130,0,7], +"structdaisy_1_1_w_a_v___format_type_def.html":[16,0,0,126], +"structdaisy_1_1_w_a_v___format_type_def.html#a027b8307b27f1648d55fbcc9be8fa02f":[16,0,0,126,9], +"structdaisy_1_1_w_a_v___format_type_def.html#a088662aadfb9d39a43eea4450611711d":[16,0,0,126,2], +"structdaisy_1_1_w_a_v___format_type_def.html#a3f00bebc16e12c569d7a30d4d0da5abc":[16,0,0,126,10], +"structdaisy_1_1_w_a_v___format_type_def.html#a62021d1850a14721086b0cb35a75ff1e":[16,0,0,126,3], +"structdaisy_1_1_w_a_v___format_type_def.html#a68590b48ece3d4984edd6514a17ed5e6":[16,0,0,126,5], +"structdaisy_1_1_w_a_v___format_type_def.html#a7277bbe7165d74a62927d574cfb70a85":[16,0,0,126,4], +"structdaisy_1_1_w_a_v___format_type_def.html#a93968350c8f1abcd287e79ded8b6a81d":[16,0,0,126,12], +"structdaisy_1_1_w_a_v___format_type_def.html#abcdd6e56d61ed2fe3f12621c9ef05110":[16,0,0,126,7], +"structdaisy_1_1_w_a_v___format_type_def.html#ad504435ae2f2f6767f43b131e2ffd9b5":[16,0,0,126,1], +"structdaisy_1_1_w_a_v___format_type_def.html#ada338826e889f5ba97407e2f0654ee5e":[16,0,0,126,6], +"structdaisy_1_1_w_a_v___format_type_def.html#ae31021692b18b35a7f33e9e5e8d0a3f1":[16,0,0,126,11], +"structdaisy_1_1_w_a_v___format_type_def.html#aeb09ec4e4df16bd903f5d31af5a18681":[16,0,0,126,0], +"structdaisy_1_1_w_a_v___format_type_def.html#af94f78ad6e950a2084e143fdc4b4ba04":[16,0,0,126,8], +"structdaisy_1_1_wav_file_info.html":[16,0,0,128], +"structdaisy_1_1_wav_file_info.html#ac1ed8afd18796f33e4eb163f56fcf154":[16,0,0,128,0], +"structdaisy_1_1_wav_file_info.html#ad1e3c8f4c720cbbdfbdf26b5a2ea2903":[16,0,0,128,1], +"structdaisy_1_1_wav_writer_1_1_config.html":[16,0,0,130,0], +"structdaisy_1_1_wav_writer_1_1_config.html#a02a811d9a6779afd16ea34c0b2d1817e":[16,0,0,130,0,0], +"structdaisy_1_1_wav_writer_1_1_config.html#a143f2278359597869a0de80cc8edba86":[16,0,0,130,0,2], +"structdaisy_1_1_wav_writer_1_1_config.html#af9ffa3fe0d56cfc55521a33569d45632":[16,0,0,130,0,1], +"structdaisy_1_1_wm8731_1_1_config.html":[16,0,0,131,0], +"structdaisy_1_1_wm8731_1_1_config.html#a34027e7604b8cfc9649d4eb972665f99":[16,0,0,131,0,6], +"structdaisy_1_1_wm8731_1_1_config.html#a37915e9bbce58b19d2ae1c7ebb9c2aa3":[16,0,0,131,0,2], +"structdaisy_1_1_wm8731_1_1_config.html#a6b83d4a8f2c0fc7a247d6071df07834b":[16,0,0,131,0,3], +"structdaisy_1_1_wm8731_1_1_config.html#a91edb01dd260a86a27fc80705a627435":[16,0,0,131,0,4], +"structdaisy_1_1_wm8731_1_1_config.html#ab4f7715d2649dc0e73aad513a9ac9326":[16,0,0,131,0,5], +"structdaisy_1_1_wm8731_1_1_config.html#acad7ca8ac2aec44154cb3c175a07ed90":[16,0,0,131,0,1], +"structdaisy_1_1_wm8731_1_1_config.html#acad7ca8ac2aec44154cb3c175a07ed90a3daf6fb62a0c590cae93239f9d7298d0":[16,0,0,131,0,1,1], +"structdaisy_1_1_wm8731_1_1_config.html#acad7ca8ac2aec44154cb3c175a07ed90a671a244b271434b9c01ccdf031f4e927":[16,0,0,131,0,1,3], +"structdaisy_1_1_wm8731_1_1_config.html#acad7ca8ac2aec44154cb3c175a07ed90a6a3400cf8e1f58ffc870005831acfc8d":[16,0,0,131,0,1,2], +"structdaisy_1_1_wm8731_1_1_config.html#acad7ca8ac2aec44154cb3c175a07ed90abb5d31439f5385837df1e6e250880da0":[16,0,0,131,0,1,0], +"structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104":[16,0,0,131,0,0], +"structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104a463db1dea7845050306bf03576aeeea5":[16,0,0,131,0,0,1], +"structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104a7afea11a7df0179a32a3e20d7f8beef4":[16,0,0,131,0,0,2], +"structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104ac0dc8df68b79ed124e7c649d1df58fb5":[16,0,0,131,0,0,3], +"structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104ae15fc5eea5e09485aef36afee2d15590":[16,0,0,131,0,0,0], +"structdaisy_1_1_wm8731_1_1_config.html#af7820bfc598cc2123e9d91eb740e965a":[16,0,0,131,0,7], "structdsy__gpio.html":[4,0,2,2,0], "structdsy__gpio.html#a12e4d73b334e9caedb135224bd288384":[4,0,2,2,0,0], "structdsy__gpio.html#a92d61fa4d53b923b328e7e1ca8a67100":[4,0,2,2,0,1], @@ -82,11 +86,11 @@ var NAVTREEINDEX15 = "structdsy__gpio__pin.html":[4,0,6,1], "structdsy__gpio__pin.html#a1edd34504a6d4d701bde32ae664afebd":[4,0,6,1,0], "structdsy__gpio__pin.html#a1f18b0d77c637dde2a3febf5edf31237":[4,0,6,1,1], -"switch3_8h.html":[17,0,1,1,13], -"switch3_8h_source.html":[17,0,1,1,13], -"switch_8h.html":[17,0,1,1,12], -"switch_8h.html#af3c6f18531c9746e156c796b6d7da082":[17,0,1,1,12,0], -"switch_8h_source.html":[17,0,1,1,12], +"switch3_8h.html":[17,0,1,1,14], +"switch3_8h_source.html":[17,0,1,1,14], +"switch_8h.html":[17,0,1,1,13], +"switch_8h.html#af3c6f18531c9746e156c796b6d7da082":[17,0,1,1,13,0], +"switch_8h_source.html":[17,0,1,1,13], "system_8h.html":[17,0,1,3,3], "system_8h_source.html":[17,0,1,3,3], "tim_8h.html":[17,0,1,2,10], @@ -129,19 +133,19 @@ var NAVTREEINDEX15 = "unique__id_8h.html":[17,0,1,5,13], "unique__id_8h.html#a2140d8723a0ad66047c1b04bb4319b0b":[17,0,1,5,13,0], "unique__id_8h_source.html":[17,0,1,5,13], -"usb_8h.html":[17,0,1,1,14], -"usb_8h.html#ab75cd7fb3578c30514f87c4a08d18ff4":[17,0,1,1,14,1], -"usb_8h_source.html":[17,0,1,1,14], -"usb__host_8h.html":[17,0,1,1,15], -"usb__host_8h.html#a521c3cc3f26ece5409f24e8b5764fa8d":[17,0,1,1,15,2], -"usb__host_8h.html#a521c3cc3f26ece5409f24e8b5764fa8da294e63a4cafd2173599821ff7e303ccf":[17,0,1,1,15,2,0], -"usb__host_8h.html#a521c3cc3f26ece5409f24e8b5764fa8da87f3cbfcc2efbe6338aca825d084801c":[17,0,1,1,15,2,1], -"usb__host_8h.html#a521c3cc3f26ece5409f24e8b5764fa8da919f33d5cc3bc8ef347d5a8eb17f9541":[17,0,1,1,15,2,3], -"usb__host_8h.html#a521c3cc3f26ece5409f24e8b5764fa8dad28f5f471b8881dba1514ee8524da16e":[17,0,1,1,15,2,2], -"usb__host_8h_source.html":[17,0,1,1,15], -"usb__midi_8h.html":[17,0,1,1,16], -"usb__midi_8h.html#a271533fd70083fec8006daa385671553":[17,0,1,1,16,1], -"usb__midi_8h_source.html":[17,0,1,1,16], +"usb_8h.html":[17,0,1,1,15], +"usb_8h.html#ab75cd7fb3578c30514f87c4a08d18ff4":[17,0,1,1,15,1], +"usb_8h_source.html":[17,0,1,1,15], +"usb__host_8h.html":[17,0,1,1,16], +"usb__host_8h.html#a521c3cc3f26ece5409f24e8b5764fa8d":[17,0,1,1,16,2], +"usb__host_8h.html#a521c3cc3f26ece5409f24e8b5764fa8da294e63a4cafd2173599821ff7e303ccf":[17,0,1,1,16,2,0], +"usb__host_8h.html#a521c3cc3f26ece5409f24e8b5764fa8da87f3cbfcc2efbe6338aca825d084801c":[17,0,1,1,16,2,1], +"usb__host_8h.html#a521c3cc3f26ece5409f24e8b5764fa8da919f33d5cc3bc8ef347d5a8eb17f9541":[17,0,1,1,16,2,3], +"usb__host_8h.html#a521c3cc3f26ece5409f24e8b5764fa8dad28f5f471b8881dba1514ee8524da16e":[17,0,1,1,16,2,2], +"usb__host_8h_source.html":[17,0,1,1,16], +"usb__midi_8h.html":[17,0,1,1,17], +"usb__midi_8h.html#a271533fd70083fec8006daa385671553":[17,0,1,1,17,1], +"usb__midi_8h_source.html":[17,0,1,1,17], "usbh__diskio_8h.html":[17,0,1,5,14], "usbh__diskio_8h.html#ab280a92502c7485b193592eb7af27a9d":[17,0,1,5,14,0], "usbh__diskio_8h_source.html":[17,0,1,5,14], @@ -165,8 +169,8 @@ var NAVTREEINDEX15 = "wav__format_8h.html#ac4aa183da4cc8c253afebd7ae0713f81afd2f9c63c6525b757a425e258cc390d9":[17,0,1,5,16,2,1], "wav__format_8h.html#aefff3cc0abb51c01a9fcb7d17b6fbabe":[17,0,1,5,16,4], "wav__format_8h_source.html":[17,0,1,5,16], -"wavplayer_8h.html":[17,0,1,1,17], -"wavplayer_8h.html#a88ca91b983c684621839f839c4f7b30e":[17,0,1,1,17,3], -"wavplayer_8h.html#ad384c43689d53e261578fa4dcb9dd00a":[17,0,1,1,17,2], -"wavplayer_8h_source.html":[17,0,1,1,17] +"wavplayer_8h.html":[17,0,1,1,18], +"wavplayer_8h.html#a88ca91b983c684621839f839c4f7b30e":[17,0,1,1,18,3], +"wavplayer_8h.html#ad384c43689d53e261578fa4dcb9dd00a":[17,0,1,1,18,2], +"wavplayer_8h_source.html":[17,0,1,1,18] }; diff --git a/navtreeindex2.js b/navtreeindex2.js index a45e8b0ae..186e97925 100644 --- a/navtreeindex2.js +++ b/navtreeindex2.js @@ -1,5 +1,6 @@ var NAVTREEINDEX2 = { +"classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3a97da9bc7e7650022b0109eba62759e5a":[4,0,0,2,0,3], "classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3abd85d3626ac80d244f744f96df92b58a":[4,0,0,2,0,4], "classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3add5617d9d944ff9734f9f70ba6ef4559":[4,0,0,2,0,0], "classdaisy_1_1_daisy_patch.html#af2ad231a452402baa2df7a5fdbdf8a5b":[4,0,0,2,21], @@ -248,6 +249,5 @@ var NAVTREEINDEX2 = "classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17aa3a98617ee0ce3834715dde80e3262da":[4,1,4,2,6], "classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17acc9f31496ea41e9c03190f5b15465a5b":[4,1,4,2,7], "classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17ad5161786dbd7302e43aa7e28eca59ce7":[4,1,4,2,2], -"classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17ad75bc854401a404ed27dde18cd430311":[4,1,4,2,5], -"classdaisy_1_1_dps310.html#a5efac61910adc2f4b8f3f7a93ff3a23e":[4,1,4,17] +"classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17ad75bc854401a404ed27dde18cd430311":[4,1,4,2,5] }; diff --git a/navtreeindex3.js b/navtreeindex3.js index 64e3261c4..c7e86a4ac 100644 --- a/navtreeindex3.js +++ b/navtreeindex3.js @@ -1,5 +1,6 @@ var NAVTREEINDEX3 = { +"classdaisy_1_1_dps310.html#a5efac61910adc2f4b8f3f7a93ff3a23e":[4,1,4,17], "classdaisy_1_1_dps310.html#a711b21ddb3d3c70d4849b1b784930d97":[4,1,4,23], "classdaisy_1_1_dps310.html#a8037a8a10e239c5cca75b9e6f380771f":[4,1,4,14], "classdaisy_1_1_dps310.html#a8227bd52a9d2ef66dc95f5648dde5204":[4,1,4,26], @@ -248,6 +249,5 @@ var NAVTREEINDEX3 = "classdaisy_1_1_icm20948.html#a7b93d916dde52f0005cacc41e3a3e2e0":[4,1,7,46], "classdaisy_1_1_icm20948.html#a8009866648c8e00c1b36a4d70268a2b5":[4,1,7,11], "classdaisy_1_1_icm20948.html#a842415a6f1b60caf440240fcaf8ad9f1":[4,1,7,34], -"classdaisy_1_1_icm20948.html#a86a114e9816e873fb93307d60bbdd173":[4,1,7,14], -"classdaisy_1_1_icm20948.html#a8950d4b910aada48b53e7d160448d331":[4,1,7,2] +"classdaisy_1_1_icm20948.html#a86a114e9816e873fb93307d60bbdd173":[4,1,7,14] }; diff --git a/navtreeindex4.js b/navtreeindex4.js index efb2f4460..0a028daff 100644 --- a/navtreeindex4.js +++ b/navtreeindex4.js @@ -1,5 +1,6 @@ var NAVTREEINDEX4 = { +"classdaisy_1_1_icm20948.html#a8950d4b910aada48b53e7d160448d331":[4,1,7,2], "classdaisy_1_1_icm20948.html#a8950d4b910aada48b53e7d160448d331a4775f76bfcd5a898915cbdf30a8f2bf1":[4,1,7,2,4], "classdaisy_1_1_icm20948.html#a8950d4b910aada48b53e7d160448d331a5259b12f9eae2f505720ef7f2be2c6eb":[4,1,7,2,2], "classdaisy_1_1_icm20948.html#a8950d4b910aada48b53e7d160448d331ab835b6195dc4c88df427a9a303834bce":[4,1,7,2,5], @@ -194,28 +195,32 @@ var NAVTREEINDEX4 = "classdaisy_1_1_midi_handler.html#a96d78e2e460ba9dc17a9ad5be71e99bb":[4,0,1,4,2,3], "classdaisy_1_1_midi_handler.html#ae449f82ffeae9ef7f71d725349fdffef":[4,0,1,4,2,4], "classdaisy_1_1_midi_handler.html#afd52da947947fdce95e725209aae5831":[4,0,1,4,2,2], +"classdaisy_1_1_midi_parser.html":[4,0,1,4,3], +"classdaisy_1_1_midi_parser.html#a7c8613042df01c8fbd96f38618266c93":[4,0,1,4,3,0], +"classdaisy_1_1_midi_parser.html#a97e189d4b01195b78d6f687e91d4cffd":[4,0,1,4,3,1], +"classdaisy_1_1_midi_parser.html#a9fca6bc5b70e646c61a6abcd477a885c":[4,0,1,4,3,4], +"classdaisy_1_1_midi_parser.html#ac0f99ea908391d2f95ddac9ce80fc31a":[4,0,1,4,3,3], +"classdaisy_1_1_midi_parser.html#adddae08eba63035e5d7d49fb3de201f8":[4,0,1,4,3,2], "classdaisy_1_1_midi_uart_transport.html":[4,0,1,4,1], -"classdaisy_1_1_midi_uart_transport.html#a3003a674263cd011b8b61ef4de02c6b0":[4,0,1,4,1,5], -"classdaisy_1_1_midi_uart_transport.html#a45d636631d6d47eb38b4919ab5d2089b":[4,0,1,4,1,9], -"classdaisy_1_1_midi_uart_transport.html#a4934d3331c639115b6bd64ceffa5a888":[4,0,1,4,1,2], -"classdaisy_1_1_midi_uart_transport.html#a7e498cbcb29bc447db934b96252a547f":[4,0,1,4,1,3], -"classdaisy_1_1_midi_uart_transport.html#a9b30f4f8f9bc708d9f4a921eade1d7d3":[4,0,1,4,1,6], -"classdaisy_1_1_midi_uart_transport.html#ac19153d70ce2f869e96cca20453197b7":[4,0,1,4,1,8], -"classdaisy_1_1_midi_uart_transport.html#add8bebc579df1cdbe95f66660b2b412d":[4,0,1,4,1,1], -"classdaisy_1_1_midi_uart_transport.html#aded78c4242d61c92eaece731f954b57e":[4,0,1,4,1,7], -"classdaisy_1_1_midi_uart_transport.html#affbd429d68f111dd01161591f2736012":[4,0,1,4,1,4], -"classdaisy_1_1_midi_usb_transport.html":[4,0,1,4,3], -"classdaisy_1_1_midi_usb_transport.html#a11cf837f61be46669ced0fe3345d9625":[4,0,1,4,3,5], -"classdaisy_1_1_midi_usb_transport.html#a15246033ff7a78e47c37b2ade7769705":[4,0,1,4,3,10], -"classdaisy_1_1_midi_usb_transport.html#a4509734f8dee64bc260a1a5e940b4b9c":[4,0,1,4,3,4], -"classdaisy_1_1_midi_usb_transport.html#a641c315e8d73411a3c7a2a8087b8f834":[4,0,1,4,3,8], -"classdaisy_1_1_midi_usb_transport.html#a6feaa01b40329b31042c2d681bd31956":[4,0,1,4,3,1], -"classdaisy_1_1_midi_usb_transport.html#a7f04168895972a3bb8d98670ca9ca6b0":[4,0,1,4,3,2], -"classdaisy_1_1_midi_usb_transport.html#a826d042793bbbf38f5b19aab51207702":[4,0,1,4,3,7], -"classdaisy_1_1_midi_usb_transport.html#a997a09de379d7d9275bbb06b255ef711":[4,0,1,4,3,11], -"classdaisy_1_1_midi_usb_transport.html#abaea457dd71e7e143f7c5f5045de2b42":[4,0,1,4,3,9], -"classdaisy_1_1_midi_usb_transport.html#ace2a362aa40470215a9c77994937352f":[4,0,1,4,3,3], -"classdaisy_1_1_midi_usb_transport.html#afbf0c10b19ceb4c6d4f293c5bea5ec0e":[4,0,1,4,3,6], +"classdaisy_1_1_midi_uart_transport.html#a03ebfa2dbe4a5a79a7ed0342bc8bf82a":[4,0,1,4,1,7], +"classdaisy_1_1_midi_uart_transport.html#a45d636631d6d47eb38b4919ab5d2089b":[4,0,1,4,1,8], +"classdaisy_1_1_midi_uart_transport.html#a4934d3331c639115b6bd64ceffa5a888":[4,0,1,4,1,3], +"classdaisy_1_1_midi_uart_transport.html#a7e498cbcb29bc447db934b96252a547f":[4,0,1,4,1,4], +"classdaisy_1_1_midi_uart_transport.html#a7fcae1da16a65ff64e023942843ceffa":[4,0,1,4,1,1], +"classdaisy_1_1_midi_uart_transport.html#add8bebc579df1cdbe95f66660b2b412d":[4,0,1,4,1,2], +"classdaisy_1_1_midi_uart_transport.html#aded78c4242d61c92eaece731f954b57e":[4,0,1,4,1,6], +"classdaisy_1_1_midi_uart_transport.html#affbd429d68f111dd01161591f2736012":[4,0,1,4,1,5], +"classdaisy_1_1_midi_usb_transport.html":[4,0,1,4,4], +"classdaisy_1_1_midi_usb_transport.html#a11cf837f61be46669ced0fe3345d9625":[4,0,1,4,4,6], +"classdaisy_1_1_midi_usb_transport.html#a4509734f8dee64bc260a1a5e940b4b9c":[4,0,1,4,4,5], +"classdaisy_1_1_midi_usb_transport.html#a6feaa01b40329b31042c2d681bd31956":[4,0,1,4,4,3], +"classdaisy_1_1_midi_usb_transport.html#a7f04168895972a3bb8d98670ca9ca6b0":[4,0,1,4,4,2], +"classdaisy_1_1_midi_usb_transport.html#a997a09de379d7d9275bbb06b255ef711":[4,0,1,4,4,10], +"classdaisy_1_1_midi_usb_transport.html#abaea457dd71e7e143f7c5f5045de2b42":[4,0,1,4,4,8], +"classdaisy_1_1_midi_usb_transport.html#ace2a362aa40470215a9c77994937352f":[4,0,1,4,4,4], +"classdaisy_1_1_midi_usb_transport.html#ad4ea4fdde06e5e46f5f1054a878558aa":[4,0,1,4,4,1], +"classdaisy_1_1_midi_usb_transport.html#adb4a68d5ec0eafb2b0093128d5f90529":[4,0,1,4,4,9], +"classdaisy_1_1_midi_usb_transport.html#afbf0c10b19ceb4c6d4f293c5bea5ec0e":[4,0,1,4,4,7], "classdaisy_1_1_mpr121.html":[4,1,9], "classdaisy_1_1_mpr121.html#a00965d1f368fe6acb6e9c3c2be5b04d7":[4,1,9,12], "classdaisy_1_1_mpr121.html#a423dfd228ca7e1304bf449f0559cba84":[4,1,9,3], @@ -244,10 +249,5 @@ var NAVTREEINDEX4 = "classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a5fedb837a5080779850e4fc15285ec24":[4,1,9,1,10], "classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a7a1cfb7091401bf95a1b0d7ca6d52235":[4,1,9,1,7], "classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a807ad93180b47f0ee90d21e60a0ae82f":[4,1,9,1,1], -"classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a84473ee45de5bde4197837b2555724fe":[4,1,9,1,24], -"classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a8963e3a75478e33f625eba239dc67629":[4,1,9,1,2], -"classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a8ef0b8cc6813a612b38a6b22d88d1a48":[4,1,9,1,30], -"classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a91a86c1b1a7a4159d953d38cefe723ee":[4,1,9,1,9], -"classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a94d3b11b9138f6f4213fadcf760524fe":[4,1,9,1,15], -"classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a969b21bef0f769d9b6e235493d2875e6":[4,1,9,1,27] +"classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a84473ee45de5bde4197837b2555724fe":[4,1,9,1,24] }; diff --git a/navtreeindex5.js b/navtreeindex5.js index def364639..1fd0c8c8a 100644 --- a/navtreeindex5.js +++ b/navtreeindex5.js @@ -1,5 +1,10 @@ var NAVTREEINDEX5 = { +"classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a8963e3a75478e33f625eba239dc67629":[4,1,9,1,2], +"classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a8ef0b8cc6813a612b38a6b22d88d1a48":[4,1,9,1,30], +"classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a91a86c1b1a7a4159d953d38cefe723ee":[4,1,9,1,9], +"classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a94d3b11b9138f6f4213fadcf760524fe":[4,1,9,1,15], +"classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a969b21bef0f769d9b6e235493d2875e6":[4,1,9,1,27], "classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a98d7dbbd774fe8b1d46ed4d96dbd7754":[4,1,9,1,17], "classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798aa611799214b98edcc33e88b6943c8ba6":[4,1,9,1,11], "classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798abaf3232cc07540fb422a930ab9d350e7":[4,1,9,1,25], @@ -193,37 +198,37 @@ var NAVTREEINDEX5 = "classdaisy_1_1_oled_display.html#aa2958400309bab0525bedde0822b24fb":[4,0,4,8,5], "classdaisy_1_1_oled_display.html#acbb5c0e9f3c63b5892c4501361a9268d":[4,0,4,8,3], "classdaisy_1_1_oled_display.html#aea1796db0121368cff3d760ed7bc8548":[4,0,4,8,7], -"classdaisy_1_1_one_bit_graphics_display.html":[16,0,0,80], -"classdaisy_1_1_one_bit_graphics_display.html#a0d2a8bb3bebc78ea794180803cbf7089":[16,0,0,80,10], -"classdaisy_1_1_one_bit_graphics_display.html#a0ea638bde2bff96ee10dec0969a7fc56":[16,0,0,80,14], -"classdaisy_1_1_one_bit_graphics_display.html#a19ffcc402319e8cbdbc009949d0a1965":[16,0,0,80,9], -"classdaisy_1_1_one_bit_graphics_display.html#a1f0c60954f72c6d36d87902145db1fe8":[16,0,0,80,20], -"classdaisy_1_1_one_bit_graphics_display.html#a2f7d2cc00f9f9ffc7b0e96d1e4e56381":[16,0,0,80,6], -"classdaisy_1_1_one_bit_graphics_display.html#a5f639b7391b31f023ac1c81e4e0dc7d0":[16,0,0,80,7], -"classdaisy_1_1_one_bit_graphics_display.html#a68796f13e79b6cd9146f8873bbca1af0":[16,0,0,80,16], -"classdaisy_1_1_one_bit_graphics_display.html#a6a8d21de6d8a49b80681cf84476b39b9":[16,0,0,80,15], -"classdaisy_1_1_one_bit_graphics_display.html#a787b511df887ba3fa5f466fddd3d1fc2":[16,0,0,80,8], -"classdaisy_1_1_one_bit_graphics_display.html#a7dd6d08da06bb36a05032f5148681d2f":[16,0,0,80,11], -"classdaisy_1_1_one_bit_graphics_display.html#a7fa0b22cf59787a5685ead819c42d44f":[16,0,0,80,4], -"classdaisy_1_1_one_bit_graphics_display.html#a9087b73bc0d35541ca2d017158d300d4":[16,0,0,80,3], -"classdaisy_1_1_one_bit_graphics_display.html#ab07692b7570fea7b3241afaba70899c8":[16,0,0,80,17], -"classdaisy_1_1_one_bit_graphics_display.html#ab4ad45effd7f8901fae690a8a6aff596":[16,0,0,80,12], -"classdaisy_1_1_one_bit_graphics_display.html#ab877f769f2d9b9f70027beccd9173f50":[16,0,0,80,2], -"classdaisy_1_1_one_bit_graphics_display.html#ac042a3a3cdd4377169db5d108b72e58e":[16,0,0,80,18], -"classdaisy_1_1_one_bit_graphics_display.html#ad084bd298378d612956001569aeb9227":[16,0,0,80,1], -"classdaisy_1_1_one_bit_graphics_display.html#ae261bd2a57f39c379cab0465bddfa9fa":[16,0,0,80,13], -"classdaisy_1_1_one_bit_graphics_display.html#ae5ab428c0eb91a6798f79faab96139b3":[16,0,0,80,0], -"classdaisy_1_1_one_bit_graphics_display.html#ae837bd4e0ce7fe11655324303b3a7cfd":[16,0,0,80,19], -"classdaisy_1_1_one_bit_graphics_display.html#afa0a3190d8bd5aba8d796b3bc8d929f8":[16,0,0,80,5], -"classdaisy_1_1_one_bit_graphics_display_impl.html":[16,0,0,81], -"classdaisy_1_1_one_bit_graphics_display_impl.html#a15c2cea37d85cdba228913546cb659bc":[16,0,0,81,6], -"classdaisy_1_1_one_bit_graphics_display_impl.html#a3db8f23c875296a365c17dfd90acc50e":[16,0,0,81,5], -"classdaisy_1_1_one_bit_graphics_display_impl.html#a60a6508941312b1a434c477ccd37cfb6":[16,0,0,81,0], -"classdaisy_1_1_one_bit_graphics_display_impl.html#a8c78afdc0f05b1b3400bb87ac1b75801":[16,0,0,81,1], -"classdaisy_1_1_one_bit_graphics_display_impl.html#a9ae092d4883df211d4a2ebfeee571a69":[16,0,0,81,7], -"classdaisy_1_1_one_bit_graphics_display_impl.html#ab66752cabb5f46c75d52584d4047bad8":[16,0,0,81,3], -"classdaisy_1_1_one_bit_graphics_display_impl.html#ababfa95bfb894280f844982098852c77":[16,0,0,81,2], -"classdaisy_1_1_one_bit_graphics_display_impl.html#ad6ade3d06a68bb80d09fc0c894941a8c":[16,0,0,81,4], +"classdaisy_1_1_one_bit_graphics_display.html":[16,0,0,81], +"classdaisy_1_1_one_bit_graphics_display.html#a0d2a8bb3bebc78ea794180803cbf7089":[16,0,0,81,10], +"classdaisy_1_1_one_bit_graphics_display.html#a0ea638bde2bff96ee10dec0969a7fc56":[16,0,0,81,14], +"classdaisy_1_1_one_bit_graphics_display.html#a19ffcc402319e8cbdbc009949d0a1965":[16,0,0,81,9], +"classdaisy_1_1_one_bit_graphics_display.html#a1f0c60954f72c6d36d87902145db1fe8":[16,0,0,81,20], +"classdaisy_1_1_one_bit_graphics_display.html#a2f7d2cc00f9f9ffc7b0e96d1e4e56381":[16,0,0,81,6], +"classdaisy_1_1_one_bit_graphics_display.html#a5f639b7391b31f023ac1c81e4e0dc7d0":[16,0,0,81,7], +"classdaisy_1_1_one_bit_graphics_display.html#a68796f13e79b6cd9146f8873bbca1af0":[16,0,0,81,16], +"classdaisy_1_1_one_bit_graphics_display.html#a6a8d21de6d8a49b80681cf84476b39b9":[16,0,0,81,15], +"classdaisy_1_1_one_bit_graphics_display.html#a787b511df887ba3fa5f466fddd3d1fc2":[16,0,0,81,8], +"classdaisy_1_1_one_bit_graphics_display.html#a7dd6d08da06bb36a05032f5148681d2f":[16,0,0,81,11], +"classdaisy_1_1_one_bit_graphics_display.html#a7fa0b22cf59787a5685ead819c42d44f":[16,0,0,81,4], +"classdaisy_1_1_one_bit_graphics_display.html#a9087b73bc0d35541ca2d017158d300d4":[16,0,0,81,3], +"classdaisy_1_1_one_bit_graphics_display.html#ab07692b7570fea7b3241afaba70899c8":[16,0,0,81,17], +"classdaisy_1_1_one_bit_graphics_display.html#ab4ad45effd7f8901fae690a8a6aff596":[16,0,0,81,12], +"classdaisy_1_1_one_bit_graphics_display.html#ab877f769f2d9b9f70027beccd9173f50":[16,0,0,81,2], +"classdaisy_1_1_one_bit_graphics_display.html#ac042a3a3cdd4377169db5d108b72e58e":[16,0,0,81,18], +"classdaisy_1_1_one_bit_graphics_display.html#ad084bd298378d612956001569aeb9227":[16,0,0,81,1], +"classdaisy_1_1_one_bit_graphics_display.html#ae261bd2a57f39c379cab0465bddfa9fa":[16,0,0,81,13], +"classdaisy_1_1_one_bit_graphics_display.html#ae5ab428c0eb91a6798f79faab96139b3":[16,0,0,81,0], +"classdaisy_1_1_one_bit_graphics_display.html#ae837bd4e0ce7fe11655324303b3a7cfd":[16,0,0,81,19], +"classdaisy_1_1_one_bit_graphics_display.html#afa0a3190d8bd5aba8d796b3bc8d929f8":[16,0,0,81,5], +"classdaisy_1_1_one_bit_graphics_display_impl.html":[16,0,0,82], +"classdaisy_1_1_one_bit_graphics_display_impl.html#a15c2cea37d85cdba228913546cb659bc":[16,0,0,82,6], +"classdaisy_1_1_one_bit_graphics_display_impl.html#a3db8f23c875296a365c17dfd90acc50e":[16,0,0,82,5], +"classdaisy_1_1_one_bit_graphics_display_impl.html#a60a6508941312b1a434c477ccd37cfb6":[16,0,0,82,0], +"classdaisy_1_1_one_bit_graphics_display_impl.html#a8c78afdc0f05b1b3400bb87ac1b75801":[16,0,0,82,1], +"classdaisy_1_1_one_bit_graphics_display_impl.html#a9ae092d4883df211d4a2ebfeee571a69":[16,0,0,82,7], +"classdaisy_1_1_one_bit_graphics_display_impl.html#ab66752cabb5f46c75d52584d4047bad8":[16,0,0,82,3], +"classdaisy_1_1_one_bit_graphics_display_impl.html#ababfa95bfb894280f844982098852c77":[16,0,0,82,2], +"classdaisy_1_1_one_bit_graphics_display_impl.html#ad6ade3d06a68bb80d09fc0c894941a8c":[16,0,0,82,4], "classdaisy_1_1_parameter.html":[4,0,1,1,3], "classdaisy_1_1_parameter.html#a0599bc2fa6dae903698de8ee499a0306":[4,0,1,1,3,5], "classdaisy_1_1_parameter.html#a0dc0293e425569511a73c311bfa54f48":[4,0,1,1,3,3], @@ -236,18 +241,13 @@ var NAVTREEINDEX5 = "classdaisy_1_1_parameter.html#a6af6747924f1651e6698a4d72c86532d":[4,0,1,1,3,4], "classdaisy_1_1_parameter.html#ac53e51f76edd3958bc201a8eda419afb":[4,0,1,1,3,1], "classdaisy_1_1_parameter.html#ad29a1b19206bc6568d085ddb4eaa14d9":[4,0,1,1,3,2], -"classdaisy_1_1_pcm3060.html":[16,0,0,83], -"classdaisy_1_1_pcm3060.html#a0be001ee48d6fe05618b7708c2752ad9":[16,0,0,83,2], -"classdaisy_1_1_pcm3060.html#a13c6ad4ee97983297e49fccbb59f0c30":[16,0,0,83,0], -"classdaisy_1_1_pcm3060.html#a13c6ad4ee97983297e49fccbb59f0c30acd22bad976363fdd1bfbf6759fede482":[16,0,0,83,0,1], -"classdaisy_1_1_pcm3060.html#a13c6ad4ee97983297e49fccbb59f0c30ae0aa021e21dddbd6d8cecec71e9cf564":[16,0,0,83,0,0], -"classdaisy_1_1_pcm3060.html#a2cd849186f254f25bdb06f5f73c0beaf":[16,0,0,83,1], -"classdaisy_1_1_pcm3060.html#a40f95112173ba827d160e69215a7cde6":[16,0,0,83,3], -"classdaisy_1_1_persistent_storage.html":[16,0,0,84], -"classdaisy_1_1_persistent_storage.html#a2223d78897ec8511e961bb5803b7b8b4":[16,0,0,84,6], -"classdaisy_1_1_persistent_storage.html#a250a8352eb62ed2db360d89c06d4aa17":[16,0,0,84,4], -"classdaisy_1_1_persistent_storage.html#a681b251e1c1cd8f19d9e667053cfd4dc":[16,0,0,84,3], -"classdaisy_1_1_persistent_storage.html#aa4bc8d085f92ae05ac7abc38b26264d6":[16,0,0,84,1], -"classdaisy_1_1_persistent_storage.html#ad037b48245a7a623741f080ffcc96a42":[16,0,0,84,2], -"classdaisy_1_1_persistent_storage.html#ad48f55bcb2a8b6959c0f4cf7822b0efa":[16,0,0,84,0] +"classdaisy_1_1_pcm3060.html":[16,0,0,84], +"classdaisy_1_1_pcm3060.html#a0be001ee48d6fe05618b7708c2752ad9":[16,0,0,84,2], +"classdaisy_1_1_pcm3060.html#a13c6ad4ee97983297e49fccbb59f0c30":[16,0,0,84,0], +"classdaisy_1_1_pcm3060.html#a13c6ad4ee97983297e49fccbb59f0c30acd22bad976363fdd1bfbf6759fede482":[16,0,0,84,0,1], +"classdaisy_1_1_pcm3060.html#a13c6ad4ee97983297e49fccbb59f0c30ae0aa021e21dddbd6d8cecec71e9cf564":[16,0,0,84,0,0], +"classdaisy_1_1_pcm3060.html#a2cd849186f254f25bdb06f5f73c0beaf":[16,0,0,84,1], +"classdaisy_1_1_pcm3060.html#a40f95112173ba827d160e69215a7cde6":[16,0,0,84,3], +"classdaisy_1_1_persistent_storage.html":[16,0,0,85], +"classdaisy_1_1_persistent_storage.html#a2223d78897ec8511e961bb5803b7b8b4":[16,0,0,85,6] }; diff --git a/navtreeindex6.js b/navtreeindex6.js index 468dcd3ed..a7b34bf7c 100644 --- a/navtreeindex6.js +++ b/navtreeindex6.js @@ -1,9 +1,14 @@ var NAVTREEINDEX6 = { -"classdaisy_1_1_persistent_storage.html#ad48f55bcb2a8b6959c0f4cf7822b0efaa2e40ad879e955201df4dedbf8d479a12":[16,0,0,84,0,2], -"classdaisy_1_1_persistent_storage.html#ad48f55bcb2a8b6959c0f4cf7822b0efaa54d700a7a4d725116036a3e443b8a4df":[16,0,0,84,0,1], -"classdaisy_1_1_persistent_storage.html#ad48f55bcb2a8b6959c0f4cf7822b0efaa696b031073e74bf2cb98e5ef201d4aa3":[16,0,0,84,0,0], -"classdaisy_1_1_persistent_storage.html#ad573b53a242aae9743eea18b93f6e39d":[16,0,0,84,5], +"classdaisy_1_1_persistent_storage.html#a250a8352eb62ed2db360d89c06d4aa17":[16,0,0,85,4], +"classdaisy_1_1_persistent_storage.html#a681b251e1c1cd8f19d9e667053cfd4dc":[16,0,0,85,3], +"classdaisy_1_1_persistent_storage.html#aa4bc8d085f92ae05ac7abc38b26264d6":[16,0,0,85,1], +"classdaisy_1_1_persistent_storage.html#ad037b48245a7a623741f080ffcc96a42":[16,0,0,85,2], +"classdaisy_1_1_persistent_storage.html#ad48f55bcb2a8b6959c0f4cf7822b0efa":[16,0,0,85,0], +"classdaisy_1_1_persistent_storage.html#ad48f55bcb2a8b6959c0f4cf7822b0efaa2e40ad879e955201df4dedbf8d479a12":[16,0,0,85,0,2], +"classdaisy_1_1_persistent_storage.html#ad48f55bcb2a8b6959c0f4cf7822b0efaa54d700a7a4d725116036a3e443b8a4df":[16,0,0,85,0,1], +"classdaisy_1_1_persistent_storage.html#ad48f55bcb2a8b6959c0f4cf7822b0efaa696b031073e74bf2cb98e5ef201d4aa3":[16,0,0,85,0,0], +"classdaisy_1_1_persistent_storage.html#ad573b53a242aae9743eea18b93f6e39d":[16,0,0,85,5], "classdaisy_1_1_pot_monitor.html":[4,0,5,3], "classdaisy_1_1_pot_monitor.html#a20c68cced121ad6151799c95be06c15e":[4,0,5,3,5], "classdaisy_1_1_pot_monitor.html#a3100de81d603dbac5914a1d4cfa26f5f":[4,0,5,3,4], @@ -36,50 +41,50 @@ var NAVTREEINDEX6 = "classdaisy_1_1_random.html":[4,0,6,2], "classdaisy_1_1_random.html#a6e64a8aa94d2314135a58141db36c38b":[4,0,6,2,0], "classdaisy_1_1_random.html#af35ade8b5886cdf4b84f7e37e8989917":[4,0,6,2,1], -"classdaisy_1_1_rectangle.html":[16,0,0,93], -"classdaisy_1_1_rectangle.html#a060a0f8e9d765e0e131824aa95f16cad":[16,0,0,93,34], -"classdaisy_1_1_rectangle.html#a14b990a12ac47e83d933253009b0f61c":[16,0,0,93,26], -"classdaisy_1_1_rectangle.html#a216ea946a71921161793d298ccde67cc":[16,0,0,93,41], -"classdaisy_1_1_rectangle.html#a26a426b03d17f06130d0d511187ada7d":[16,0,0,93,12], -"classdaisy_1_1_rectangle.html#a2a837301ebfaec7871bc6e3b40c81e10":[16,0,0,93,9], -"classdaisy_1_1_rectangle.html#a2aa575526fad150118a17950e4491f15":[16,0,0,93,14], -"classdaisy_1_1_rectangle.html#a2e2b0d5e50b0b1224851a6287087a68d":[16,0,0,93,21], -"classdaisy_1_1_rectangle.html#a3591cd37077f98e06c3e8711a8131520":[16,0,0,93,27], -"classdaisy_1_1_rectangle.html#a3675c54b4a6c68471f95db8d77c02647":[16,0,0,93,31], -"classdaisy_1_1_rectangle.html#a39ac3cccf36cafade673945385c5601b":[16,0,0,93,19], -"classdaisy_1_1_rectangle.html#a39c1f78a66ea44b8000db57ab79ec5a1":[16,0,0,93,10], -"classdaisy_1_1_rectangle.html#a3bd268406f2abc6e11c6c00b4266c2fc":[16,0,0,93,39], -"classdaisy_1_1_rectangle.html#a41bcd42ae3b23cb259e354665ec68678":[16,0,0,93,20], -"classdaisy_1_1_rectangle.html#a4e9b89fca73e8dc1e7938a711e0308df":[16,0,0,93,4], -"classdaisy_1_1_rectangle.html#a57d6e071f9718b48d4a8ce52fbdcf3f2":[16,0,0,93,36], -"classdaisy_1_1_rectangle.html#a5fe610247716deabd714b4ba58435e7d":[16,0,0,93,1], -"classdaisy_1_1_rectangle.html#a6da0bb5fe424d3cde96ac9825117e89b":[16,0,0,93,25], -"classdaisy_1_1_rectangle.html#a6eea3884b558875d5ac7aab86062e2b8":[16,0,0,93,17], -"classdaisy_1_1_rectangle.html#a720b025496622ccbe36b5d218d4f8205":[16,0,0,93,40], -"classdaisy_1_1_rectangle.html#a78ef13a79f81dbdfb0d53ea4d4f39fa1":[16,0,0,93,33], -"classdaisy_1_1_rectangle.html#a7abe1ff9e0b17bab55db686573dc8727":[16,0,0,93,5], -"classdaisy_1_1_rectangle.html#a7f5a2bbf6d94cd8dd937bee79e619e64":[16,0,0,93,16], -"classdaisy_1_1_rectangle.html#a8609526904dc174d4e089ae44147357c":[16,0,0,93,22], -"classdaisy_1_1_rectangle.html#a875e0b0ab17e489ca643db34355dc4d4":[16,0,0,93,3], -"classdaisy_1_1_rectangle.html#a9583df39495f9655e2f01d0842e3c3a8":[16,0,0,93,8], -"classdaisy_1_1_rectangle.html#a973d2a9b19a9f9bb198945e1bf0aaccb":[16,0,0,93,7], -"classdaisy_1_1_rectangle.html#a975458f91d73cc015139b310e92954b8":[16,0,0,93,13], -"classdaisy_1_1_rectangle.html#a9b52bcbd1e9877ae24cffc4a34f88467":[16,0,0,93,29], -"classdaisy_1_1_rectangle.html#a9cba11d030dff444dd6d31dbf6fd9d13":[16,0,0,93,18], -"classdaisy_1_1_rectangle.html#ab0ea69a23eb3e3480efc615407ebea90":[16,0,0,93,6], -"classdaisy_1_1_rectangle.html#ab91210090cfb10b5a0971c8c43d09eb3":[16,0,0,93,2], -"classdaisy_1_1_rectangle.html#abad0d63dfe409f9dbc4f68bc28854c73":[16,0,0,93,32], -"classdaisy_1_1_rectangle.html#abbb19c7290d804a691858fdf223b75a7":[16,0,0,93,11], -"classdaisy_1_1_rectangle.html#abc036c5eb3d2c4bd908fcee7c784c7e8":[16,0,0,93,15], -"classdaisy_1_1_rectangle.html#abf5fe90cb1b629d806b5c90261fde159":[16,0,0,93,28], -"classdaisy_1_1_rectangle.html#ac9867ca9a299dba683fc8eb18d4a8576":[16,0,0,93,24], -"classdaisy_1_1_rectangle.html#ad0bfe51ad42a8233906b700bef4e0118":[16,0,0,93,38], -"classdaisy_1_1_rectangle.html#ad1b0efb38cb1e4b0c18530b420475e19":[16,0,0,93,37], -"classdaisy_1_1_rectangle.html#ad631a7881e52d047acca8d988d09767a":[16,0,0,93,42], -"classdaisy_1_1_rectangle.html#add57d94dbd74607c9039f5285047bd85":[16,0,0,93,35], -"classdaisy_1_1_rectangle.html#ae3fba9711abedffcf9d4dc2af4080571":[16,0,0,93,0], -"classdaisy_1_1_rectangle.html#af8a8ebcbfa4035cede265e9ac05d0728":[16,0,0,93,23], -"classdaisy_1_1_rectangle.html#afdd21f9bde1fe3136ab0e5654093fcad":[16,0,0,93,30], +"classdaisy_1_1_rectangle.html":[16,0,0,94], +"classdaisy_1_1_rectangle.html#a060a0f8e9d765e0e131824aa95f16cad":[16,0,0,94,34], +"classdaisy_1_1_rectangle.html#a14b990a12ac47e83d933253009b0f61c":[16,0,0,94,26], +"classdaisy_1_1_rectangle.html#a216ea946a71921161793d298ccde67cc":[16,0,0,94,41], +"classdaisy_1_1_rectangle.html#a26a426b03d17f06130d0d511187ada7d":[16,0,0,94,12], +"classdaisy_1_1_rectangle.html#a2a837301ebfaec7871bc6e3b40c81e10":[16,0,0,94,9], +"classdaisy_1_1_rectangle.html#a2aa575526fad150118a17950e4491f15":[16,0,0,94,14], +"classdaisy_1_1_rectangle.html#a2e2b0d5e50b0b1224851a6287087a68d":[16,0,0,94,21], +"classdaisy_1_1_rectangle.html#a3591cd37077f98e06c3e8711a8131520":[16,0,0,94,27], +"classdaisy_1_1_rectangle.html#a3675c54b4a6c68471f95db8d77c02647":[16,0,0,94,31], +"classdaisy_1_1_rectangle.html#a39ac3cccf36cafade673945385c5601b":[16,0,0,94,19], +"classdaisy_1_1_rectangle.html#a39c1f78a66ea44b8000db57ab79ec5a1":[16,0,0,94,10], +"classdaisy_1_1_rectangle.html#a3bd268406f2abc6e11c6c00b4266c2fc":[16,0,0,94,39], +"classdaisy_1_1_rectangle.html#a41bcd42ae3b23cb259e354665ec68678":[16,0,0,94,20], +"classdaisy_1_1_rectangle.html#a4e9b89fca73e8dc1e7938a711e0308df":[16,0,0,94,4], +"classdaisy_1_1_rectangle.html#a57d6e071f9718b48d4a8ce52fbdcf3f2":[16,0,0,94,36], +"classdaisy_1_1_rectangle.html#a5fe610247716deabd714b4ba58435e7d":[16,0,0,94,1], +"classdaisy_1_1_rectangle.html#a6da0bb5fe424d3cde96ac9825117e89b":[16,0,0,94,25], +"classdaisy_1_1_rectangle.html#a6eea3884b558875d5ac7aab86062e2b8":[16,0,0,94,17], +"classdaisy_1_1_rectangle.html#a720b025496622ccbe36b5d218d4f8205":[16,0,0,94,40], +"classdaisy_1_1_rectangle.html#a78ef13a79f81dbdfb0d53ea4d4f39fa1":[16,0,0,94,33], +"classdaisy_1_1_rectangle.html#a7abe1ff9e0b17bab55db686573dc8727":[16,0,0,94,5], +"classdaisy_1_1_rectangle.html#a7f5a2bbf6d94cd8dd937bee79e619e64":[16,0,0,94,16], +"classdaisy_1_1_rectangle.html#a8609526904dc174d4e089ae44147357c":[16,0,0,94,22], +"classdaisy_1_1_rectangle.html#a875e0b0ab17e489ca643db34355dc4d4":[16,0,0,94,3], +"classdaisy_1_1_rectangle.html#a9583df39495f9655e2f01d0842e3c3a8":[16,0,0,94,8], +"classdaisy_1_1_rectangle.html#a973d2a9b19a9f9bb198945e1bf0aaccb":[16,0,0,94,7], +"classdaisy_1_1_rectangle.html#a975458f91d73cc015139b310e92954b8":[16,0,0,94,13], +"classdaisy_1_1_rectangle.html#a9b52bcbd1e9877ae24cffc4a34f88467":[16,0,0,94,29], +"classdaisy_1_1_rectangle.html#a9cba11d030dff444dd6d31dbf6fd9d13":[16,0,0,94,18], +"classdaisy_1_1_rectangle.html#ab0ea69a23eb3e3480efc615407ebea90":[16,0,0,94,6], +"classdaisy_1_1_rectangle.html#ab91210090cfb10b5a0971c8c43d09eb3":[16,0,0,94,2], +"classdaisy_1_1_rectangle.html#abad0d63dfe409f9dbc4f68bc28854c73":[16,0,0,94,32], +"classdaisy_1_1_rectangle.html#abbb19c7290d804a691858fdf223b75a7":[16,0,0,94,11], +"classdaisy_1_1_rectangle.html#abc036c5eb3d2c4bd908fcee7c784c7e8":[16,0,0,94,15], +"classdaisy_1_1_rectangle.html#abf5fe90cb1b629d806b5c90261fde159":[16,0,0,94,28], +"classdaisy_1_1_rectangle.html#ac9867ca9a299dba683fc8eb18d4a8576":[16,0,0,94,24], +"classdaisy_1_1_rectangle.html#ad0bfe51ad42a8233906b700bef4e0118":[16,0,0,94,38], +"classdaisy_1_1_rectangle.html#ad1b0efb38cb1e4b0c18530b420475e19":[16,0,0,94,37], +"classdaisy_1_1_rectangle.html#ad631a7881e52d047acca8d988d09767a":[16,0,0,94,42], +"classdaisy_1_1_rectangle.html#add57d94dbd74607c9039f5285047bd85":[16,0,0,94,35], +"classdaisy_1_1_rectangle.html#ae3fba9711abedffcf9d4dc2af4080571":[16,0,0,94,0], +"classdaisy_1_1_rectangle.html#af8a8ebcbfa4035cede265e9ac05d0728":[16,0,0,94,23], +"classdaisy_1_1_rectangle.html#afdd21f9bde1fe3136ab0e5654093fcad":[16,0,0,94,30], "classdaisy_1_1_rgb_led.html":[4,0,1,2,1], "classdaisy_1_1_rgb_led.html#a342c072e678f5df25a8f638a91479d1f":[4,0,1,2,1,3], "classdaisy_1_1_rgb_led.html#a388ef2c8991a9e5fd75fc0d484bf39ad":[4,0,1,2,1,4], @@ -120,46 +125,46 @@ var NAVTREEINDEX6 = "classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#ac5f5954e54efc54d1fedbd8d1526fae8":[4,0,6,7,4], "classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#af813b904145707cef9794fbd8346f066":[4,0,6,7,9], "classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#af9fa6ab897b4df666718664666557c9c":[4,0,6,7,7], -"classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html":[16,0,0,105], -"classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html#a4fad007f2e65a390bcbcbf2c0f442045":[16,0,0,105,3], -"classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html#aadac6fcb157ef83a293f95c2e49dd2b2":[16,0,0,105,2], -"classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html#ac1e762aa00be0d04972c51853b5caa33":[16,0,0,105,1], -"classdaisy_1_1_s_s_d130x4_wire_spi_transport.html":[16,0,0,106], -"classdaisy_1_1_s_s_d130x4_wire_spi_transport.html#a21854c65aa4a415970c1239d86625dfb":[16,0,0,106,2], -"classdaisy_1_1_s_s_d130x4_wire_spi_transport.html#a3cf6194c8dbb92b33fb83becc07903fc":[16,0,0,106,3], -"classdaisy_1_1_s_s_d130x4_wire_spi_transport.html#adfdf96d17c5754ea048e74a179ead274":[16,0,0,106,1], -"classdaisy_1_1_s_s_d130x_driver.html":[16,0,0,107], -"classdaisy_1_1_s_s_d130x_driver.html#a016333b71cda3956f8a47680b7ef6bf7":[16,0,0,107,5], -"classdaisy_1_1_s_s_d130x_driver.html#a0531f737ef8172dd9b6d23cd8f1285e9":[16,0,0,107,3], -"classdaisy_1_1_s_s_d130x_driver.html#a1abfa4aa65a905e9b1d97669bde5057b":[16,0,0,107,2], -"classdaisy_1_1_s_s_d130x_driver.html#a295ff91cde15653954ad4b329766f93e":[16,0,0,107,6], -"classdaisy_1_1_s_s_d130x_driver.html#a47cb4fe280876881fc1f2eb7e3ae8809":[16,0,0,107,4], -"classdaisy_1_1_s_s_d130x_driver.html#aaf41184adec775e3b8340a1d6c2bf3e5":[16,0,0,107,1], -"classdaisy_1_1_s_s_d130x_i2_c_transport.html":[16,0,0,108], -"classdaisy_1_1_s_s_d130x_i2_c_transport.html#aa9b9a2f7fae4b790ac84a53ba7aefd13":[16,0,0,108,1], -"classdaisy_1_1_s_s_d130x_i2_c_transport.html#ab2c26b2726b2c2e6e1bff68e0eb5f1cb":[16,0,0,108,3], -"classdaisy_1_1_s_s_d130x_i2_c_transport.html#ab342105cbc480dfc7c07c387ef449c08":[16,0,0,108,2], -"classdaisy_1_1_sai_handle.html":[16,0,0,98], -"classdaisy_1_1_sai_handle.html#a11626ecc438f4ba0933e93ae730b57ee":[16,0,0,98,14], -"classdaisy_1_1_sai_handle.html#a42e7af475798d4335436e24d5df7cda8":[16,0,0,98,8], -"classdaisy_1_1_sai_handle.html#a49d32d4b42f809606145e93761268e06":[16,0,0,98,6], -"classdaisy_1_1_sai_handle.html#a51ee63d62a611a35242c3dff0b8c32ed":[16,0,0,98,4], -"classdaisy_1_1_sai_handle.html#a5463939a5d7fe1a363cfb9beb602d468":[16,0,0,98,2], -"classdaisy_1_1_sai_handle.html#a5463939a5d7fe1a363cfb9beb602d468acd22bad976363fdd1bfbf6759fede482":[16,0,0,98,2,1], -"classdaisy_1_1_sai_handle.html#a5463939a5d7fe1a363cfb9beb602d468ae0aa021e21dddbd6d8cecec71e9cf564":[16,0,0,98,2,0], -"classdaisy_1_1_sai_handle.html#a5b050e703e5044293be4cd351edd08f7":[16,0,0,98,7], -"classdaisy_1_1_sai_handle.html#a9795690ad8dacb6b9c1d0e8592afa22a":[16,0,0,98,9], -"classdaisy_1_1_sai_handle.html#a99de674d71df2db2e2ee445396c1e6cf":[16,0,0,98,15], -"classdaisy_1_1_sai_handle.html#aa1ece2a2811cd17e7831e993a211316c":[16,0,0,98,3], -"classdaisy_1_1_sai_handle.html#aac337760cd0a689081208684d3771615":[16,0,0,98,10], -"classdaisy_1_1_sai_handle.html#abf1bb17119fb207c3681d02a66e32291":[16,0,0,98,12], -"classdaisy_1_1_sai_handle.html#ac7ca41a3568296357b71b6848d95c69c":[16,0,0,98,1], -"classdaisy_1_1_sai_handle.html#ad3401d091413315141ace6c99121f208":[16,0,0,98,13], -"classdaisy_1_1_sai_handle.html#ae81d7a93aa5f48f643ac157f612c21cd":[16,0,0,98,11], -"classdaisy_1_1_sai_handle.html#afaca8b3df2b5712a942454be4269b747":[16,0,0,98,5], -"classdaisy_1_1_scoped_irq_blocker.html":[16,0,0,99], -"classdaisy_1_1_scoped_irq_blocker.html#a13ed84e1ed7e0abc1c7d8ddd2ac97009":[16,0,0,99,1], -"classdaisy_1_1_scoped_irq_blocker.html#a8a8341344096c1220611f0bca311a329":[16,0,0,99,0], +"classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html":[16,0,0,106], +"classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html#a4fad007f2e65a390bcbcbf2c0f442045":[16,0,0,106,3], +"classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html#aadac6fcb157ef83a293f95c2e49dd2b2":[16,0,0,106,2], +"classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html#ac1e762aa00be0d04972c51853b5caa33":[16,0,0,106,1], +"classdaisy_1_1_s_s_d130x4_wire_spi_transport.html":[16,0,0,107], +"classdaisy_1_1_s_s_d130x4_wire_spi_transport.html#a21854c65aa4a415970c1239d86625dfb":[16,0,0,107,2], +"classdaisy_1_1_s_s_d130x4_wire_spi_transport.html#a3cf6194c8dbb92b33fb83becc07903fc":[16,0,0,107,3], +"classdaisy_1_1_s_s_d130x4_wire_spi_transport.html#adfdf96d17c5754ea048e74a179ead274":[16,0,0,107,1], +"classdaisy_1_1_s_s_d130x_driver.html":[16,0,0,108], +"classdaisy_1_1_s_s_d130x_driver.html#a016333b71cda3956f8a47680b7ef6bf7":[16,0,0,108,5], +"classdaisy_1_1_s_s_d130x_driver.html#a0531f737ef8172dd9b6d23cd8f1285e9":[16,0,0,108,3], +"classdaisy_1_1_s_s_d130x_driver.html#a1abfa4aa65a905e9b1d97669bde5057b":[16,0,0,108,2], +"classdaisy_1_1_s_s_d130x_driver.html#a295ff91cde15653954ad4b329766f93e":[16,0,0,108,6], +"classdaisy_1_1_s_s_d130x_driver.html#a47cb4fe280876881fc1f2eb7e3ae8809":[16,0,0,108,4], +"classdaisy_1_1_s_s_d130x_driver.html#aaf41184adec775e3b8340a1d6c2bf3e5":[16,0,0,108,1], +"classdaisy_1_1_s_s_d130x_i2_c_transport.html":[16,0,0,109], +"classdaisy_1_1_s_s_d130x_i2_c_transport.html#aa9b9a2f7fae4b790ac84a53ba7aefd13":[16,0,0,109,1], +"classdaisy_1_1_s_s_d130x_i2_c_transport.html#ab2c26b2726b2c2e6e1bff68e0eb5f1cb":[16,0,0,109,3], +"classdaisy_1_1_s_s_d130x_i2_c_transport.html#ab342105cbc480dfc7c07c387ef449c08":[16,0,0,109,2], +"classdaisy_1_1_sai_handle.html":[16,0,0,99], +"classdaisy_1_1_sai_handle.html#a11626ecc438f4ba0933e93ae730b57ee":[16,0,0,99,14], +"classdaisy_1_1_sai_handle.html#a42e7af475798d4335436e24d5df7cda8":[16,0,0,99,8], +"classdaisy_1_1_sai_handle.html#a49d32d4b42f809606145e93761268e06":[16,0,0,99,6], +"classdaisy_1_1_sai_handle.html#a51ee63d62a611a35242c3dff0b8c32ed":[16,0,0,99,4], +"classdaisy_1_1_sai_handle.html#a5463939a5d7fe1a363cfb9beb602d468":[16,0,0,99,2], +"classdaisy_1_1_sai_handle.html#a5463939a5d7fe1a363cfb9beb602d468acd22bad976363fdd1bfbf6759fede482":[16,0,0,99,2,1], +"classdaisy_1_1_sai_handle.html#a5463939a5d7fe1a363cfb9beb602d468ae0aa021e21dddbd6d8cecec71e9cf564":[16,0,0,99,2,0], +"classdaisy_1_1_sai_handle.html#a5b050e703e5044293be4cd351edd08f7":[16,0,0,99,7], +"classdaisy_1_1_sai_handle.html#a9795690ad8dacb6b9c1d0e8592afa22a":[16,0,0,99,9], +"classdaisy_1_1_sai_handle.html#a99de674d71df2db2e2ee445396c1e6cf":[16,0,0,99,15], +"classdaisy_1_1_sai_handle.html#aa1ece2a2811cd17e7831e993a211316c":[16,0,0,99,3], +"classdaisy_1_1_sai_handle.html#aac337760cd0a689081208684d3771615":[16,0,0,99,10], +"classdaisy_1_1_sai_handle.html#abf1bb17119fb207c3681d02a66e32291":[16,0,0,99,12], +"classdaisy_1_1_sai_handle.html#ac7ca41a3568296357b71b6848d95c69c":[16,0,0,99,1], +"classdaisy_1_1_sai_handle.html#ad3401d091413315141ace6c99121f208":[16,0,0,99,13], +"classdaisy_1_1_sai_handle.html#ae81d7a93aa5f48f643ac157f612c21cd":[16,0,0,99,11], +"classdaisy_1_1_sai_handle.html#afaca8b3df2b5712a942454be4269b747":[16,0,0,99,5], +"classdaisy_1_1_scoped_irq_blocker.html":[16,0,0,100], +"classdaisy_1_1_scoped_irq_blocker.html#a13ed84e1ed7e0abc1c7d8ddd2ac97009":[16,0,0,100,1], +"classdaisy_1_1_scoped_irq_blocker.html#a8a8341344096c1220611f0bca311a329":[16,0,0,100,0], "classdaisy_1_1_sdmmc_handler.html":[4,0,2,4], "classdaisy_1_1_sdmmc_handler.html#a0e9d9d3b2fdaaa7a26a543383867bfb8":[4,0,2,4,5], "classdaisy_1_1_sdmmc_handler.html#a146e7b69e3d0c1a0c0fae316040d799b":[4,0,2,4,1], @@ -205,31 +210,31 @@ var NAVTREEINDEX6 = "classdaisy_1_1_spi_handle.html#acee8aad7e8008a2dbdfc8f260712bab7":[4,0,2,0,1,4], "classdaisy_1_1_spi_handle.html#acee8aad7e8008a2dbdfc8f260712bab7acd22bad976363fdd1bfbf6759fede482":[4,0,2,0,1,4,1], "classdaisy_1_1_spi_handle.html#acee8aad7e8008a2dbdfc8f260712bab7ae0aa021e21dddbd6d8cecec71e9cf564":[4,0,2,0,1,4,0], -"classdaisy_1_1_stack.html":[16,0,0,109], -"classdaisy_1_1_stack.html#ac64eead92237e6ad10158920b0a99403":[16,0,0,109,0], -"classdaisy_1_1_stack.html#ac748320726685d136f15e2e61d692e59":[16,0,0,109,2], -"classdaisy_1_1_stack.html#ad2d0dc383669108bd0fea624941fd9b7":[16,0,0,109,1], -"classdaisy_1_1_stack.html#afe94131ffa8cf37c62525103f023d833":[16,0,0,109,3], -"classdaisy_1_1_stack_base.html":[16,0,0,110], -"classdaisy_1_1_stack_base.html#a07a8081a67c3edb3882710e98f224183":[16,0,0,110,13], -"classdaisy_1_1_stack_base.html#a0aca4cedbec62035867fff63a2be529f":[16,0,0,110,17], -"classdaisy_1_1_stack_base.html#a0b7176df71ffc6a47e298c73f5236ebf":[16,0,0,110,2], -"classdaisy_1_1_stack_base.html#a437a09bd7bfb03f8e06e633edbab8604":[16,0,0,110,15], -"classdaisy_1_1_stack_base.html#a5c246e49801ddb0c162567a6cdc84a58":[16,0,0,110,18], -"classdaisy_1_1_stack_base.html#a5e8792111c7bf05b6bc6249bda302951":[16,0,0,110,8], -"classdaisy_1_1_stack_base.html#a5e93e61d2152f996c9300fb10ed2dccd":[16,0,0,110,7], -"classdaisy_1_1_stack_base.html#a688438b8a70832061ee28b42274ab160":[16,0,0,110,0], -"classdaisy_1_1_stack_base.html#a811af30f59c04cfde82041088b1f4536":[16,0,0,110,11], -"classdaisy_1_1_stack_base.html#a8939e78d29ff2400535a367bc400e111":[16,0,0,110,14], -"classdaisy_1_1_stack_base.html#a9258967ba9f613b9759b20b888ea3b48":[16,0,0,110,6], -"classdaisy_1_1_stack_base.html#aa4eaead121c9f5dd1aad70a5b4fdf715":[16,0,0,110,12], -"classdaisy_1_1_stack_base.html#aa5e2ce929c3b361dc581be58f506f245":[16,0,0,110,16], -"classdaisy_1_1_stack_base.html#ab0bd440696640c163ab14e28165454c9":[16,0,0,110,9], -"classdaisy_1_1_stack_base.html#ab6bfc4201969c59db5e5365200243d89":[16,0,0,110,4], -"classdaisy_1_1_stack_base.html#af0433fae1f1755fd0346b669045ecf3d":[16,0,0,110,5], -"classdaisy_1_1_stack_base.html#af63e0baa7152c641c00fc2a51fa95847":[16,0,0,110,3], -"classdaisy_1_1_stack_base.html#afb33382096c3e4f80d410916220191e8":[16,0,0,110,1], -"classdaisy_1_1_stack_base.html#aff76243c27fd8bdfb0f768d0ad1ae0ed":[16,0,0,110,10], +"classdaisy_1_1_stack.html":[16,0,0,110], +"classdaisy_1_1_stack.html#ac64eead92237e6ad10158920b0a99403":[16,0,0,110,0], +"classdaisy_1_1_stack.html#ac748320726685d136f15e2e61d692e59":[16,0,0,110,2], +"classdaisy_1_1_stack.html#ad2d0dc383669108bd0fea624941fd9b7":[16,0,0,110,1], +"classdaisy_1_1_stack.html#afe94131ffa8cf37c62525103f023d833":[16,0,0,110,3], +"classdaisy_1_1_stack_base.html":[16,0,0,111], +"classdaisy_1_1_stack_base.html#a07a8081a67c3edb3882710e98f224183":[16,0,0,111,13], +"classdaisy_1_1_stack_base.html#a0aca4cedbec62035867fff63a2be529f":[16,0,0,111,17], +"classdaisy_1_1_stack_base.html#a0b7176df71ffc6a47e298c73f5236ebf":[16,0,0,111,2], +"classdaisy_1_1_stack_base.html#a437a09bd7bfb03f8e06e633edbab8604":[16,0,0,111,15], +"classdaisy_1_1_stack_base.html#a5c246e49801ddb0c162567a6cdc84a58":[16,0,0,111,18], +"classdaisy_1_1_stack_base.html#a5e8792111c7bf05b6bc6249bda302951":[16,0,0,111,8], +"classdaisy_1_1_stack_base.html#a5e93e61d2152f996c9300fb10ed2dccd":[16,0,0,111,7], +"classdaisy_1_1_stack_base.html#a688438b8a70832061ee28b42274ab160":[16,0,0,111,0], +"classdaisy_1_1_stack_base.html#a811af30f59c04cfde82041088b1f4536":[16,0,0,111,11], +"classdaisy_1_1_stack_base.html#a8939e78d29ff2400535a367bc400e111":[16,0,0,111,14], +"classdaisy_1_1_stack_base.html#a9258967ba9f613b9759b20b888ea3b48":[16,0,0,111,6], +"classdaisy_1_1_stack_base.html#aa4eaead121c9f5dd1aad70a5b4fdf715":[16,0,0,111,12], +"classdaisy_1_1_stack_base.html#aa5e2ce929c3b361dc581be58f506f245":[16,0,0,111,16], +"classdaisy_1_1_stack_base.html#ab0bd440696640c163ab14e28165454c9":[16,0,0,111,9], +"classdaisy_1_1_stack_base.html#ab6bfc4201969c59db5e5365200243d89":[16,0,0,111,4], +"classdaisy_1_1_stack_base.html#af0433fae1f1755fd0346b669045ecf3d":[16,0,0,111,5], +"classdaisy_1_1_stack_base.html#af63e0baa7152c641c00fc2a51fa95847":[16,0,0,111,3], +"classdaisy_1_1_stack_base.html#afb33382096c3e4f80d410916220191e8":[16,0,0,111,1], +"classdaisy_1_1_stack_base.html#aff76243c27fd8bdfb0f768d0ad1ae0ed":[16,0,0,111,10], "classdaisy_1_1_switch.html":[4,0,1,1,4], "classdaisy_1_1_switch.html#a40c083b0e9e30e878723cd985bc4ec2a":[4,0,1,1,4,8], "classdaisy_1_1_switch.html#a564849b2de31395dda3cb464a65c5a24":[4,0,1,1,4,5], @@ -244,10 +249,5 @@ var NAVTREEINDEX6 = "classdaisy_1_1_switch.html#a9b690946462b81edba1feace3625bc64":[4,0,1,1,4,12], "classdaisy_1_1_switch.html#aa6c26cb923638a248a1d8d3cb1755e51":[4,0,1,1,4,1], "classdaisy_1_1_switch.html#aa6c26cb923638a248a1d8d3cb1755e51a1f6f843c9fc60e6d00e2cbcbe97bbe8d":[4,0,1,1,4,1,0], -"classdaisy_1_1_switch.html#aa6c26cb923638a248a1d8d3cb1755e51a2ea8b603f1a3f5864f2f5a40a09be347":[4,0,1,1,4,1,2], -"classdaisy_1_1_switch.html#aa6c26cb923638a248a1d8d3cb1755e51aec89c3f7c267f0eaacd65441ef854bca":[4,0,1,1,4,1,1], -"classdaisy_1_1_switch.html#abe39a637bc58c3f5cbbaf5ffaaece7a9":[4,0,1,1,4,9], -"classdaisy_1_1_switch.html#ad14a8ae20033d940d6c9eeb03c1385b8":[4,0,1,1,4,3], -"classdaisy_1_1_switch.html#ad41940a1ce698fd80fedb01ceaa240fa":[4,0,1,1,4,6], -"classdaisy_1_1_switch.html#aef37136dd1b4cd077ef82a0f62bcfa3d":[4,0,1,1,4,0] +"classdaisy_1_1_switch.html#aa6c26cb923638a248a1d8d3cb1755e51a2ea8b603f1a3f5864f2f5a40a09be347":[4,0,1,1,4,1,2] }; diff --git a/navtreeindex7.js b/navtreeindex7.js index e082d919a..9d784a33c 100644 --- a/navtreeindex7.js +++ b/navtreeindex7.js @@ -1,12 +1,17 @@ var NAVTREEINDEX7 = { +"classdaisy_1_1_switch.html#aa6c26cb923638a248a1d8d3cb1755e51aec89c3f7c267f0eaacd65441ef854bca":[4,0,1,1,4,1,1], +"classdaisy_1_1_switch.html#abe39a637bc58c3f5cbbaf5ffaaece7a9":[4,0,1,1,4,9], +"classdaisy_1_1_switch.html#ad14a8ae20033d940d6c9eeb03c1385b8":[4,0,1,1,4,3], +"classdaisy_1_1_switch.html#ad41940a1ce698fd80fedb01ceaa240fa":[4,0,1,1,4,6], +"classdaisy_1_1_switch.html#aef37136dd1b4cd077ef82a0f62bcfa3d":[4,0,1,1,4,0], "classdaisy_1_1_switch.html#aef37136dd1b4cd077ef82a0f62bcfa3da6a67d181b4de52438ae5109bd9cfec63":[4,0,1,1,4,0,1], "classdaisy_1_1_switch.html#aef37136dd1b4cd077ef82a0f62bcfa3daca3b7fb0df13cde6adfeefc3f1f45e68":[4,0,1,1,4,0,0], -"classdaisy_1_1_switch3.html":[16,0,0,112], -"classdaisy_1_1_switch3.html#a4fd5caa658851e7732d9a9e3cc200556":[16,0,0,112,3], -"classdaisy_1_1_switch3.html#a7d1b5b64a03773fae37ed0de0e861aa3":[16,0,0,112,2], -"classdaisy_1_1_switch3.html#a913db214526f97cc7ae0121c85aedcb2":[16,0,0,112,0], -"classdaisy_1_1_switch3.html#afa972e7c993a8dd72f59e61aa6b4b83f":[16,0,0,112,1], +"classdaisy_1_1_switch3.html":[16,0,0,113], +"classdaisy_1_1_switch3.html#a4fd5caa658851e7732d9a9e3cc200556":[16,0,0,113,3], +"classdaisy_1_1_switch3.html#a7d1b5b64a03773fae37ed0de0e861aa3":[16,0,0,113,2], +"classdaisy_1_1_switch3.html#a913db214526f97cc7ae0121c85aedcb2":[16,0,0,113,0], +"classdaisy_1_1_switch3.html#afa972e7c993a8dd72f59e61aa6b4b83f":[16,0,0,113,1], "classdaisy_1_1_system.html":[4,0,3,0], "classdaisy_1_1_system.html#a1662ffb07d4098995be06bea9b502b24":[4,0,3,0,2], "classdaisy_1_1_system.html#a17ca63fdd1043c8509e467073b5fd497":[4,0,3,0,7], @@ -25,30 +30,30 @@ var NAVTREEINDEX7 = "classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669acb5c0093d737a657615442a569fad20a":[4,0,3,0,1,2], "classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669aeeda8641a23188a815fd86a377be2af3":[4,0,3,0,1,0], "classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669af3029fd41f361aa87aaad722bf09cb64":[4,0,3,0,1,8], -"classdaisy_1_1_timer_handle.html":[16,0,0,115], -"classdaisy_1_1_timer_handle.html#a00c499385a68755b49569c3149c0c603":[16,0,0,115,13], -"classdaisy_1_1_timer_handle.html#a0e11c2b05fbd0c6e1cac5d3babe79453":[16,0,0,115,18], -"classdaisy_1_1_timer_handle.html#a1016ea27b193aeb40f1d9d199dcbc2e1":[16,0,0,115,20], -"classdaisy_1_1_timer_handle.html#a14970bd2fa7b0e6a21bfa08c60644c3c":[16,0,0,115,9], -"classdaisy_1_1_timer_handle.html#a279bb0b7fb44ce22e9d80a21e918849f":[16,0,0,115,11], -"classdaisy_1_1_timer_handle.html#a2de6e71643b039cbe7e48bb103b61d00":[16,0,0,115,12], -"classdaisy_1_1_timer_handle.html#a31742af4d164ed7787ffba2c95158ef9":[16,0,0,115,1], -"classdaisy_1_1_timer_handle.html#a371b05e9ff969c35e6daf2b8c1fa1d0e":[16,0,0,115,21], -"classdaisy_1_1_timer_handle.html#a531b75a2a21aa12def4de1355cf49e19":[16,0,0,115,7], -"classdaisy_1_1_timer_handle.html#a5e883d1f86de26c5bf0b4af485053bdc":[16,0,0,115,16], -"classdaisy_1_1_timer_handle.html#a6a3a083902c7b5fbfc431242d60571f4":[16,0,0,115,17], -"classdaisy_1_1_timer_handle.html#a6e866706cca6b8fd05ece9c744c76873":[16,0,0,115,5], -"classdaisy_1_1_timer_handle.html#a71c45c619e1437f7fe59167ef9161298":[16,0,0,115,6], -"classdaisy_1_1_timer_handle.html#a7425f809b115688f70d7a12acd5a16c7":[16,0,0,115,2], -"classdaisy_1_1_timer_handle.html#a7425f809b115688f70d7a12acd5a16c7acd22bad976363fdd1bfbf6759fede482":[16,0,0,115,2,1], -"classdaisy_1_1_timer_handle.html#a7425f809b115688f70d7a12acd5a16c7ae0aa021e21dddbd6d8cecec71e9cf564":[16,0,0,115,2,0], -"classdaisy_1_1_timer_handle.html#a7cb125e49d81148db5707fd3916db5bb":[16,0,0,115,3], -"classdaisy_1_1_timer_handle.html#aa22a2290d5fb0cc957dc5b06ce21789b":[16,0,0,115,14], -"classdaisy_1_1_timer_handle.html#aadbb2bcfa6fd675de3f5510bd8a6b6a7":[16,0,0,115,8], -"classdaisy_1_1_timer_handle.html#ace505f2c685767f7e9dbb39172646c4e":[16,0,0,115,15], -"classdaisy_1_1_timer_handle.html#ad16c26e54693e61f4b619a03a4e3de05":[16,0,0,115,4], -"classdaisy_1_1_timer_handle.html#aeab69c0b8cd73cf438bc056786cc00f6":[16,0,0,115,19], -"classdaisy_1_1_timer_handle.html#af2796e88423bdc1595731ab4c8938439":[16,0,0,115,10], +"classdaisy_1_1_timer_handle.html":[16,0,0,116], +"classdaisy_1_1_timer_handle.html#a00c499385a68755b49569c3149c0c603":[16,0,0,116,13], +"classdaisy_1_1_timer_handle.html#a0e11c2b05fbd0c6e1cac5d3babe79453":[16,0,0,116,18], +"classdaisy_1_1_timer_handle.html#a1016ea27b193aeb40f1d9d199dcbc2e1":[16,0,0,116,20], +"classdaisy_1_1_timer_handle.html#a14970bd2fa7b0e6a21bfa08c60644c3c":[16,0,0,116,9], +"classdaisy_1_1_timer_handle.html#a279bb0b7fb44ce22e9d80a21e918849f":[16,0,0,116,11], +"classdaisy_1_1_timer_handle.html#a2de6e71643b039cbe7e48bb103b61d00":[16,0,0,116,12], +"classdaisy_1_1_timer_handle.html#a31742af4d164ed7787ffba2c95158ef9":[16,0,0,116,1], +"classdaisy_1_1_timer_handle.html#a371b05e9ff969c35e6daf2b8c1fa1d0e":[16,0,0,116,21], +"classdaisy_1_1_timer_handle.html#a531b75a2a21aa12def4de1355cf49e19":[16,0,0,116,7], +"classdaisy_1_1_timer_handle.html#a5e883d1f86de26c5bf0b4af485053bdc":[16,0,0,116,16], +"classdaisy_1_1_timer_handle.html#a6a3a083902c7b5fbfc431242d60571f4":[16,0,0,116,17], +"classdaisy_1_1_timer_handle.html#a6e866706cca6b8fd05ece9c744c76873":[16,0,0,116,5], +"classdaisy_1_1_timer_handle.html#a71c45c619e1437f7fe59167ef9161298":[16,0,0,116,6], +"classdaisy_1_1_timer_handle.html#a7425f809b115688f70d7a12acd5a16c7":[16,0,0,116,2], +"classdaisy_1_1_timer_handle.html#a7425f809b115688f70d7a12acd5a16c7acd22bad976363fdd1bfbf6759fede482":[16,0,0,116,2,1], +"classdaisy_1_1_timer_handle.html#a7425f809b115688f70d7a12acd5a16c7ae0aa021e21dddbd6d8cecec71e9cf564":[16,0,0,116,2,0], +"classdaisy_1_1_timer_handle.html#a7cb125e49d81148db5707fd3916db5bb":[16,0,0,116,3], +"classdaisy_1_1_timer_handle.html#aa22a2290d5fb0cc957dc5b06ce21789b":[16,0,0,116,14], +"classdaisy_1_1_timer_handle.html#aadbb2bcfa6fd675de3f5510bd8a6b6a7":[16,0,0,116,8], +"classdaisy_1_1_timer_handle.html#ace505f2c685767f7e9dbb39172646c4e":[16,0,0,116,15], +"classdaisy_1_1_timer_handle.html#ad16c26e54693e61f4b619a03a4e3de05":[16,0,0,116,4], +"classdaisy_1_1_timer_handle.html#aeab69c0b8cd73cf438bc056786cc00f6":[16,0,0,116,19], +"classdaisy_1_1_timer_handle.html#af2796e88423bdc1595731ab4c8938439":[16,0,0,116,10], "classdaisy_1_1_tlv493d.html":[4,1,15], "classdaisy_1_1_tlv493d.html#a0579bf94f72401d85047b2f06fb0c5a6":[4,1,15,18], "classdaisy_1_1_tlv493d.html#a10c8eb11494135a3530b185503b6ab51":[4,1,15,23], @@ -127,57 +132,52 @@ var NAVTREEINDEX7 = "classdaisy_1_1_u_i.html#ac1ffddf7c1b8d91c41077441c455163a":[4,0,5,6,9], "classdaisy_1_1_u_i.html#acec12dd1310939a703562c0d5e75e2aa":[4,0,5,6,8], "classdaisy_1_1_u_i.html#ad76cd8102183e7567d2b1bde4f394bee":[4,0,5,6,3], -"classdaisy_1_1_u_s_b_host_handle.html":[16,0,0,123], -"classdaisy_1_1_u_s_b_host_handle.html#a0120e222d56d7546d28810c55fe562b2":[16,0,0,123,12], -"classdaisy_1_1_u_s_b_host_handle.html#a12043e36043180b52f73bf096d0f0833":[16,0,0,123,6], -"classdaisy_1_1_u_s_b_host_handle.html#a20ea1f4d2e2cfc3f749364b1dc5c9b73":[16,0,0,123,7], -"classdaisy_1_1_u_s_b_host_handle.html#a23eacd86f01a56142e60108ba8a381a8":[16,0,0,123,13], -"classdaisy_1_1_u_s_b_host_handle.html#a271a5fe3869cae850c6422a964c8e005":[16,0,0,123,2], -"classdaisy_1_1_u_s_b_host_handle.html#a369f062c8add67f2f6963bb87286d6ed":[16,0,0,123,14], -"classdaisy_1_1_u_s_b_host_handle.html#a3762ad32c165180cad9acd5d108a81bc":[16,0,0,123,4], -"classdaisy_1_1_u_s_b_host_handle.html#a3efc40d3a6a6ef516328e1744640d887":[16,0,0,123,9], -"classdaisy_1_1_u_s_b_host_handle.html#a4fad5644a1e1b85f2cbfc27780f65058":[16,0,0,123,1], -"classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113":[16,0,0,123,5], -"classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113a5343bcd21aad65124478a61831f6949e":[16,0,0,123,5,3], -"classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113a802706a9238e2928077f97736854bad4":[16,0,0,123,5,1], -"classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113ac2759effffc94bb9acc71d69fe3e8a1f":[16,0,0,123,5,2], -"classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113acb2fa42fb45da8593f07308e7323defd":[16,0,0,123,5,5], -"classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113ae0aa021e21dddbd6d8cecec71e9cf564":[16,0,0,123,5,0], -"classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113afa82888fbd6d765071e644258483d9f0":[16,0,0,123,5,4], -"classdaisy_1_1_u_s_b_host_handle.html#a906b4c9eded70d661f9670ec0f04cd25":[16,0,0,123,3], -"classdaisy_1_1_u_s_b_host_handle.html#aaf6e11074b3f982dc723bb014ceb1390":[16,0,0,123,11], -"classdaisy_1_1_u_s_b_host_handle.html#ac9fa7017546be9ab038a5100b7f7483e":[16,0,0,123,10], -"classdaisy_1_1_u_s_b_host_handle.html#acb7c3bbcfa35120d737cd97de448986a":[16,0,0,123,8], +"classdaisy_1_1_u_s_b_host_handle.html":[16,0,0,124], +"classdaisy_1_1_u_s_b_host_handle.html#a0120e222d56d7546d28810c55fe562b2":[16,0,0,124,12], +"classdaisy_1_1_u_s_b_host_handle.html#a12043e36043180b52f73bf096d0f0833":[16,0,0,124,6], +"classdaisy_1_1_u_s_b_host_handle.html#a20ea1f4d2e2cfc3f749364b1dc5c9b73":[16,0,0,124,7], +"classdaisy_1_1_u_s_b_host_handle.html#a23eacd86f01a56142e60108ba8a381a8":[16,0,0,124,13], +"classdaisy_1_1_u_s_b_host_handle.html#a271a5fe3869cae850c6422a964c8e005":[16,0,0,124,2], +"classdaisy_1_1_u_s_b_host_handle.html#a369f062c8add67f2f6963bb87286d6ed":[16,0,0,124,14], +"classdaisy_1_1_u_s_b_host_handle.html#a3762ad32c165180cad9acd5d108a81bc":[16,0,0,124,4], +"classdaisy_1_1_u_s_b_host_handle.html#a3efc40d3a6a6ef516328e1744640d887":[16,0,0,124,9], +"classdaisy_1_1_u_s_b_host_handle.html#a4fad5644a1e1b85f2cbfc27780f65058":[16,0,0,124,1], +"classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113":[16,0,0,124,5], +"classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113a5343bcd21aad65124478a61831f6949e":[16,0,0,124,5,3], +"classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113a802706a9238e2928077f97736854bad4":[16,0,0,124,5,1], +"classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113ac2759effffc94bb9acc71d69fe3e8a1f":[16,0,0,124,5,2], +"classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113acb2fa42fb45da8593f07308e7323defd":[16,0,0,124,5,5], +"classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113ae0aa021e21dddbd6d8cecec71e9cf564":[16,0,0,124,5,0], +"classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113afa82888fbd6d765071e644258483d9f0":[16,0,0,124,5,4], +"classdaisy_1_1_u_s_b_host_handle.html#a906b4c9eded70d661f9670ec0f04cd25":[16,0,0,124,3], +"classdaisy_1_1_u_s_b_host_handle.html#aaf6e11074b3f982dc723bb014ceb1390":[16,0,0,124,11], +"classdaisy_1_1_u_s_b_host_handle.html#ac9fa7017546be9ab038a5100b7f7483e":[16,0,0,124,10], +"classdaisy_1_1_u_s_b_host_handle.html#acb7c3bbcfa35120d737cd97de448986a":[16,0,0,124,8], "classdaisy_1_1_uart_handler.html":[4,0,2,0,3], -"classdaisy_1_1_uart_handler.html#a07c27d8f78518caed8bc2485986b456a":[4,0,2,0,3,11], -"classdaisy_1_1_uart_handler.html#a1bdc706fd2e8994889a713bb0ac72c67":[4,0,2,0,3,1], -"classdaisy_1_1_uart_handler.html#a1c5ad164edfdc32a8f01d9044657b9ed":[4,0,2,0,3,8], -"classdaisy_1_1_uart_handler.html#a24098e17a8be0b1b2a229f1959c941db":[4,0,2,0,3,25], -"classdaisy_1_1_uart_handler.html#a4565d3868c0d92e6955da3416c309cad":[4,0,2,0,3,12], -"classdaisy_1_1_uart_handler.html#a4b8cad10b4f9a9520d2248c567babcc1":[4,0,2,0,3,22], -"classdaisy_1_1_uart_handler.html#a4e2b04c72be034995175ec3d1229815d":[4,0,2,0,3,13], +"classdaisy_1_1_uart_handler.html#a1bdc706fd2e8994889a713bb0ac72c67":[4,0,2,0,3,2], +"classdaisy_1_1_uart_handler.html#a1c5ad164edfdc32a8f01d9044657b9ed":[4,0,2,0,3,9], +"classdaisy_1_1_uart_handler.html#a4565d3868c0d92e6955da3416c309cad":[4,0,2,0,3,14], +"classdaisy_1_1_uart_handler.html#a47f395c1ae6530b8b497c8fd76cb6d59":[4,0,2,0,3,17], +"classdaisy_1_1_uart_handler.html#a4dc3e5abdb8cd03db80eaef2b2332876":[4,0,2,0,3,11], "classdaisy_1_1_uart_handler.html#a62a56c23285f8c6106a45ae2547e423d":[4,0,2,0,3,15], -"classdaisy_1_1_uart_handler.html#a673f1aa44d7ebc875078623e7a49becd":[4,0,2,0,3,6], -"classdaisy_1_1_uart_handler.html#a67b4d9b8492cff01abcd79b57cacebec":[4,0,2,0,3,2], -"classdaisy_1_1_uart_handler.html#a8282a20746be60a208cde90a8eea1529":[4,0,2,0,3,14], -"classdaisy_1_1_uart_handler.html#a9505926532bf44f70216b52d45db549a":[4,0,2,0,3,19], -"classdaisy_1_1_uart_handler.html#a9641f3808cf70559d3d988f5ae8e254c":[4,0,2,0,3,18], +"classdaisy_1_1_uart_handler.html#a673f1aa44d7ebc875078623e7a49becd":[4,0,2,0,3,7], +"classdaisy_1_1_uart_handler.html#a67b4d9b8492cff01abcd79b57cacebec":[4,0,2,0,3,3], +"classdaisy_1_1_uart_handler.html#a9505926532bf44f70216b52d45db549a":[4,0,2,0,3,20], +"classdaisy_1_1_uart_handler.html#a95993666d3498111f123382022967946":[4,0,2,0,3,1], +"classdaisy_1_1_uart_handler.html#a9641f3808cf70559d3d988f5ae8e254c":[4,0,2,0,3,19], "classdaisy_1_1_uart_handler.html#aa25c871d2fb9d382ef779ba92b4d2ada":[4,0,2,0,3,16], -"classdaisy_1_1_uart_handler.html#aae17dba49d39995a4aa3eaa3c809b66d":[4,0,2,0,3,7], -"classdaisy_1_1_uart_handler.html#ac3af4732fb0a31c38d182248e80413a2":[4,0,2,0,3,23], -"classdaisy_1_1_uart_handler.html#ac45c7ac82e6f0328b4e7b03fd12e7237":[4,0,2,0,3,4], -"classdaisy_1_1_uart_handler.html#ac45c7ac82e6f0328b4e7b03fd12e7237acd22bad976363fdd1bfbf6759fede482":[4,0,2,0,3,4,1], -"classdaisy_1_1_uart_handler.html#ac45c7ac82e6f0328b4e7b03fd12e7237ae0aa021e21dddbd6d8cecec71e9cf564":[4,0,2,0,3,4,0], -"classdaisy_1_1_uart_handler.html#ace6ce8a8fe979bbbd9fc7fe4e79eb520":[4,0,2,0,3,5], -"classdaisy_1_1_uart_handler.html#ada2266b23e77dde305b229b7814604fe":[4,0,2,0,3,9], -"classdaisy_1_1_uart_handler.html#adbdfbf1dfaab99cf76ac7ca36d22cf00":[4,0,2,0,3,3], -"classdaisy_1_1_uart_handler.html#adbdfbf1dfaab99cf76ac7ca36d22cf00a869036c9d97cf6593c6f1c2ccfd99a49":[4,0,2,0,3,3,1], -"classdaisy_1_1_uart_handler.html#adbdfbf1dfaab99cf76ac7ca36d22cf00af9c24782c24c237d16e79f18e2fa9046":[4,0,2,0,3,3,0], -"classdaisy_1_1_uart_handler.html#ae28345bdf7d66aa891bbde3cf8c68057":[4,0,2,0,3,21], -"classdaisy_1_1_uart_handler.html#ae2dcb235ccfbf9a16d059edaf4e6499a":[4,0,2,0,3,20], -"classdaisy_1_1_uart_handler.html#ae66075f4115e163b12fffae1b9896f42":[4,0,2,0,3,17], -"classdaisy_1_1_uart_handler.html#aeeb804c58c2ccf574142b2a030d2d83b":[4,0,2,0,3,24], -"classdaisy_1_1_uart_handler.html#afd959cfbc7efbc2a0357185da61a4ba6":[4,0,2,0,3,10], +"classdaisy_1_1_uart_handler.html#aae17dba49d39995a4aa3eaa3c809b66d":[4,0,2,0,3,8], +"classdaisy_1_1_uart_handler.html#ab46af079191f4ece2c046ac9b9eded4a":[4,0,2,0,3,12], +"classdaisy_1_1_uart_handler.html#ac45c7ac82e6f0328b4e7b03fd12e7237":[4,0,2,0,3,5], +"classdaisy_1_1_uart_handler.html#ac45c7ac82e6f0328b4e7b03fd12e7237acd22bad976363fdd1bfbf6759fede482":[4,0,2,0,3,5,1], +"classdaisy_1_1_uart_handler.html#ac45c7ac82e6f0328b4e7b03fd12e7237ae0aa021e21dddbd6d8cecec71e9cf564":[4,0,2,0,3,5,0], +"classdaisy_1_1_uart_handler.html#ace6ce8a8fe979bbbd9fc7fe4e79eb520":[4,0,2,0,3,6], +"classdaisy_1_1_uart_handler.html#ada2266b23e77dde305b229b7814604fe":[4,0,2,0,3,10], +"classdaisy_1_1_uart_handler.html#adbdfbf1dfaab99cf76ac7ca36d22cf00":[4,0,2,0,3,4], +"classdaisy_1_1_uart_handler.html#adbdfbf1dfaab99cf76ac7ca36d22cf00a869036c9d97cf6593c6f1c2ccfd99a49":[4,0,2,0,3,4,1], +"classdaisy_1_1_uart_handler.html#adbdfbf1dfaab99cf76ac7ca36d22cf00af9c24782c24c237d16e79f18e2fa9046":[4,0,2,0,3,4,0], +"classdaisy_1_1_uart_handler.html#ae66075f4115e163b12fffae1b9896f42":[4,0,2,0,3,18], +"classdaisy_1_1_uart_handler.html#afd959cfbc7efbc2a0357185da61a4ba6":[4,0,2,0,3,13], "classdaisy_1_1_ui_event_queue.html":[4,0,5,7], "classdaisy_1_1_ui_event_queue.html#a38f27e24c66d1f0f5104d3b89f7173f6":[4,0,5,7,2], "classdaisy_1_1_ui_event_queue.html#a4c2f92968e33fef6a7ad89f93827fda7":[4,0,5,7,5], @@ -220,34 +220,34 @@ var NAVTREEINDEX7 = "classdaisy_1_1_ui_page.html#af2bfd4235b5e704c93350162b5ab1b5b":[4,0,5,5,23], "classdaisy_1_1_ui_page.html#af62d35877c8c619ccd7f96330728ba33":[4,0,5,5,21], "classdaisy_1_1_ui_page.html#af8170cc6a9fff559acb4d725f0503bd3":[4,0,5,5,8], -"classdaisy_1_1_voct_calibration.html":[16,0,0,124], -"classdaisy_1_1_voct_calibration.html#a2de4f82138921ace41e1ca4e4aa2d26e":[16,0,0,124,2], -"classdaisy_1_1_voct_calibration.html#a900865bfcc294d80a9ea687e79a149e1":[16,0,0,124,1], -"classdaisy_1_1_voct_calibration.html#a9cc66906bc44a5a636634d1bb95c413d":[16,0,0,124,0], -"classdaisy_1_1_voct_calibration.html#aaaf0c5e195d9fd5c1ef0a727ffdcccfc":[16,0,0,124,5], -"classdaisy_1_1_voct_calibration.html#ac37f603d0ac2c973bd453e673c290c32":[16,0,0,124,3], -"classdaisy_1_1_voct_calibration.html#ad793014c6d82e680aa337fb23e13608d":[16,0,0,124,4], -"classdaisy_1_1_wav_player.html":[16,0,0,128], -"classdaisy_1_1_wav_player.html#a098078377eb545263538e56c53b56e4e":[16,0,0,128,6], -"classdaisy_1_1_wav_player.html#a0ba0f864a3fb972461fa97bbba22d836":[16,0,0,128,0], -"classdaisy_1_1_wav_player.html#a1126bb632eb141d2979c25cedde354cd":[16,0,0,128,8], -"classdaisy_1_1_wav_player.html#a29d340360f073bd1767e51a06876eafe":[16,0,0,128,10], -"classdaisy_1_1_wav_player.html#a3c49d490da98fe5280947dc7889866c1":[16,0,0,128,3], -"classdaisy_1_1_wav_player.html#a52be0ed680b908241ffc287f879c6c7a":[16,0,0,128,11], -"classdaisy_1_1_wav_player.html#a5aad333a53f985af43a856b252289b8a":[16,0,0,128,1], -"classdaisy_1_1_wav_player.html#ab125d0c6fb01b45443b57df96255efb9":[16,0,0,128,7], -"classdaisy_1_1_wav_player.html#ab4a32e794f0cdc07adab9204fc5c8a80":[16,0,0,128,4], -"classdaisy_1_1_wav_player.html#ac3b2f9f9cdf18ea861be227dcffd5da9":[16,0,0,128,9], -"classdaisy_1_1_wav_player.html#adc0c84ee0ecc56e734908a8c1384c5c2":[16,0,0,128,2], -"classdaisy_1_1_wav_player.html#affa30de9a51750132f935a2421f17d75":[16,0,0,128,5], -"classdaisy_1_1_wav_writer.html":[16,0,0,129], -"classdaisy_1_1_wav_writer.html#a153a29ee8b89fcd6dfcc6e28a08f27a9":[16,0,0,129,10], -"classdaisy_1_1_wav_writer.html#a17e4799ade3a78bfb8cab25ac90f04eb":[16,0,0,129,1], -"classdaisy_1_1_wav_writer.html#a17e4799ade3a78bfb8cab25ac90f04eba226e2d358eca88a86c0950704e2d2260":[16,0,0,129,1,1], -"classdaisy_1_1_wav_writer.html#a17e4799ade3a78bfb8cab25ac90f04ebaa5daf7f2ebbba4975d61dab1c40188c7":[16,0,0,129,1,0], -"classdaisy_1_1_wav_writer.html#a17e4799ade3a78bfb8cab25ac90f04ebaec1f1224f328e7c60687d3ca97e5b4a9":[16,0,0,129,1,2], -"classdaisy_1_1_wav_writer.html#a206a8f590464470bc63a3ac514bd3d87":[16,0,0,129,5], -"classdaisy_1_1_wav_writer.html#a245c0a0bda80385bc3c293f301c468de":[16,0,0,129,8], -"classdaisy_1_1_wav_writer.html#a4b16eb1005bb7b083f8fcaf7e8a26c48":[16,0,0,129,3], -"classdaisy_1_1_wav_writer.html#a4e55f491f9849a54906acdcad244b39d":[16,0,0,129,11] +"classdaisy_1_1_voct_calibration.html":[16,0,0,125], +"classdaisy_1_1_voct_calibration.html#a2de4f82138921ace41e1ca4e4aa2d26e":[16,0,0,125,2], +"classdaisy_1_1_voct_calibration.html#a900865bfcc294d80a9ea687e79a149e1":[16,0,0,125,1], +"classdaisy_1_1_voct_calibration.html#a9cc66906bc44a5a636634d1bb95c413d":[16,0,0,125,0], +"classdaisy_1_1_voct_calibration.html#aaaf0c5e195d9fd5c1ef0a727ffdcccfc":[16,0,0,125,5], +"classdaisy_1_1_voct_calibration.html#ac37f603d0ac2c973bd453e673c290c32":[16,0,0,125,3], +"classdaisy_1_1_voct_calibration.html#ad793014c6d82e680aa337fb23e13608d":[16,0,0,125,4], +"classdaisy_1_1_wav_player.html":[16,0,0,129], +"classdaisy_1_1_wav_player.html#a098078377eb545263538e56c53b56e4e":[16,0,0,129,6], +"classdaisy_1_1_wav_player.html#a0ba0f864a3fb972461fa97bbba22d836":[16,0,0,129,0], +"classdaisy_1_1_wav_player.html#a1126bb632eb141d2979c25cedde354cd":[16,0,0,129,8], +"classdaisy_1_1_wav_player.html#a29d340360f073bd1767e51a06876eafe":[16,0,0,129,10], +"classdaisy_1_1_wav_player.html#a3c49d490da98fe5280947dc7889866c1":[16,0,0,129,3], +"classdaisy_1_1_wav_player.html#a52be0ed680b908241ffc287f879c6c7a":[16,0,0,129,11], +"classdaisy_1_1_wav_player.html#a5aad333a53f985af43a856b252289b8a":[16,0,0,129,1], +"classdaisy_1_1_wav_player.html#ab125d0c6fb01b45443b57df96255efb9":[16,0,0,129,7], +"classdaisy_1_1_wav_player.html#ab4a32e794f0cdc07adab9204fc5c8a80":[16,0,0,129,4], +"classdaisy_1_1_wav_player.html#ac3b2f9f9cdf18ea861be227dcffd5da9":[16,0,0,129,9], +"classdaisy_1_1_wav_player.html#adc0c84ee0ecc56e734908a8c1384c5c2":[16,0,0,129,2], +"classdaisy_1_1_wav_player.html#affa30de9a51750132f935a2421f17d75":[16,0,0,129,5], +"classdaisy_1_1_wav_writer.html":[16,0,0,130], +"classdaisy_1_1_wav_writer.html#a153a29ee8b89fcd6dfcc6e28a08f27a9":[16,0,0,130,10], +"classdaisy_1_1_wav_writer.html#a17e4799ade3a78bfb8cab25ac90f04eb":[16,0,0,130,1], +"classdaisy_1_1_wav_writer.html#a17e4799ade3a78bfb8cab25ac90f04eba226e2d358eca88a86c0950704e2d2260":[16,0,0,130,1,1], +"classdaisy_1_1_wav_writer.html#a17e4799ade3a78bfb8cab25ac90f04ebaa5daf7f2ebbba4975d61dab1c40188c7":[16,0,0,130,1,0], +"classdaisy_1_1_wav_writer.html#a17e4799ade3a78bfb8cab25ac90f04ebaec1f1224f328e7c60687d3ca97e5b4a9":[16,0,0,130,1,2], +"classdaisy_1_1_wav_writer.html#a206a8f590464470bc63a3ac514bd3d87":[16,0,0,130,5], +"classdaisy_1_1_wav_writer.html#a245c0a0bda80385bc3c293f301c468de":[16,0,0,130,8], +"classdaisy_1_1_wav_writer.html#a4b16eb1005bb7b083f8fcaf7e8a26c48":[16,0,0,130,3], +"classdaisy_1_1_wav_writer.html#a4e55f491f9849a54906acdcad244b39d":[16,0,0,130,11] }; diff --git a/navtreeindex8.js b/navtreeindex8.js index 12b82f376..57840d061 100644 --- a/navtreeindex8.js +++ b/navtreeindex8.js @@ -1,32 +1,32 @@ var NAVTREEINDEX8 = { -"classdaisy_1_1_wav_writer.html#a9c03052fee69006c6f021391ecc93f20":[16,0,0,129,9], -"classdaisy_1_1_wav_writer.html#ab589ae805cb5d3c59c982687894fbdea":[16,0,0,129,4], -"classdaisy_1_1_wav_writer.html#ab6477ad91d6d9f4804ac9150edd33e1b":[16,0,0,129,2], -"classdaisy_1_1_wav_writer.html#ab6477ad91d6d9f4804ac9150edd33e1babb1ca97ec761fc37101737ba0aa2e7c5":[16,0,0,129,2,1], -"classdaisy_1_1_wav_writer.html#ab6477ad91d6d9f4804ac9150edd33e1bae0aa021e21dddbd6d8cecec71e9cf564":[16,0,0,129,2,0], -"classdaisy_1_1_wav_writer.html#ac5dc6ea46305e49415d18fe971b92d35":[16,0,0,129,6], -"classdaisy_1_1_wav_writer.html#ad1808769a4239080fefabebac461c340":[16,0,0,129,12], -"classdaisy_1_1_wav_writer.html#aea2d493b6d04b6d395eea6acc7e60055":[16,0,0,129,7], -"classdaisy_1_1_wave_table_loader.html":[16,0,0,126], -"classdaisy_1_1_wave_table_loader.html#a43adf10f29a77d7404c6e1fe9f44150b":[16,0,0,126,1], -"classdaisy_1_1_wave_table_loader.html#a5b9d90a405d8b80ce7d186de03e8e768":[16,0,0,126,2], -"classdaisy_1_1_wave_table_loader.html#a946156ea77f74d7ee25d122a6ba42ab0":[16,0,0,126,6], -"classdaisy_1_1_wave_table_loader.html#a95b0b8da2b594e99193bcd197b80bde6":[16,0,0,126,4], -"classdaisy_1_1_wave_table_loader.html#ab458927d7a82e236e06456694aadc0dd":[16,0,0,126,0], -"classdaisy_1_1_wave_table_loader.html#ab458927d7a82e236e06456694aadc0dda1420fb77e9ebeb8c2b05b3316db5ed39":[16,0,0,126,0,1], -"classdaisy_1_1_wave_table_loader.html#ab458927d7a82e236e06456694aadc0dda46d9b2b5c90c1be1f3c0b99f4d9807fb":[16,0,0,126,0,3], -"classdaisy_1_1_wave_table_loader.html#ab458927d7a82e236e06456694aadc0dda4ec362202d7d93e2f6107be50981a8ca":[16,0,0,126,0,2], -"classdaisy_1_1_wave_table_loader.html#ab458927d7a82e236e06456694aadc0ddae0aa021e21dddbd6d8cecec71e9cf564":[16,0,0,126,0,0], -"classdaisy_1_1_wave_table_loader.html#ab573246265b407e4063863407759959b":[16,0,0,126,3], -"classdaisy_1_1_wave_table_loader.html#ab68b6dd9b098a3bbce0128c1da53d6ea":[16,0,0,126,5], -"classdaisy_1_1_wm8731.html":[16,0,0,130], -"classdaisy_1_1_wm8731.html#a40ab830389eb1246d689b71d32634ab8":[16,0,0,130,2], -"classdaisy_1_1_wm8731.html#a42f8e6070918905a6aa317ed3fb20627":[16,0,0,130,4], -"classdaisy_1_1_wm8731.html#ab71d3f1b08fd45a9d940a2d1a3a4c388":[16,0,0,130,3], -"classdaisy_1_1_wm8731.html#acee74b7ae4c637c45d33afcb91da7988":[16,0,0,130,1], -"classdaisy_1_1_wm8731.html#acee74b7ae4c637c45d33afcb91da7988acd22bad976363fdd1bfbf6759fede482":[16,0,0,130,1,1], -"classdaisy_1_1_wm8731.html#acee74b7ae4c637c45d33afcb91da7988ae0aa021e21dddbd6d8cecec71e9cf564":[16,0,0,130,1,0], +"classdaisy_1_1_wav_writer.html#a9c03052fee69006c6f021391ecc93f20":[16,0,0,130,9], +"classdaisy_1_1_wav_writer.html#ab589ae805cb5d3c59c982687894fbdea":[16,0,0,130,4], +"classdaisy_1_1_wav_writer.html#ab6477ad91d6d9f4804ac9150edd33e1b":[16,0,0,130,2], +"classdaisy_1_1_wav_writer.html#ab6477ad91d6d9f4804ac9150edd33e1babb1ca97ec761fc37101737ba0aa2e7c5":[16,0,0,130,2,1], +"classdaisy_1_1_wav_writer.html#ab6477ad91d6d9f4804ac9150edd33e1bae0aa021e21dddbd6d8cecec71e9cf564":[16,0,0,130,2,0], +"classdaisy_1_1_wav_writer.html#ac5dc6ea46305e49415d18fe971b92d35":[16,0,0,130,6], +"classdaisy_1_1_wav_writer.html#ad1808769a4239080fefabebac461c340":[16,0,0,130,12], +"classdaisy_1_1_wav_writer.html#aea2d493b6d04b6d395eea6acc7e60055":[16,0,0,130,7], +"classdaisy_1_1_wave_table_loader.html":[16,0,0,127], +"classdaisy_1_1_wave_table_loader.html#a43adf10f29a77d7404c6e1fe9f44150b":[16,0,0,127,1], +"classdaisy_1_1_wave_table_loader.html#a5b9d90a405d8b80ce7d186de03e8e768":[16,0,0,127,2], +"classdaisy_1_1_wave_table_loader.html#a946156ea77f74d7ee25d122a6ba42ab0":[16,0,0,127,6], +"classdaisy_1_1_wave_table_loader.html#a95b0b8da2b594e99193bcd197b80bde6":[16,0,0,127,4], +"classdaisy_1_1_wave_table_loader.html#ab458927d7a82e236e06456694aadc0dd":[16,0,0,127,0], +"classdaisy_1_1_wave_table_loader.html#ab458927d7a82e236e06456694aadc0dda1420fb77e9ebeb8c2b05b3316db5ed39":[16,0,0,127,0,1], +"classdaisy_1_1_wave_table_loader.html#ab458927d7a82e236e06456694aadc0dda46d9b2b5c90c1be1f3c0b99f4d9807fb":[16,0,0,127,0,3], +"classdaisy_1_1_wave_table_loader.html#ab458927d7a82e236e06456694aadc0dda4ec362202d7d93e2f6107be50981a8ca":[16,0,0,127,0,2], +"classdaisy_1_1_wave_table_loader.html#ab458927d7a82e236e06456694aadc0ddae0aa021e21dddbd6d8cecec71e9cf564":[16,0,0,127,0,0], +"classdaisy_1_1_wave_table_loader.html#ab573246265b407e4063863407759959b":[16,0,0,127,3], +"classdaisy_1_1_wave_table_loader.html#ab68b6dd9b098a3bbce0128c1da53d6ea":[16,0,0,127,5], +"classdaisy_1_1_wm8731.html":[16,0,0,131], +"classdaisy_1_1_wm8731.html#a40ab830389eb1246d689b71d32634ab8":[16,0,0,131,2], +"classdaisy_1_1_wm8731.html#a42f8e6070918905a6aa317ed3fb20627":[16,0,0,131,4], +"classdaisy_1_1_wm8731.html#ab71d3f1b08fd45a9d940a2d1a3a4c388":[16,0,0,131,3], +"classdaisy_1_1_wm8731.html#acee74b7ae4c637c45d33afcb91da7988":[16,0,0,131,1], +"classdaisy_1_1_wm8731.html#acee74b7ae4c637c45d33afcb91da7988acd22bad976363fdd1bfbf6759fede482":[16,0,0,131,1,1], +"classdaisy_1_1_wm8731.html#acee74b7ae4c637c45d33afcb91da7988ae0aa021e21dddbd6d8cecec71e9cf564":[16,0,0,131,1,0], "classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html":[4,0,0,3], "classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a0bbf4d6dab923903860ce331438b6d1f":[4,0,0,3,23], "classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a0cda289d881c60e8d19de900c3f4767a":[4,0,0,3,8], diff --git a/navtreeindex9.js b/navtreeindex9.js index 7d345f848..f095e0813 100644 --- a/navtreeindex9.js +++ b/navtreeindex9.js @@ -51,8 +51,8 @@ var NAVTREEINDEX9 = "functions_d.html":[16,3,0,4], "functions_e.html":[16,3,0,5], "functions_enum.html":[16,3,4], -"functions_eval.html":[16,3,5], "functions_eval.html":[16,3,5,0], +"functions_eval.html":[16,3,5], "functions_eval_b.html":[16,3,5,1], "functions_eval_c.html":[16,3,5,2], "functions_eval_d.html":[16,3,5,3], @@ -118,8 +118,8 @@ var NAVTREEINDEX9 = "functions_type.html":[16,3,3], "functions_u.html":[16,3,0,21], "functions_v.html":[16,3,0,22], -"functions_vars.html":[16,3,2], "functions_vars.html":[16,3,2,0], +"functions_vars.html":[16,3,2], "functions_vars_b.html":[16,3,2,1], "functions_vars_c.html":[16,3,2,2], "functions_vars_d.html":[16,3,2,3], diff --git a/search/all_10.js b/search/all_10.js index 68941e9f9..f7ea8e1e4 100644 --- a/search/all_10.js +++ b/search/all_10.js @@ -4,135 +4,134 @@ var searchData= ['pagetoopen_1',['pageToOpen',['../structdaisy_1_1_abstract_menu_1_1_item_config.html#a0fe2cb5f1b07d1245121bee055e4a0d1',1,'daisy::AbstractMenu::ItemConfig']]], ['parameter_2',['Parameter',['../classdaisy_1_1_parameter.html',1,'daisy::Parameter'],['../classdaisy_1_1_parameter.html#ac53e51f76edd3958bc201a8eda419afb',1,'daisy::Parameter::Parameter()']]], ['parameter_2eh_3',['parameter.h',['../parameter_8h.html',1,'']]], - ['parity_4',['parity',['../structdaisy_1_1_uart_handler_1_1_config.html#ac48641737eaf10a6d0c78172aff2762a',1,'daisy::UartHandler::Config']]], - ['parity_5',['Parity',['../structdaisy_1_1_uart_handler_1_1_config.html#a69458bc285ceaf3e20fba9299e2ea5b8',1,'daisy::UartHandler::Config']]], - ['parse_6',['Parse',['../classdaisy_1_1_midi_handler.html#a8dbf957100cc91a0c28c04340b218e32',1,'daisy::MidiHandler']]], + ['parity_4',['Parity',['../structdaisy_1_1_uart_handler_1_1_config.html#a69458bc285ceaf3e20fba9299e2ea5b8',1,'daisy::UartHandler::Config']]], + ['parity_5',['parity',['../structdaisy_1_1_uart_handler_1_1_config.html#ac48641737eaf10a6d0c78172aff2762a',1,'daisy::UartHandler::Config']]], + ['parse_6',['Parse',['../classdaisy_1_1_midi_parser.html#ac0f99ea908391d2f95ddac9ce80fc31a',1,'daisy::MidiParser::Parse()'],['../classdaisy_1_1_midi_handler.html#a8dbf957100cc91a0c28c04340b218e32',1,'daisy::MidiHandler::Parse()']]], ['pc_5fsync_5f_7',['pc_sync_',['../group__logger__statics.html#ga6d7a9afe08ad74b611de01e320dd67e3',1,'daisy::Logger']]], ['pcm3060_8',['Pcm3060',['../classdaisy_1_1_pcm3060.html',1,'daisy::Pcm3060'],['../classdaisy_1_1_pcm3060.html#a2cd849186f254f25bdb06f5f73c0beaf',1,'daisy::Pcm3060::Pcm3060()']]], ['period_9',['period',['../structdaisy_1_1_timer_handle_1_1_config.html#a80d102d9f279eed83f2fb22323a5d4b7',1,'daisy::TimerHandle::Config']]], ['periodelapsedcallback_10',['PeriodElapsedCallback',['../classdaisy_1_1_timer_handle.html#a31742af4d164ed7787ffba2c95158ef9',1,'daisy::TimerHandle']]], - ['periph_11',['periph',['../structdaisy_1_1_icm20948_i2_c_transport_1_1_config.html#abc4c492e330af1b985e67b916ef5ed9d',1,'daisy::Icm20948I2CTransport::Config::periph'],['../structdaisy_1_1_timer_handle_1_1_config.html#a8221f500730fb53dcef869678a2634ba',1,'daisy::TimerHandle::Config::periph'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#a752107d691777891a4f97730f40f07b8',1,'daisy::MultiSlaveSpiHandle::Config::periph'],['../structdaisy_1_1_spi_handle_1_1_config.html#a176f3ada9fd6d962275ba7372b051b28',1,'daisy::SpiHandle::Config::periph'],['../structdaisy_1_1_sai_handle_1_1_config.html#ac59816a80f77783dbce0e9aee8f6d1ed',1,'daisy::SaiHandle::Config::periph'],['../structdaisy_1_1_i2_c_handle_1_1_config.html#aa56d0330fdf37d13b2fea52f02c8f616',1,'daisy::I2CHandle::Config::periph'],['../structdaisy_1_1_midi_usb_transport_1_1_config.html#a311d07b4a6ee2ec3f5df578e95b6b124',1,'daisy::MidiUsbTransport::Config::periph'],['../structdaisy_1_1_midi_uart_transport_1_1_config.html#a7b90ff952ac1811fa126e29549482732',1,'daisy::MidiUartTransport::Config::periph'],['../structdaisy_1_1_tlv493d_i2_c_transport_1_1_config.html#ac7eaa413abcdfbebc3e94610561a6410',1,'daisy::Tlv493dI2CTransport::Config::periph'],['../structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a30b84a65c6e28b1838d7536c78fcdb19',1,'daisy::NeoTrellisI2CTransport::Config::periph'],['../structdaisy_1_1_neo_pixel_i2_c_transport_1_1_config.html#a079df385d992018d3dd91e0ba0e574c3',1,'daisy::NeoPixelI2CTransport::Config::periph'],['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html#a07d425140eda0eae1cebf3c6743de9b6',1,'daisy::Mpr121I2CTransport::Config::periph'],['../structdaisy_1_1_m_a_x11300_multi_slave_spi_transport_1_1_config.html#a1f9488d3836d9c6322d09db3fbaaa5a3',1,'daisy::MAX11300MultiSlaveSpiTransport::Config::periph'],['../structdaisy_1_1_icm20948_spi_transport_1_1_config.html#a9aae63f1fe0a46f021345f89e29c84ca',1,'daisy::Icm20948SpiTransport::Config::periph'],['../structdaisy_1_1_uart_handler_1_1_config.html#a610e071e45e1258b17896a05c4a23cf3',1,'daisy::UartHandler::Config::periph'],['../structdaisy_1_1_dps310_spi_transport_1_1_config.html#afb7d990534a354c01750af84c30e0222',1,'daisy::Dps310SpiTransport::Config::periph'],['../structdaisy_1_1_dps310_i2_c_transport_1_1_config.html#a995a0fa3e73a99f0d2dae688e7fad8cc',1,'daisy::Dps310I2CTransport::Config::periph'],['../structdaisy_1_1_dot_star_spi_transport_1_1_config.html#a9cb66c55501ed4aeafa2467e7bac832c',1,'daisy::DotStarSpiTransport::Config::periph'],['../structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#acfcb28d34bcd73bc33075e7fcbbff243',1,'daisy::Apds9960I2CTransport::Config::periph']]], + ['periph_11',['periph',['../structdaisy_1_1_icm20948_spi_transport_1_1_config.html#a9aae63f1fe0a46f021345f89e29c84ca',1,'daisy::Icm20948SpiTransport::Config::periph'],['../structdaisy_1_1_uart_handler_1_1_config.html#a610e071e45e1258b17896a05c4a23cf3',1,'daisy::UartHandler::Config::periph'],['../structdaisy_1_1_timer_handle_1_1_config.html#a8221f500730fb53dcef869678a2634ba',1,'daisy::TimerHandle::Config::periph'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#a752107d691777891a4f97730f40f07b8',1,'daisy::MultiSlaveSpiHandle::Config::periph'],['../structdaisy_1_1_spi_handle_1_1_config.html#a176f3ada9fd6d962275ba7372b051b28',1,'daisy::SpiHandle::Config::periph'],['../structdaisy_1_1_sai_handle_1_1_config.html#ac59816a80f77783dbce0e9aee8f6d1ed',1,'daisy::SaiHandle::Config::periph'],['../structdaisy_1_1_i2_c_handle_1_1_config.html#aa56d0330fdf37d13b2fea52f02c8f616',1,'daisy::I2CHandle::Config::periph'],['../structdaisy_1_1_midi_usb_transport_1_1_config.html#a311d07b4a6ee2ec3f5df578e95b6b124',1,'daisy::MidiUsbTransport::Config::periph'],['../structdaisy_1_1_midi_uart_transport_1_1_config.html#a7b90ff952ac1811fa126e29549482732',1,'daisy::MidiUartTransport::Config::periph'],['../structdaisy_1_1_tlv493d_i2_c_transport_1_1_config.html#ac7eaa413abcdfbebc3e94610561a6410',1,'daisy::Tlv493dI2CTransport::Config::periph'],['../structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a30b84a65c6e28b1838d7536c78fcdb19',1,'daisy::NeoTrellisI2CTransport::Config::periph'],['../structdaisy_1_1_neo_pixel_i2_c_transport_1_1_config.html#a079df385d992018d3dd91e0ba0e574c3',1,'daisy::NeoPixelI2CTransport::Config::periph'],['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html#a07d425140eda0eae1cebf3c6743de9b6',1,'daisy::Mpr121I2CTransport::Config::periph'],['../structdaisy_1_1_m_a_x11300_multi_slave_spi_transport_1_1_config.html#a1f9488d3836d9c6322d09db3fbaaa5a3',1,'daisy::MAX11300MultiSlaveSpiTransport::Config::periph']]], ['periph_12',['Periph',['../structdaisy_1_1_midi_usb_transport_1_1_config.html#ac2c6a3bd5bb0b444072cf7ebd8454b61',1,'daisy::MidiUsbTransport::Config']]], - ['peripheral_13',['PERIPHERAL',['../group__peripheral.html',1,'']]], - ['peripheral_14',['Peripheral',['../structdaisy_1_1_uart_handler_1_1_config.html#ad8a5646b09e2110234e724afeaade9dc',1,'daisy::UartHandler::Config::Peripheral'],['../structdaisy_1_1_timer_handle_1_1_config.html#a907160c00bf0cad7ec645368bd4f5bca',1,'daisy::TimerHandle::Config::Peripheral'],['../structdaisy_1_1_spi_handle_1_1_config.html#a446ef992a86b93c86fa966f42375586d',1,'daisy::SpiHandle::Config::Peripheral'],['../structdaisy_1_1_sai_handle_1_1_config.html#a68789209ff997e6ca653db010594959b',1,'daisy::SaiHandle::Config::Peripheral'],['../structdaisy_1_1_i2_c_handle_1_1_config.html#ad59ff761df0f73062c2e5602fb67e9d3',1,'daisy::I2CHandle::Config::Peripheral']]], - ['persistentstorage_15',['PersistentStorage',['../classdaisy_1_1_persistent_storage.html',1,'daisy::PersistentStorage< SettingStruct >'],['../classdaisy_1_1_persistent_storage.html#aa4bc8d085f92ae05ac7abc38b26264d6',1,'daisy::PersistentStorage::PersistentStorage()']]], - ['persistentstorage_2eh_16',['PersistentStorage.h',['../_persistent_storage_8h.html',1,'']]], - ['pin_17',['Pin',['../structdaisy_1_1_pin.html',1,'daisy::Pin'],['../structdaisy_1_1_pin.html#a492cdf058721dc44c910ce799463ce1b',1,'daisy::Pin::Pin()'],['../structdaisy_1_1_pin.html#ad9a2515c425471812d946be056ca60d0',1,'daisy::Pin::Pin(const GPIOPort pt, const uint8_t pn)']]], - ['pin_18',['pin',['../structdsy__gpio.html#a92d61fa4d53b923b328e7e1ca8a67100',1,'dsy_gpio::pin'],['../structdaisy_1_1_g_p_i_o_1_1_config.html#a9ec54830cc766dcb99a5c438169f258c',1,'daisy::GPIO::Config::pin'],['../classdaisy_1_1_neo_pixel.html#a5ebb9803eb16e2d8f5baf3e2cd794236',1,'daisy::NeoPixel::pin'],['../structdsy__gpio__pin.html#a1edd34504a6d4d701bde32ae664afebd',1,'dsy_gpio_pin::pin']]], - ['pin_19',['Pin',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daff',1,'daisy::MAX11300Types']]], - ['pin_20',['pin',['../structdaisy_1_1_pin.html#aaae9c3c475b50ff3195037760d971fc1',1,'daisy::Pin']]], - ['pin_5f_21',['pin_',['../structdaisy_1_1_adc_channel_config.html#aaa26b95be3383f04543b4525ab04389a',1,'daisy::AdcChannelConfig']]], - ['pin_5f0_22',['PIN_0',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa3db3652189a41bc712e5a1ad74d296c6',1,'daisy::MAX11300Types']]], - ['pin_5f1_23',['PIN_1',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa22acd8d218609187597cdfffb2630f4f',1,'daisy::MAX11300Types']]], - ['pin_5f10_24',['PIN_10',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffadad5ed90826998446148a6ff24833ed1',1,'daisy::MAX11300Types']]], - ['pin_5f11_25',['PIN_11',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffacd639d8fd3ad6efe770eabff7f14bc84',1,'daisy::MAX11300Types']]], - ['pin_5f12_26',['PIN_12',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa67c66259fa0ad285bbe2b36e68b02b26',1,'daisy::MAX11300Types']]], - ['pin_5f13_27',['PIN_13',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa40be8bbbd3405ccfe268c143a86f989b',1,'daisy::MAX11300Types']]], - ['pin_5f14_28',['PIN_14',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffab92c26279f257364abef1356ee62766d',1,'daisy::MAX11300Types']]], - ['pin_5f15_29',['PIN_15',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa7e3ac2c57c783e793f3ed6e82ace85e5',1,'daisy::MAX11300Types']]], - ['pin_5f16_30',['PIN_16',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffadfad642c747e747bc0826282867255fc',1,'daisy::MAX11300Types']]], - ['pin_5f17_31',['PIN_17',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffac093878fbe2e3d87f7e536028ee285f8',1,'daisy::MAX11300Types']]], - ['pin_5f18_32',['PIN_18',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa433fb143a773dc7f630b1bae63178461',1,'daisy::MAX11300Types']]], - ['pin_5f19_33',['PIN_19',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa1d0351a8ff35d39d61a48cd1a61635bd',1,'daisy::MAX11300Types']]], - ['pin_5f2_34',['PIN_2',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa33e6042829fa4bd47105f78fb8480727',1,'daisy::MAX11300Types']]], - ['pin_5f3_35',['PIN_3',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa724ed3270313e4b42c29df48f7ecdd79',1,'daisy::MAX11300Types']]], - ['pin_5f4_36',['PIN_4',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffaea5a5d872b34f664c45ce1f11ddce8c1',1,'daisy::MAX11300Types']]], - ['pin_5f5_37',['PIN_5',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa4242c6c18e81d45bd8a82ee6a72b4cd6',1,'daisy::MAX11300Types']]], - ['pin_5f6_38',['PIN_6',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa561dfa2ad78f68aa9a599c96219a2dcc',1,'daisy::MAX11300Types']]], - ['pin_5f7_39',['PIN_7',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa2b1f9e8577ab3b69cb0f16e40bc1f3dd',1,'daisy::MAX11300Types']]], - ['pin_5f8_40',['PIN_8',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa21f6213bf11fb62369cce6de63264e0c',1,'daisy::MAX11300Types']]], - ['pin_5f9_41',['PIN_9',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffaaac19a1147b2db7c6ee538aed9c4c6b1',1,'daisy::MAX11300Types']]], - ['pin_5fclk_42',['PIN_CLK',['../class_shift_register595.html#a2e0140c5d6cac8821d558b2683f7a134a4e50d83a47cc620a8427d2879aca30ec',1,'ShiftRegister595']]], - ['pin_5fconfig_43',['pin_config',['../structdaisy_1_1_sai_handle_1_1_config.html#a573d8b4f46f1cc461e7d89385b037b20',1,'daisy::SaiHandle::Config::pin_config'],['../structdaisy_1_1_m_a_x11300_multi_slave_spi_transport_1_1_config.html#aeb65a16007e438c8a62f369ca0f3f0a6',1,'daisy::MAX11300MultiSlaveSpiTransport::Config::pin_config'],['../structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a4273d35c4a13337de45ece31f6e1c50a',1,'daisy::SSD130x4WireSpiTransport::Config::pin_config'],['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a407208ebf6efb96a495b7ffb0dca7934',1,'daisy::SSD130x4WireSoftSpiTransport::Config::pin_config'],['../structdaisy_1_1_i2_c_handle_1_1_config.html#a940643c796141fbf75b7670af14e41cc',1,'daisy::I2CHandle::Config::pin_config'],['../structdaisy_1_1_q_s_p_i_handle_1_1_config.html#a63cdac577736ce78c3abc5c6552dcb54',1,'daisy::QSPIHandle::Config::pin_config'],['../structdaisy_1_1_spi_handle_1_1_config.html#a31516d8a2bd8ac911eaa021cbe19e57b',1,'daisy::SpiHandle::Config::pin_config'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#a1073109bcb65e06323ecc485129eea1b',1,'daisy::MultiSlaveSpiHandle::Config::pin_config'],['../structdaisy_1_1_uart_handler_1_1_config.html#aa6f279be17e79b50e125287d41a97f8a',1,'daisy::UartHandler::Config::pin_config']]], - ['pin_5fdata_44',['PIN_DATA',['../class_shift_register595.html#a2e0140c5d6cac8821d558b2683f7a134ae9ea4e9926a41b050735081ea122036b',1,'ShiftRegister595']]], - ['pin_5flatch_45',['PIN_LATCH',['../class_shift_register595.html#a2e0140c5d6cac8821d558b2683f7a134a3a362719945ee0b18b66c3d2f47f9ea5',1,'ShiftRegister595']]], - ['pinbank_46',['PinBank',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a47dabfb33a6efcaace04b05c97f5299d',1,'daisy::patch_sm::DaisyPatchSM']]], - ['pinconfig_47',['PinConfig',['../structdaisy_1_1_m_a_x11300_multi_slave_spi_transport_1_1_config_1_1_pin_config.html',1,'daisy::MAX11300MultiSlaveSpiTransport::Config']]], - ['pinmode_48',['PinMode',['../classdaisy_1_1_mcp23_x17.html#a507f1696d75da0d075ee517dc7c92464',1,'daisy::Mcp23X17']]], - ['pins_49',['Pins',['../class_shift_register595.html#a2e0140c5d6cac8821d558b2683f7a134',1,'ShiftRegister595']]], - ['pitchbend_50',['PitchBend',['../group__midi__events.html#ggaaf09bb687034c8776ca0c68ed3ed4179a4f812cde2a6d2b270ec408514516443d',1,'daisy']]], - ['pitchbendevent_51',['PitchBendEvent',['../structdaisy_1_1_pitch_bend_event.html',1,'daisy']]], - ['pixels_52',['pixels',['../classdaisy_1_1_neo_trellis.html#a3a394cd04738f34e23963f0948cf1fc3',1,'daisy::NeoTrellis::pixels'],['../classdaisy_1_1_neo_pixel.html#a39d3f96cc03a21023d2932ffb9655cfa',1,'daisy::NeoPixel::pixels']]], - ['pixels_5fconf_53',['pixels_conf',['../structdaisy_1_1_neo_trellis_1_1_config.html#a32a6648d37036a0cf8e7a02a6da3d0a9',1,'daisy::NeoTrellis::Config']]], - ['pixelsd_54',['pixelsd',['../classdaisy_1_1_neo_pixel.html#aca4305f3168366e769cd31d9322a9a1d',1,'daisy::NeoPixel']]], - ['polarity_55',['Polarity',['../classdaisy_1_1_switch.html#aef37136dd1b4cd077ef82a0f62bcfa3d',1,'daisy::Switch']]], - ['polarity_5finverted_56',['POLARITY_INVERTED',['../classdaisy_1_1_switch.html#aef37136dd1b4cd077ef82a0f62bcfa3da6a67d181b4de52438ae5109bd9cfec63',1,'daisy::Switch']]], - ['polarity_5fnormal_57',['POLARITY_NORMAL',['../classdaisy_1_1_switch.html#aef37136dd1b4cd077ef82a0f62bcfa3daca3b7fb0df13cde6adfeefc3f1f45e68',1,'daisy::Switch']]], - ['polling_58',['POLLING',['../classdaisy_1_1_dac_handle.html#af1ab441190983a26ed15a26b77028082af6f593da1de6b5bb23fc2ef3e637c72b',1,'daisy::DacHandle']]], - ['pollreceive_59',['PollReceive',['../classdaisy_1_1_uart_handler.html#a9641f3808cf70559d3d988f5ae8e254c',1,'daisy::UartHandler']]], - ['polltx_60',['PollTx',['../classdaisy_1_1_uart_handler.html#a9505926532bf44f70216b52d45db549a',1,'daisy::UartHandler']]], - ['polymodeon_61',['PolyModeOn',['../group__midi__events.html#ggaf9da54b73be4dec526670bd6c53ad98aa17a89a072ecc585c209bc76314f231e4',1,'daisy']]], - ['polymodeonevent_62',['PolyModeOnEvent',['../structdaisy_1_1_poly_mode_on_event.html',1,'daisy']]], - ['polyphonickeypressure_63',['PolyphonicKeyPressure',['../group__midi__events.html#ggaaf09bb687034c8776ca0c68ed3ed4179a1df3c32711e2b5d1c02c5e548b7d4f7b',1,'daisy']]], - ['polyphonickeypressureevent_64',['PolyphonicKeyPressureEvent',['../structdaisy_1_1_polyphonic_key_pressure_event.html',1,'daisy']]], - ['popback_65',['PopBack',['../classdaisy_1_1_stack_base.html#a8939e78d29ff2400535a367bc400e111',1,'daisy::StackBase']]], - ['popevent_66',['PopEvent',['../classdaisy_1_1_midi_handler.html#a4460bf8f45842bc2e2f74b9afad31cef',1,'daisy::MidiHandler']]], - ['popfifo_67',['PopFifo',['../classdaisy_1_1_uart_handler.html#ae2dcb235ccfbf9a16d059edaf4e6499a',1,'daisy::UartHandler']]], + ['periph_13',['periph',['../structdaisy_1_1_icm20948_i2_c_transport_1_1_config.html#abc4c492e330af1b985e67b916ef5ed9d',1,'daisy::Icm20948I2CTransport::Config::periph'],['../structdaisy_1_1_dps310_spi_transport_1_1_config.html#afb7d990534a354c01750af84c30e0222',1,'daisy::Dps310SpiTransport::Config::periph'],['../structdaisy_1_1_dps310_i2_c_transport_1_1_config.html#a995a0fa3e73a99f0d2dae688e7fad8cc',1,'daisy::Dps310I2CTransport::Config::periph'],['../structdaisy_1_1_dot_star_spi_transport_1_1_config.html#a9cb66c55501ed4aeafa2467e7bac832c',1,'daisy::DotStarSpiTransport::Config::periph'],['../structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#acfcb28d34bcd73bc33075e7fcbbff243',1,'daisy::Apds9960I2CTransport::Config::periph']]], + ['peripheral_14',['PERIPHERAL',['../group__peripheral.html',1,'']]], + ['peripheral_15',['Peripheral',['../structdaisy_1_1_uart_handler_1_1_config.html#ad8a5646b09e2110234e724afeaade9dc',1,'daisy::UartHandler::Config::Peripheral'],['../structdaisy_1_1_timer_handle_1_1_config.html#a907160c00bf0cad7ec645368bd4f5bca',1,'daisy::TimerHandle::Config::Peripheral'],['../structdaisy_1_1_spi_handle_1_1_config.html#a446ef992a86b93c86fa966f42375586d',1,'daisy::SpiHandle::Config::Peripheral'],['../structdaisy_1_1_sai_handle_1_1_config.html#a68789209ff997e6ca653db010594959b',1,'daisy::SaiHandle::Config::Peripheral'],['../structdaisy_1_1_i2_c_handle_1_1_config.html#ad59ff761df0f73062c2e5602fb67e9d3',1,'daisy::I2CHandle::Config::Peripheral']]], + ['persistentstorage_16',['PersistentStorage',['../classdaisy_1_1_persistent_storage.html',1,'daisy::PersistentStorage< SettingStruct >'],['../classdaisy_1_1_persistent_storage.html#aa4bc8d085f92ae05ac7abc38b26264d6',1,'daisy::PersistentStorage::PersistentStorage()']]], + ['persistentstorage_2eh_17',['PersistentStorage.h',['../_persistent_storage_8h.html',1,'']]], + ['pin_18',['Pin',['../structdaisy_1_1_pin.html',1,'daisy::Pin'],['../structdaisy_1_1_pin.html#a492cdf058721dc44c910ce799463ce1b',1,'daisy::Pin::Pin()'],['../structdaisy_1_1_pin.html#ad9a2515c425471812d946be056ca60d0',1,'daisy::Pin::Pin(const GPIOPort pt, const uint8_t pn)']]], + ['pin_19',['pin',['../structdsy__gpio.html#a92d61fa4d53b923b328e7e1ca8a67100',1,'dsy_gpio::pin'],['../structdaisy_1_1_g_p_i_o_1_1_config.html#a9ec54830cc766dcb99a5c438169f258c',1,'daisy::GPIO::Config::pin'],['../classdaisy_1_1_neo_pixel.html#a5ebb9803eb16e2d8f5baf3e2cd794236',1,'daisy::NeoPixel::pin'],['../structdsy__gpio__pin.html#a1edd34504a6d4d701bde32ae664afebd',1,'dsy_gpio_pin::pin']]], + ['pin_20',['Pin',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daff',1,'daisy::MAX11300Types']]], + ['pin_21',['pin',['../structdaisy_1_1_pin.html#aaae9c3c475b50ff3195037760d971fc1',1,'daisy::Pin']]], + ['pin_5f_22',['pin_',['../structdaisy_1_1_adc_channel_config.html#aaa26b95be3383f04543b4525ab04389a',1,'daisy::AdcChannelConfig']]], + ['pin_5f0_23',['PIN_0',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa3db3652189a41bc712e5a1ad74d296c6',1,'daisy::MAX11300Types']]], + ['pin_5f1_24',['PIN_1',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa22acd8d218609187597cdfffb2630f4f',1,'daisy::MAX11300Types']]], + ['pin_5f10_25',['PIN_10',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffadad5ed90826998446148a6ff24833ed1',1,'daisy::MAX11300Types']]], + ['pin_5f11_26',['PIN_11',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffacd639d8fd3ad6efe770eabff7f14bc84',1,'daisy::MAX11300Types']]], + ['pin_5f12_27',['PIN_12',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa67c66259fa0ad285bbe2b36e68b02b26',1,'daisy::MAX11300Types']]], + ['pin_5f13_28',['PIN_13',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa40be8bbbd3405ccfe268c143a86f989b',1,'daisy::MAX11300Types']]], + ['pin_5f14_29',['PIN_14',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffab92c26279f257364abef1356ee62766d',1,'daisy::MAX11300Types']]], + ['pin_5f15_30',['PIN_15',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa7e3ac2c57c783e793f3ed6e82ace85e5',1,'daisy::MAX11300Types']]], + ['pin_5f16_31',['PIN_16',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffadfad642c747e747bc0826282867255fc',1,'daisy::MAX11300Types']]], + ['pin_5f17_32',['PIN_17',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffac093878fbe2e3d87f7e536028ee285f8',1,'daisy::MAX11300Types']]], + ['pin_5f18_33',['PIN_18',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa433fb143a773dc7f630b1bae63178461',1,'daisy::MAX11300Types']]], + ['pin_5f19_34',['PIN_19',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa1d0351a8ff35d39d61a48cd1a61635bd',1,'daisy::MAX11300Types']]], + ['pin_5f2_35',['PIN_2',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa33e6042829fa4bd47105f78fb8480727',1,'daisy::MAX11300Types']]], + ['pin_5f3_36',['PIN_3',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa724ed3270313e4b42c29df48f7ecdd79',1,'daisy::MAX11300Types']]], + ['pin_5f4_37',['PIN_4',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffaea5a5d872b34f664c45ce1f11ddce8c1',1,'daisy::MAX11300Types']]], + ['pin_5f5_38',['PIN_5',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa4242c6c18e81d45bd8a82ee6a72b4cd6',1,'daisy::MAX11300Types']]], + ['pin_5f6_39',['PIN_6',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa561dfa2ad78f68aa9a599c96219a2dcc',1,'daisy::MAX11300Types']]], + ['pin_5f7_40',['PIN_7',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa2b1f9e8577ab3b69cb0f16e40bc1f3dd',1,'daisy::MAX11300Types']]], + ['pin_5f8_41',['PIN_8',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffa21f6213bf11fb62369cce6de63264e0c',1,'daisy::MAX11300Types']]], + ['pin_5f9_42',['PIN_9',['../namespacedaisy_1_1_m_a_x11300_types.html#aa5a2b717c98a118def838b1d7515daffaaac19a1147b2db7c6ee538aed9c4c6b1',1,'daisy::MAX11300Types']]], + ['pin_5fclk_43',['PIN_CLK',['../class_shift_register595.html#a2e0140c5d6cac8821d558b2683f7a134a4e50d83a47cc620a8427d2879aca30ec',1,'ShiftRegister595']]], + ['pin_5fconfig_44',['pin_config',['../structdaisy_1_1_sai_handle_1_1_config.html#a573d8b4f46f1cc461e7d89385b037b20',1,'daisy::SaiHandle::Config::pin_config'],['../structdaisy_1_1_m_a_x11300_multi_slave_spi_transport_1_1_config.html#aeb65a16007e438c8a62f369ca0f3f0a6',1,'daisy::MAX11300MultiSlaveSpiTransport::Config::pin_config'],['../structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a4273d35c4a13337de45ece31f6e1c50a',1,'daisy::SSD130x4WireSpiTransport::Config::pin_config'],['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a407208ebf6efb96a495b7ffb0dca7934',1,'daisy::SSD130x4WireSoftSpiTransport::Config::pin_config'],['../structdaisy_1_1_i2_c_handle_1_1_config.html#a940643c796141fbf75b7670af14e41cc',1,'daisy::I2CHandle::Config::pin_config'],['../structdaisy_1_1_q_s_p_i_handle_1_1_config.html#a63cdac577736ce78c3abc5c6552dcb54',1,'daisy::QSPIHandle::Config::pin_config'],['../structdaisy_1_1_spi_handle_1_1_config.html#a31516d8a2bd8ac911eaa021cbe19e57b',1,'daisy::SpiHandle::Config::pin_config'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#a1073109bcb65e06323ecc485129eea1b',1,'daisy::MultiSlaveSpiHandle::Config::pin_config'],['../structdaisy_1_1_uart_handler_1_1_config.html#aa6f279be17e79b50e125287d41a97f8a',1,'daisy::UartHandler::Config::pin_config']]], + ['pin_5fdata_45',['PIN_DATA',['../class_shift_register595.html#a2e0140c5d6cac8821d558b2683f7a134ae9ea4e9926a41b050735081ea122036b',1,'ShiftRegister595']]], + ['pin_5flatch_46',['PIN_LATCH',['../class_shift_register595.html#a2e0140c5d6cac8821d558b2683f7a134a3a362719945ee0b18b66c3d2f47f9ea5',1,'ShiftRegister595']]], + ['pinbank_47',['PinBank',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a47dabfb33a6efcaace04b05c97f5299d',1,'daisy::patch_sm::DaisyPatchSM']]], + ['pinconfig_48',['PinConfig',['../structdaisy_1_1_m_a_x11300_multi_slave_spi_transport_1_1_config_1_1_pin_config.html',1,'daisy::MAX11300MultiSlaveSpiTransport::Config']]], + ['pinmode_49',['PinMode',['../classdaisy_1_1_mcp23_x17.html#a507f1696d75da0d075ee517dc7c92464',1,'daisy::Mcp23X17']]], + ['pins_50',['Pins',['../class_shift_register595.html#a2e0140c5d6cac8821d558b2683f7a134',1,'ShiftRegister595']]], + ['pitchbend_51',['PitchBend',['../group__midi__events.html#ggaaf09bb687034c8776ca0c68ed3ed4179a4f812cde2a6d2b270ec408514516443d',1,'daisy']]], + ['pitchbendevent_52',['PitchBendEvent',['../structdaisy_1_1_pitch_bend_event.html',1,'daisy']]], + ['pixels_53',['pixels',['../classdaisy_1_1_neo_trellis.html#a3a394cd04738f34e23963f0948cf1fc3',1,'daisy::NeoTrellis::pixels'],['../classdaisy_1_1_neo_pixel.html#a39d3f96cc03a21023d2932ffb9655cfa',1,'daisy::NeoPixel::pixels']]], + ['pixels_5fconf_54',['pixels_conf',['../structdaisy_1_1_neo_trellis_1_1_config.html#a32a6648d37036a0cf8e7a02a6da3d0a9',1,'daisy::NeoTrellis::Config']]], + ['pixelsd_55',['pixelsd',['../classdaisy_1_1_neo_pixel.html#aca4305f3168366e769cd31d9322a9a1d',1,'daisy::NeoPixel']]], + ['polarity_56',['Polarity',['../classdaisy_1_1_switch.html#aef37136dd1b4cd077ef82a0f62bcfa3d',1,'daisy::Switch']]], + ['polarity_5finverted_57',['POLARITY_INVERTED',['../classdaisy_1_1_switch.html#aef37136dd1b4cd077ef82a0f62bcfa3da6a67d181b4de52438ae5109bd9cfec63',1,'daisy::Switch']]], + ['polarity_5fnormal_58',['POLARITY_NORMAL',['../classdaisy_1_1_switch.html#aef37136dd1b4cd077ef82a0f62bcfa3daca3b7fb0df13cde6adfeefc3f1f45e68',1,'daisy::Switch']]], + ['polling_59',['POLLING',['../classdaisy_1_1_dac_handle.html#af1ab441190983a26ed15a26b77028082af6f593da1de6b5bb23fc2ef3e637c72b',1,'daisy::DacHandle']]], + ['pollreceive_60',['PollReceive',['../classdaisy_1_1_uart_handler.html#a9641f3808cf70559d3d988f5ae8e254c',1,'daisy::UartHandler']]], + ['polltx_61',['PollTx',['../classdaisy_1_1_uart_handler.html#a9505926532bf44f70216b52d45db549a',1,'daisy::UartHandler']]], + ['polymodeon_62',['PolyModeOn',['../group__midi__events.html#ggaf9da54b73be4dec526670bd6c53ad98aa17a89a072ecc585c209bc76314f231e4',1,'daisy']]], + ['polymodeonevent_63',['PolyModeOnEvent',['../structdaisy_1_1_poly_mode_on_event.html',1,'daisy']]], + ['polyphonickeypressure_64',['PolyphonicKeyPressure',['../group__midi__events.html#ggaaf09bb687034c8776ca0c68ed3ed4179a1df3c32711e2b5d1c02c5e548b7d4f7b',1,'daisy']]], + ['polyphonickeypressureevent_65',['PolyphonicKeyPressureEvent',['../structdaisy_1_1_polyphonic_key_pressure_event.html',1,'daisy']]], + ['popback_66',['PopBack',['../classdaisy_1_1_stack_base.html#a8939e78d29ff2400535a367bc400e111',1,'daisy::StackBase']]], + ['popevent_67',['PopEvent',['../classdaisy_1_1_midi_handler.html#a4460bf8f45842bc2e2f74b9afad31cef',1,'daisy::MidiHandler']]], ['popfront_68',['PopFront',['../classdaisy_1_1_f_i_f_o_base.html#a03883c5c52a669b839333a7e32fe07a7',1,'daisy::FIFOBase']]], - ['poprx_69',['PopRx',['../classdaisy_1_1_uart_handler.html#ae28345bdf7d66aa891bbde3cf8c68057',1,'daisy::UartHandler']]], - ['port_70',['port',['../structdaisy_1_1_pin.html#a09a02dc8bbf3957abe1e0dff73f4749f',1,'daisy::Pin::port'],['../structdsy__gpio__pin.html#a1f18b0d77c637dde2a3febf5edf31237',1,'dsy_gpio_pin::port']]], - ['porta_71',['PORTA',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13a7e9a819ed93f26254ac6b18b1dcdeafc',1,'daisy']]], - ['portb_72',['PORTB',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13a999faa83b81555dcc0d2922a7a39336c',1,'daisy']]], - ['portc_73',['PORTC',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13acd40533d69ec82f3dfea5a79fc1bfc45',1,'daisy']]], - ['portd_74',['PORTD',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13ad7748a1feaea420ab0b378414e567e62',1,'daisy']]], - ['porte_75',['PORTE',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13a4b9a1b67029c7cf4b10e51401328b054',1,'daisy']]], - ['portf_76',['PORTF',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13a8fbe1cf408c8d40182d78c716b78075f',1,'daisy']]], - ['portg_77',['PORTG',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13aeaffe5df578693dc2bd9cb70f4ab860c',1,'daisy']]], - ['porth_78',['PORTH',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13a4ae1011e0810a6c25b7afc46162d3a5c',1,'daisy']]], - ['porti_79',['PORTI',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13aa1e3193b699501826c2663e9f316b476',1,'daisy']]], - ['portj_80',['PORTJ',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13a51da6674fae3df8f696481f783f5668e',1,'daisy']]], - ['portk_81',['PORTK',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13a78ab002400c3e30ac8e4c9b369bd88de',1,'daisy']]], - ['portmode_82',['PortMode',['../classdaisy_1_1_mcp23_x17.html#af0124ec7feb2c9f69d7097d5a0f11806',1,'daisy::Mcp23X17']]], - ['portx_83',['PORTX',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13a05ebd4a8511463d01e5f35dd20cd8255',1,'daisy']]], - ['pos_5fcenter_84',['POS_CENTER',['../classdaisy_1_1_switch3.html#a5544e6b0ed276bbedb6a817f518f35a3a2c2092ffca78d3253e4c9ba60e5a6f73',1,'daisy::Switch3']]], - ['pos_5fdown_85',['POS_DOWN',['../classdaisy_1_1_switch3.html#a5544e6b0ed276bbedb6a817f518f35a3a8aa71e2be0e938e922bb2c4a01285699',1,'daisy::Switch3']]], - ['pos_5fleft_86',['POS_LEFT',['../classdaisy_1_1_switch3.html#a5544e6b0ed276bbedb6a817f518f35a3aefdf92ecc6b6ac76b6b9d858d189e73b',1,'daisy::Switch3']]], - ['pos_5fright_87',['POS_RIGHT',['../classdaisy_1_1_switch3.html#a5544e6b0ed276bbedb6a817f518f35a3ac09d97a5b83a385983e39ce3f2059c2e',1,'daisy::Switch3']]], - ['pos_5fup_88',['POS_UP',['../classdaisy_1_1_switch3.html#a5544e6b0ed276bbedb6a817f518f35a3a93727a0b5b9a3db5a96087ea9472f7ed',1,'daisy::Switch3']]], - ['position_89',['position',['../structdaisy_1_1_song_position_pointer_event.html#ab1bc48e1adf7a2ab0ff9451be4d7fe72',1,'daisy::SongPositionPointerEvent']]], - ['postgain_90',['postgain',['../structdaisy_1_1_audio_handle_1_1_config.html#ab43119a5a246e3855730972314b416a4',1,'daisy::AudioHandle::Config']]], - ['potmonitor_91',['PotMonitor',['../classdaisy_1_1_pot_monitor.html',1,'daisy::PotMonitor< BackendType, numPots >'],['../classdaisy_1_1_pot_monitor.html#abcc379153036766cc3d4de382284fbe2',1,'daisy::PotMonitor::PotMonitor()']]], - ['potmonitor_2eh_92',['PotMonitor.h',['../_pot_monitor_8h.html',1,'']]], - ['pow2_93',['pow2',['../classdaisy_1_1_mapped_float_value.html#a641cdb1b535573e06e3d4f7048562437a1953e665c41348b3db4668eb58495dc3',1,'daisy::MappedFloatValue']]], - ['powerdownmode_94',['POWERDOWNMODE',['../classdaisy_1_1_tlv493d.html#a4e647f10dce86b4de6e6f0d641e2ede6a2870fe22ee25f2773ee5cd05873305e3',1,'daisy::Tlv493d']]], - ['ppcat_95',['PPCAT',['../group__logging__macros.html#ga458aa886688ee82825409e855d418840',1,'logger.h']]], - ['ppcat_5fnx_96',['PPCAT_NX',['../group__logging__macros.html#ga8287c9da589774d883bffb983070fc1d',1,'logger.h']]], - ['prepare_97',['Prepare',['../classdaisy_1_1_wav_player.html#a1126bb632eb141d2979c25cedde354cd',1,'daisy::WavPlayer']]], - ['presetcolor_98',['PresetColor',['../classdaisy_1_1_color.html#af93d31d5fc63705c228bf9da407c9a40',1,'daisy::Color']]], - ['pressed_99',['Pressed',['../classdaisy_1_1_encoder.html#a7c3a633c4e578dac0bdf5829b9bed99f',1,'daisy::Encoder::Pressed()'],['../classdaisy_1_1_switch.html#abe39a637bc58c3f5cbbaf5ffaaece7a9',1,'daisy::Switch::Pressed()']]], - ['pressure_100',['pressure',['../structdaisy_1_1_polyphonic_key_pressure_event.html#a53f502e29324c162a5a56f6c8b008dab',1,'daisy::PolyphonicKeyPressureEvent::pressure'],['../structdaisy_1_1_channel_pressure_event.html#a6c4c87122792025e562951be3ae53666',1,'daisy::ChannelPressureEvent::pressure']]], - ['pressureavailable_101',['pressureAvailable',['../classdaisy_1_1_dps310.html#afa461862361ecee6e002c6e7989df2d4',1,'daisy::Dps310']]], - ['print_102',['Print',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a379694b687b3088505bce20adc8a9ab7',1,'daisy::patch_sm::DaisyPatchSM::Print()'],['../classdaisy_1_1_daisy_seed.html#a84e8a5360d6a8c37d332d970ea2068fb',1,'daisy::DaisySeed::Print()'],['../classdaisy_1_1_lcd_h_d44780.html#a12264883791e8b5b03fd4066555dd2ab',1,'daisy::LcdHD44780::Print()'],['../classdaisy_1_1_logger.html#a7851be671d53e6761f20ad7c06212bf6',1,'daisy::Logger::Print()'],['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#a533c57c3bf44fa1b64b7880f2ea2dee6',1,'daisy::Logger< LOGGER_NONE >::Print()']]], - ['printint_103',['PrintInt',['../classdaisy_1_1_lcd_h_d44780.html#a77e3971508320640f0c2fc40a716aa96',1,'daisy::LcdHD44780']]], - ['printline_104',['PrintLine',['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#ad3c258bc018a265b1ae269f450aba04a',1,'daisy::Logger< LOGGER_NONE >::PrintLine()'],['../classdaisy_1_1_logger.html#abb58779589478babb9afd063d642a25e',1,'daisy::Logger::PrintLine()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#afdc25a4cd323f908a9f27b13e8265f54',1,'daisy::patch_sm::DaisyPatchSM::PrintLine()'],['../classdaisy_1_1_daisy_seed.html#a225961ab42af9be60dab50a28607d65a',1,'daisy::DaisySeed::PrintLine()']]], - ['printlinev_105',['PrintLineV',['../classdaisy_1_1_logger.html#a4efe4e3a339e8536d61acee15b5ac233',1,'daisy::Logger::PrintLineV()'],['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#a1901044bbbdd92b082723e9bf7efc128',1,'daisy::Logger< LOGGER_NONE >::PrintLineV()']]], - ['printv_106',['PrintV',['../classdaisy_1_1_logger.html#a70befe498a6682827795b11aadab3008',1,'daisy::Logger::PrintV()'],['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#ac6168acdaefd3a22421f33284e7fc208',1,'daisy::Logger< LOGGER_NONE >::PrintV()']]], - ['process_107',['Process',['../classdaisy_1_1_parameter.html#a6af6747924f1651e6698a4d72c86532d',1,'daisy::Parameter::Process()'],['../classdaisy_1_1_u_i.html#ac1ffddf7c1b8d91c41077441c455163a',1,'daisy::UI::Process()'],['../classdaisy_1_1_pot_monitor.html#aa29cec0541f7901edb9187c470f14bb1',1,'daisy::PotMonitor::Process()'],['../classdaisy_1_1_button_monitor.html#a58b66b22d85bc18405cc687b1ebf932b',1,'daisy::ButtonMonitor::Process()'],['../classdaisy_1_1_u_s_b_host_handle.html#a23eacd86f01a56142e60108ba8a381a8',1,'daisy::USBHostHandle::Process()'],['../classdaisy_1_1_analog_control.html#a7109593bfc106dd8ef35aba4434b8321',1,'daisy::AnalogControl::Process()'],['../classdaisy_1_1_neo_trellis.html#abffb6f619af2359307b5635babe023b9',1,'daisy::NeoTrellis::Process()'],['../classdaisy_1_1_icm20948.html#aecdd07323a58fde49e3cf6a6250a72c7',1,'daisy::Icm20948::Process()'],['../classdaisy_1_1_dps310.html#a8febd2b5861c6cb052fc3d693a66165b',1,'daisy::Dps310::Process()']]], - ['processallcontrols_108',['ProcessAllControls',['../classdaisy_1_1_daisy_field.html#a65d6a1bdf76bc9ffefe75f03af888b54',1,'daisy::DaisyField::ProcessAllControls()'],['../classdaisy_1_1_daisy_legio.html#af5c2e6a3d3c783994726bd0bf5895187',1,'daisy::DaisyLegio::ProcessAllControls()'],['../classdaisy_1_1_daisy_patch.html#a2e42c5a45ba048a2453fe9d3d37a22a8',1,'daisy::DaisyPatch::ProcessAllControls()'],['../classdaisy_1_1_daisy_versio.html#ac680c7da2f51a209b95b3b559b2d9310',1,'daisy::DaisyVersio::ProcessAllControls()'],['../classdaisy_1_1_daisy_pod.html#abedf7cb7cb5ee4ac84f94264500bd941',1,'daisy::DaisyPod::ProcessAllControls()'],['../classdaisy_1_1_daisy_petal.html#ad9315aa1fd67e420fdde543aafdc026d',1,'daisy::DaisyPetal::ProcessAllControls()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#ad53b2951d13cd0b89b7877234836dd84',1,'daisy::patch_sm::DaisyPatchSM::ProcessAllControls()']]], - ['processanalogcontrols_109',['ProcessAnalogControls',['../classdaisy_1_1_daisy_legio.html#aecf6ac457e5f9828900561aaec831338',1,'daisy::DaisyLegio::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_field.html#a347b7586d8f335447f6c31925f12dfdd',1,'daisy::DaisyField::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_patch.html#a5fc2a9821f4dfebfc995d895003d9e80',1,'daisy::DaisyPatch::ProcessAnalogControls()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a70f1816c43cb908307a1b92a0c191a4e',1,'daisy::patch_sm::DaisyPatchSM::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_petal.html#ac555e9b0982b43b48fc199f331fdebed',1,'daisy::DaisyPetal::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_pod.html#a362fb5374ca7c065aa337d894cbc091e',1,'daisy::DaisyPod::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_versio.html#aa164af66eba7f3e5577d53ca5cd53b71',1,'daisy::DaisyVersio::ProcessAnalogControls()']]], - ['processdigitalcontrols_110',['ProcessDigitalControls',['../classdaisy_1_1_daisy_pod.html#a57e59a27fe8b81ec02c0b7f349f92f13',1,'daisy::DaisyPod::ProcessDigitalControls()'],['../classdaisy_1_1_daisy_petal.html#aa2edfc53a363c12e756b22f478c9682d',1,'daisy::DaisyPetal::ProcessDigitalControls()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a4aab04f876942ec6a167de9edb81f5f0',1,'daisy::patch_sm::DaisyPatchSM::ProcessDigitalControls()'],['../classdaisy_1_1_daisy_patch.html#ad6b41b5b87cd3239962b5166e96aeed4',1,'daisy::DaisyPatch::ProcessDigitalControls()'],['../classdaisy_1_1_daisy_legio.html#a10dfd3d39d24993e2c10062a1dca700a',1,'daisy::DaisyLegio::ProcessDigitalControls()'],['../classdaisy_1_1_daisy_field.html#affe1943bf141c1041eae031f4b1cf3c9',1,'daisy::DaisyField::ProcessDigitalControls()']]], - ['processinput_111',['ProcessInput',['../classdaisy_1_1_voct_calibration.html#ac37f603d0ac2c973bd453e673c290c32',1,'daisy::VoctCalibration']]], - ['prog_5ferase_5fresume_5fcmd_112',['PROG_ERASE_RESUME_CMD',['../group__flash.html#ga5636bed05f7ecd27f6a4eeeb7c6d3ed3',1,'PROG_ERASE_RESUME_CMD: flash_IS25LP064A.h'],['../group__flash.html#ga5636bed05f7ecd27f6a4eeeb7c6d3ed3',1,'PROG_ERASE_RESUME_CMD: flash_IS25LP080D.h']]], - ['prog_5ferase_5fsuspend_5fcmd_113',['PROG_ERASE_SUSPEND_CMD',['../group__flash.html#ga15383120ee1aebbe28abbf04db5faf41',1,'PROG_ERASE_SUSPEND_CMD: flash_IS25LP064A.h'],['../group__flash.html#ga15383120ee1aebbe28abbf04db5faf41',1,'PROG_ERASE_SUSPEND_CMD: flash_IS25LP080D.h']]], - ['program_114',['program',['../structdaisy_1_1_program_change_event.html#a95aa09613ccd17c203fc73f4bd7c8b18',1,'daisy::ProgramChangeEvent']]], - ['programchange_115',['ProgramChange',['../group__midi__events.html#ggaaf09bb687034c8776ca0c68ed3ed4179a27e60326355eedaf215c23c4527ce627',1,'daisy']]], - ['programchangeevent_116',['ProgramChangeEvent',['../structdaisy_1_1_program_change_event.html',1,'daisy']]], - ['prox_5fmode_117',['prox_mode',['../structdaisy_1_1_apds9960_1_1_config.html#aa56d3a53b14c4d8acbae0aaf351f0eeb',1,'daisy::Apds9960::Config']]], - ['ps_5f128_118',['PS_128',['../structdaisy_1_1_spi_handle_1_1_config.html#a13476ab6f4b52024c1569945ff0bf383a5a748dfea8b6fda9f52e24f961378197',1,'daisy::SpiHandle::Config']]], - ['ps_5f16_119',['PS_16',['../structdaisy_1_1_spi_handle_1_1_config.html#a13476ab6f4b52024c1569945ff0bf383ab9652296e385e314ac2aa67878eacfe5',1,'daisy::SpiHandle::Config']]], - ['ps_5f2_120',['PS_2',['../structdaisy_1_1_spi_handle_1_1_config.html#a13476ab6f4b52024c1569945ff0bf383aca2ddd08703377bdfd1764242d8ff82e',1,'daisy::SpiHandle::Config']]], - ['ps_5f256_121',['PS_256',['../structdaisy_1_1_spi_handle_1_1_config.html#a13476ab6f4b52024c1569945ff0bf383adc97a6c0356fdc030a8256db81ea738d',1,'daisy::SpiHandle::Config']]], - ['ps_5f32_122',['PS_32',['../structdaisy_1_1_spi_handle_1_1_config.html#a13476ab6f4b52024c1569945ff0bf383ae4540d7f3a807bc544222beb154275f3',1,'daisy::SpiHandle::Config']]], - ['ps_5f4_123',['PS_4',['../structdaisy_1_1_spi_handle_1_1_config.html#a13476ab6f4b52024c1569945ff0bf383ad01a2fba340e44606cb932b086f27a75',1,'daisy::SpiHandle::Config']]], - ['ps_5f64_124',['PS_64',['../structdaisy_1_1_spi_handle_1_1_config.html#a13476ab6f4b52024c1569945ff0bf383a97fb148ab1accd5462d69022d83b0ced',1,'daisy::SpiHandle::Config']]], - ['ps_5f8_125',['PS_8',['../structdaisy_1_1_spi_handle_1_1_config.html#a13476ab6f4b52024c1569945ff0bf383ae31444bf5c3424161080f9d328fd7955',1,'daisy::SpiHandle::Config']]], - ['pull_126',['Pull',['../classdaisy_1_1_switch.html#aa6c26cb923638a248a1d8d3cb1755e51',1,'daisy::Switch::Pull'],['../classdaisy_1_1_g_p_i_o.html#a99f432b0880dab3d3b202f1cd8081f0d',1,'daisy::GPIO::Pull']]], - ['pull_127',['pull',['../structdsy__gpio.html#af15905326174d62efafda5775d2aea8a',1,'dsy_gpio::pull'],['../structdaisy_1_1_g_p_i_o_1_1_config.html#a1e00d197152470d4895b027bc0cdaf22',1,'daisy::GPIO::Config::pull']]], - ['pull_5fdown_128',['PULL_DOWN',['../classdaisy_1_1_switch.html#aa6c26cb923638a248a1d8d3cb1755e51aec89c3f7c267f0eaacd65441ef854bca',1,'daisy::Switch']]], - ['pull_5fnone_129',['PULL_NONE',['../classdaisy_1_1_switch.html#aa6c26cb923638a248a1d8d3cb1755e51a2ea8b603f1a3f5864f2f5a40a09be347',1,'daisy::Switch']]], - ['pull_5fup_130',['PULL_UP',['../classdaisy_1_1_switch.html#aa6c26cb923638a248a1d8d3cb1755e51a1f6f843c9fc60e6d00e2cbcbe97bbe8d',1,'daisy::Switch']]], - ['pulldown_131',['PULLDOWN',['../classdaisy_1_1_g_p_i_o.html#a99f432b0880dab3d3b202f1cd8081f0dad08b3001fc1b2f26c5ba712336e16a17',1,'daisy::GPIO']]], - ['pullup_132',['PULLUP',['../classdaisy_1_1_g_p_i_o.html#a99f432b0880dab3d3b202f1cd8081f0da2989a4b0b16772a6f65da71eda483c9f',1,'daisy::GPIO']]], - ['purple_133',['PURPLE',['../classdaisy_1_1_color.html#af93d31d5fc63705c228bf9da407c9a40ae6af67acb46818429af923ce98b6d196',1,'daisy::Color']]], - ['pushback_134',['PushBack',['../classdaisy_1_1_stack_base.html#aa5e2ce929c3b361dc581be58f506f245',1,'daisy::StackBase::PushBack()'],['../classdaisy_1_1_f_i_f_o_base.html#a016c825b7e207a7a9fc46da1dae4e545',1,'daisy::FIFOBase::PushBack(const T &elementToAdd)'],['../classdaisy_1_1_f_i_f_o_base.html#ad65217b96b405899dce48cc0a756466c',1,'daisy::FIFOBase::PushBack(std::initializer_list< T > valuesToAdd)'],['../classdaisy_1_1_stack_base.html#a437a09bd7bfb03f8e06e633edbab8604',1,'daisy::StackBase::PushBack()']]] + ['port_69',['port',['../structdsy__gpio__pin.html#a1f18b0d77c637dde2a3febf5edf31237',1,'dsy_gpio_pin::port'],['../structdaisy_1_1_pin.html#a09a02dc8bbf3957abe1e0dff73f4749f',1,'daisy::Pin::port']]], + ['porta_70',['PORTA',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13a7e9a819ed93f26254ac6b18b1dcdeafc',1,'daisy']]], + ['portb_71',['PORTB',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13a999faa83b81555dcc0d2922a7a39336c',1,'daisy']]], + ['portc_72',['PORTC',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13acd40533d69ec82f3dfea5a79fc1bfc45',1,'daisy']]], + ['portd_73',['PORTD',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13ad7748a1feaea420ab0b378414e567e62',1,'daisy']]], + ['porte_74',['PORTE',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13a4b9a1b67029c7cf4b10e51401328b054',1,'daisy']]], + ['portf_75',['PORTF',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13a8fbe1cf408c8d40182d78c716b78075f',1,'daisy']]], + ['portg_76',['PORTG',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13aeaffe5df578693dc2bd9cb70f4ab860c',1,'daisy']]], + ['porth_77',['PORTH',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13a4ae1011e0810a6c25b7afc46162d3a5c',1,'daisy']]], + ['porti_78',['PORTI',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13aa1e3193b699501826c2663e9f316b476',1,'daisy']]], + ['portj_79',['PORTJ',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13a51da6674fae3df8f696481f783f5668e',1,'daisy']]], + ['portk_80',['PORTK',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13a78ab002400c3e30ac8e4c9b369bd88de',1,'daisy']]], + ['portmode_81',['PortMode',['../classdaisy_1_1_mcp23_x17.html#af0124ec7feb2c9f69d7097d5a0f11806',1,'daisy::Mcp23X17']]], + ['portx_82',['PORTX',['../namespacedaisy.html#a0f3f80696b55547e8471a18de01b8e13a05ebd4a8511463d01e5f35dd20cd8255',1,'daisy']]], + ['pos_5fcenter_83',['POS_CENTER',['../classdaisy_1_1_switch3.html#a5544e6b0ed276bbedb6a817f518f35a3a2c2092ffca78d3253e4c9ba60e5a6f73',1,'daisy::Switch3']]], + ['pos_5fdown_84',['POS_DOWN',['../classdaisy_1_1_switch3.html#a5544e6b0ed276bbedb6a817f518f35a3a8aa71e2be0e938e922bb2c4a01285699',1,'daisy::Switch3']]], + ['pos_5fleft_85',['POS_LEFT',['../classdaisy_1_1_switch3.html#a5544e6b0ed276bbedb6a817f518f35a3aefdf92ecc6b6ac76b6b9d858d189e73b',1,'daisy::Switch3']]], + ['pos_5fright_86',['POS_RIGHT',['../classdaisy_1_1_switch3.html#a5544e6b0ed276bbedb6a817f518f35a3ac09d97a5b83a385983e39ce3f2059c2e',1,'daisy::Switch3']]], + ['pos_5fup_87',['POS_UP',['../classdaisy_1_1_switch3.html#a5544e6b0ed276bbedb6a817f518f35a3a93727a0b5b9a3db5a96087ea9472f7ed',1,'daisy::Switch3']]], + ['position_88',['position',['../structdaisy_1_1_song_position_pointer_event.html#ab1bc48e1adf7a2ab0ff9451be4d7fe72',1,'daisy::SongPositionPointerEvent']]], + ['postgain_89',['postgain',['../structdaisy_1_1_audio_handle_1_1_config.html#ab43119a5a246e3855730972314b416a4',1,'daisy::AudioHandle::Config']]], + ['potmonitor_90',['PotMonitor',['../classdaisy_1_1_pot_monitor.html',1,'daisy::PotMonitor< BackendType, numPots >'],['../classdaisy_1_1_pot_monitor.html#abcc379153036766cc3d4de382284fbe2',1,'daisy::PotMonitor::PotMonitor()']]], + ['potmonitor_2eh_91',['PotMonitor.h',['../_pot_monitor_8h.html',1,'']]], + ['pow2_92',['pow2',['../classdaisy_1_1_mapped_float_value.html#a641cdb1b535573e06e3d4f7048562437a1953e665c41348b3db4668eb58495dc3',1,'daisy::MappedFloatValue']]], + ['powerdownmode_93',['POWERDOWNMODE',['../classdaisy_1_1_tlv493d.html#a4e647f10dce86b4de6e6f0d641e2ede6a2870fe22ee25f2773ee5cd05873305e3',1,'daisy::Tlv493d']]], + ['ppcat_94',['PPCAT',['../group__logging__macros.html#ga458aa886688ee82825409e855d418840',1,'logger.h']]], + ['ppcat_5fnx_95',['PPCAT_NX',['../group__logging__macros.html#ga8287c9da589774d883bffb983070fc1d',1,'logger.h']]], + ['prepare_96',['Prepare',['../classdaisy_1_1_wav_player.html#a1126bb632eb141d2979c25cedde354cd',1,'daisy::WavPlayer']]], + ['presetcolor_97',['PresetColor',['../classdaisy_1_1_color.html#af93d31d5fc63705c228bf9da407c9a40',1,'daisy::Color']]], + ['pressed_98',['Pressed',['../classdaisy_1_1_encoder.html#a7c3a633c4e578dac0bdf5829b9bed99f',1,'daisy::Encoder::Pressed()'],['../classdaisy_1_1_switch.html#abe39a637bc58c3f5cbbaf5ffaaece7a9',1,'daisy::Switch::Pressed()']]], + ['pressure_99',['pressure',['../structdaisy_1_1_polyphonic_key_pressure_event.html#a53f502e29324c162a5a56f6c8b008dab',1,'daisy::PolyphonicKeyPressureEvent::pressure'],['../structdaisy_1_1_channel_pressure_event.html#a6c4c87122792025e562951be3ae53666',1,'daisy::ChannelPressureEvent::pressure']]], + ['pressureavailable_100',['pressureAvailable',['../classdaisy_1_1_dps310.html#afa461862361ecee6e002c6e7989df2d4',1,'daisy::Dps310']]], + ['print_101',['Print',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a379694b687b3088505bce20adc8a9ab7',1,'daisy::patch_sm::DaisyPatchSM::Print()'],['../classdaisy_1_1_daisy_seed.html#a84e8a5360d6a8c37d332d970ea2068fb',1,'daisy::DaisySeed::Print()'],['../classdaisy_1_1_lcd_h_d44780.html#a12264883791e8b5b03fd4066555dd2ab',1,'daisy::LcdHD44780::Print()'],['../classdaisy_1_1_logger.html#a7851be671d53e6761f20ad7c06212bf6',1,'daisy::Logger::Print()'],['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#a533c57c3bf44fa1b64b7880f2ea2dee6',1,'daisy::Logger< LOGGER_NONE >::Print()']]], + ['printint_102',['PrintInt',['../classdaisy_1_1_lcd_h_d44780.html#a77e3971508320640f0c2fc40a716aa96',1,'daisy::LcdHD44780']]], + ['printline_103',['PrintLine',['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#ad3c258bc018a265b1ae269f450aba04a',1,'daisy::Logger< LOGGER_NONE >::PrintLine()'],['../classdaisy_1_1_logger.html#abb58779589478babb9afd063d642a25e',1,'daisy::Logger::PrintLine()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#afdc25a4cd323f908a9f27b13e8265f54',1,'daisy::patch_sm::DaisyPatchSM::PrintLine()'],['../classdaisy_1_1_daisy_seed.html#a225961ab42af9be60dab50a28607d65a',1,'daisy::DaisySeed::PrintLine()']]], + ['printlinev_104',['PrintLineV',['../classdaisy_1_1_logger.html#a4efe4e3a339e8536d61acee15b5ac233',1,'daisy::Logger::PrintLineV()'],['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#a1901044bbbdd92b082723e9bf7efc128',1,'daisy::Logger< LOGGER_NONE >::PrintLineV()']]], + ['printv_105',['PrintV',['../classdaisy_1_1_logger.html#a70befe498a6682827795b11aadab3008',1,'daisy::Logger::PrintV()'],['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#ac6168acdaefd3a22421f33284e7fc208',1,'daisy::Logger< LOGGER_NONE >::PrintV()']]], + ['process_106',['Process',['../classdaisy_1_1_parameter.html#a6af6747924f1651e6698a4d72c86532d',1,'daisy::Parameter::Process()'],['../classdaisy_1_1_u_i.html#ac1ffddf7c1b8d91c41077441c455163a',1,'daisy::UI::Process()'],['../classdaisy_1_1_pot_monitor.html#aa29cec0541f7901edb9187c470f14bb1',1,'daisy::PotMonitor::Process()'],['../classdaisy_1_1_button_monitor.html#a58b66b22d85bc18405cc687b1ebf932b',1,'daisy::ButtonMonitor::Process()'],['../classdaisy_1_1_u_s_b_host_handle.html#a23eacd86f01a56142e60108ba8a381a8',1,'daisy::USBHostHandle::Process()'],['../classdaisy_1_1_analog_control.html#a7109593bfc106dd8ef35aba4434b8321',1,'daisy::AnalogControl::Process()'],['../classdaisy_1_1_neo_trellis.html#abffb6f619af2359307b5635babe023b9',1,'daisy::NeoTrellis::Process()'],['../classdaisy_1_1_icm20948.html#aecdd07323a58fde49e3cf6a6250a72c7',1,'daisy::Icm20948::Process()'],['../classdaisy_1_1_dps310.html#a8febd2b5861c6cb052fc3d693a66165b',1,'daisy::Dps310::Process()']]], + ['processallcontrols_107',['ProcessAllControls',['../classdaisy_1_1_daisy_field.html#a65d6a1bdf76bc9ffefe75f03af888b54',1,'daisy::DaisyField::ProcessAllControls()'],['../classdaisy_1_1_daisy_legio.html#af5c2e6a3d3c783994726bd0bf5895187',1,'daisy::DaisyLegio::ProcessAllControls()'],['../classdaisy_1_1_daisy_patch.html#a2e42c5a45ba048a2453fe9d3d37a22a8',1,'daisy::DaisyPatch::ProcessAllControls()'],['../classdaisy_1_1_daisy_versio.html#ac680c7da2f51a209b95b3b559b2d9310',1,'daisy::DaisyVersio::ProcessAllControls()'],['../classdaisy_1_1_daisy_pod.html#abedf7cb7cb5ee4ac84f94264500bd941',1,'daisy::DaisyPod::ProcessAllControls()'],['../classdaisy_1_1_daisy_petal.html#ad9315aa1fd67e420fdde543aafdc026d',1,'daisy::DaisyPetal::ProcessAllControls()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#ad53b2951d13cd0b89b7877234836dd84',1,'daisy::patch_sm::DaisyPatchSM::ProcessAllControls()']]], + ['processanalogcontrols_108',['ProcessAnalogControls',['../classdaisy_1_1_daisy_legio.html#aecf6ac457e5f9828900561aaec831338',1,'daisy::DaisyLegio::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_field.html#a347b7586d8f335447f6c31925f12dfdd',1,'daisy::DaisyField::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_patch.html#a5fc2a9821f4dfebfc995d895003d9e80',1,'daisy::DaisyPatch::ProcessAnalogControls()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a70f1816c43cb908307a1b92a0c191a4e',1,'daisy::patch_sm::DaisyPatchSM::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_petal.html#ac555e9b0982b43b48fc199f331fdebed',1,'daisy::DaisyPetal::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_pod.html#a362fb5374ca7c065aa337d894cbc091e',1,'daisy::DaisyPod::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_versio.html#aa164af66eba7f3e5577d53ca5cd53b71',1,'daisy::DaisyVersio::ProcessAnalogControls()']]], + ['processdigitalcontrols_109',['ProcessDigitalControls',['../classdaisy_1_1_daisy_pod.html#a57e59a27fe8b81ec02c0b7f349f92f13',1,'daisy::DaisyPod::ProcessDigitalControls()'],['../classdaisy_1_1_daisy_petal.html#aa2edfc53a363c12e756b22f478c9682d',1,'daisy::DaisyPetal::ProcessDigitalControls()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a4aab04f876942ec6a167de9edb81f5f0',1,'daisy::patch_sm::DaisyPatchSM::ProcessDigitalControls()'],['../classdaisy_1_1_daisy_patch.html#ad6b41b5b87cd3239962b5166e96aeed4',1,'daisy::DaisyPatch::ProcessDigitalControls()'],['../classdaisy_1_1_daisy_legio.html#a10dfd3d39d24993e2c10062a1dca700a',1,'daisy::DaisyLegio::ProcessDigitalControls()'],['../classdaisy_1_1_daisy_field.html#affe1943bf141c1041eae031f4b1cf3c9',1,'daisy::DaisyField::ProcessDigitalControls()']]], + ['processinput_110',['ProcessInput',['../classdaisy_1_1_voct_calibration.html#ac37f603d0ac2c973bd453e673c290c32',1,'daisy::VoctCalibration']]], + ['prog_5ferase_5fresume_5fcmd_111',['PROG_ERASE_RESUME_CMD',['../group__flash.html#ga5636bed05f7ecd27f6a4eeeb7c6d3ed3',1,'PROG_ERASE_RESUME_CMD: flash_IS25LP064A.h'],['../group__flash.html#ga5636bed05f7ecd27f6a4eeeb7c6d3ed3',1,'PROG_ERASE_RESUME_CMD: flash_IS25LP080D.h']]], + ['prog_5ferase_5fsuspend_5fcmd_112',['PROG_ERASE_SUSPEND_CMD',['../group__flash.html#ga15383120ee1aebbe28abbf04db5faf41',1,'PROG_ERASE_SUSPEND_CMD: flash_IS25LP064A.h'],['../group__flash.html#ga15383120ee1aebbe28abbf04db5faf41',1,'PROG_ERASE_SUSPEND_CMD: flash_IS25LP080D.h']]], + ['program_113',['program',['../structdaisy_1_1_program_change_event.html#a95aa09613ccd17c203fc73f4bd7c8b18',1,'daisy::ProgramChangeEvent']]], + ['programchange_114',['ProgramChange',['../group__midi__events.html#ggaaf09bb687034c8776ca0c68ed3ed4179a27e60326355eedaf215c23c4527ce627',1,'daisy']]], + ['programchangeevent_115',['ProgramChangeEvent',['../structdaisy_1_1_program_change_event.html',1,'daisy']]], + ['prox_5fmode_116',['prox_mode',['../structdaisy_1_1_apds9960_1_1_config.html#aa56d3a53b14c4d8acbae0aaf351f0eeb',1,'daisy::Apds9960::Config']]], + ['ps_5f128_117',['PS_128',['../structdaisy_1_1_spi_handle_1_1_config.html#a13476ab6f4b52024c1569945ff0bf383a5a748dfea8b6fda9f52e24f961378197',1,'daisy::SpiHandle::Config']]], + ['ps_5f16_118',['PS_16',['../structdaisy_1_1_spi_handle_1_1_config.html#a13476ab6f4b52024c1569945ff0bf383ab9652296e385e314ac2aa67878eacfe5',1,'daisy::SpiHandle::Config']]], + ['ps_5f2_119',['PS_2',['../structdaisy_1_1_spi_handle_1_1_config.html#a13476ab6f4b52024c1569945ff0bf383aca2ddd08703377bdfd1764242d8ff82e',1,'daisy::SpiHandle::Config']]], + ['ps_5f256_120',['PS_256',['../structdaisy_1_1_spi_handle_1_1_config.html#a13476ab6f4b52024c1569945ff0bf383adc97a6c0356fdc030a8256db81ea738d',1,'daisy::SpiHandle::Config']]], + ['ps_5f32_121',['PS_32',['../structdaisy_1_1_spi_handle_1_1_config.html#a13476ab6f4b52024c1569945ff0bf383ae4540d7f3a807bc544222beb154275f3',1,'daisy::SpiHandle::Config']]], + ['ps_5f4_122',['PS_4',['../structdaisy_1_1_spi_handle_1_1_config.html#a13476ab6f4b52024c1569945ff0bf383ad01a2fba340e44606cb932b086f27a75',1,'daisy::SpiHandle::Config']]], + ['ps_5f64_123',['PS_64',['../structdaisy_1_1_spi_handle_1_1_config.html#a13476ab6f4b52024c1569945ff0bf383a97fb148ab1accd5462d69022d83b0ced',1,'daisy::SpiHandle::Config']]], + ['ps_5f8_124',['PS_8',['../structdaisy_1_1_spi_handle_1_1_config.html#a13476ab6f4b52024c1569945ff0bf383ae31444bf5c3424161080f9d328fd7955',1,'daisy::SpiHandle::Config']]], + ['pull_125',['Pull',['../classdaisy_1_1_switch.html#aa6c26cb923638a248a1d8d3cb1755e51',1,'daisy::Switch::Pull'],['../classdaisy_1_1_g_p_i_o.html#a99f432b0880dab3d3b202f1cd8081f0d',1,'daisy::GPIO::Pull']]], + ['pull_126',['pull',['../structdsy__gpio.html#af15905326174d62efafda5775d2aea8a',1,'dsy_gpio::pull'],['../structdaisy_1_1_g_p_i_o_1_1_config.html#a1e00d197152470d4895b027bc0cdaf22',1,'daisy::GPIO::Config::pull']]], + ['pull_5fdown_127',['PULL_DOWN',['../classdaisy_1_1_switch.html#aa6c26cb923638a248a1d8d3cb1755e51aec89c3f7c267f0eaacd65441ef854bca',1,'daisy::Switch']]], + ['pull_5fnone_128',['PULL_NONE',['../classdaisy_1_1_switch.html#aa6c26cb923638a248a1d8d3cb1755e51a2ea8b603f1a3f5864f2f5a40a09be347',1,'daisy::Switch']]], + ['pull_5fup_129',['PULL_UP',['../classdaisy_1_1_switch.html#aa6c26cb923638a248a1d8d3cb1755e51a1f6f843c9fc60e6d00e2cbcbe97bbe8d',1,'daisy::Switch']]], + ['pulldown_130',['PULLDOWN',['../classdaisy_1_1_g_p_i_o.html#a99f432b0880dab3d3b202f1cd8081f0dad08b3001fc1b2f26c5ba712336e16a17',1,'daisy::GPIO']]], + ['pullup_131',['PULLUP',['../classdaisy_1_1_g_p_i_o.html#a99f432b0880dab3d3b202f1cd8081f0da2989a4b0b16772a6f65da71eda483c9f',1,'daisy::GPIO']]], + ['purple_132',['PURPLE',['../classdaisy_1_1_color.html#af93d31d5fc63705c228bf9da407c9a40ae6af67acb46818429af923ce98b6d196',1,'daisy::Color']]], + ['pushback_133',['PushBack',['../classdaisy_1_1_stack_base.html#aa5e2ce929c3b361dc581be58f506f245',1,'daisy::StackBase::PushBack()'],['../classdaisy_1_1_f_i_f_o_base.html#a016c825b7e207a7a9fc46da1dae4e545',1,'daisy::FIFOBase::PushBack(const T &elementToAdd)'],['../classdaisy_1_1_f_i_f_o_base.html#ad65217b96b405899dce48cc0a756466c',1,'daisy::FIFOBase::PushBack(std::initializer_list< T > valuesToAdd)'],['../classdaisy_1_1_stack_base.html#a437a09bd7bfb03f8e06e633edbab8604',1,'daisy::StackBase::PushBack()']]] ]; diff --git a/search/all_11.js b/search/all_11.js index caa1927d7..d921cc6ad 100644 --- a/search/all_11.js +++ b/search/all_11.js @@ -1,7 +1,7 @@ var searchData= [ - ['qspi_0',['QSPI',['../classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669a6df135cbc1eab65584cff039890c3b6b',1,'daisy::System']]], - ['qspi_1',['qspi',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#af650ccd5833d6a1c4b8c03ee7e8c7671',1,'daisy::patch_sm::DaisyPatchSM::qspi'],['../classdaisy_1_1_daisy_seed.html#a60daf59d4b1c4eb34e246897e2f5f007',1,'daisy::DaisySeed::qspi']]], + ['qspi_0',['qspi',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#af650ccd5833d6a1c4b8c03ee7e8c7671',1,'daisy::patch_sm::DaisyPatchSM::qspi'],['../classdaisy_1_1_daisy_seed.html#a60daf59d4b1c4eb34e246897e2f5f007',1,'daisy::DaisySeed::qspi']]], + ['qspi_1',['QSPI',['../classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669a6df135cbc1eab65584cff039890c3b6b',1,'daisy::System']]], ['qspi_2eh_2',['qspi.h',['../qspi_8h.html',1,'']]], ['qspi_5fconfig_3',['qspi_config',['../classdaisy_1_1_daisy_seed.html#a08cc65eb0580f224866f1af13bca9814',1,'daisy::DaisySeed']]], ['qspihandle_4',['QSPIHandle',['../classdaisy_1_1_q_s_p_i_handle.html',1,'daisy::QSPIHandle'],['../classdaisy_1_1_q_s_p_i_handle.html#a87c5283e4d0e3681c66e191a50822cc1',1,'daisy::QSPIHandle::QSPIHandle()'],['../classdaisy_1_1_q_s_p_i_handle.html#a0e272769d4dc67d7be5e5ff94aab3c60',1,'daisy::QSPIHandle::QSPIHandle(const QSPIHandle &other)=default']]], diff --git a/search/all_12.js b/search/all_12.js index 33a429de1..bf75d380a 100644 --- a/search/all_12.js +++ b/search/all_12.js @@ -19,126 +19,122 @@ var searchData= ['raw_5fdata_16',['raw_data',['../structdaisy_1_1_wav_file_info.html#ad1e3c8f4c720cbbdfbdf26b5a2ea2903',1,'daisy::WavFileInfo']]], ['rawstate_17',['RawState',['../classdaisy_1_1_switch.html#a77496bb98f169ba613821e2f1b7fc243',1,'daisy::Switch']]], ['rbg_18',['RBG',['../structdaisy_1_1_dot_star_1_1_config.html#ac0d32307f8104690f4a6d15dd1943ae9aeba48ef2eeedaf3ca0efd511db46f2a2',1,'daisy::DotStar::Config']]], - ['read_19',['Read',['../classdaisy_1_1_g_p_i_o.html#a7671cd340ee06976816c354b5dd4f8a4',1,'daisy::GPIO::Read()'],['../classdaisy_1_1_switch3.html#a4fd5caa658851e7732d9a9e3cc200556',1,'daisy::Switch3::Read()'],['../classdaisy_1_1_tlv493d_i2_c_transport.html#aab39a053d2e2b59cba8baf13d6d1275d',1,'daisy::Tlv493dI2CTransport::Read()'],['../classdaisy_1_1_neo_trellis_i2_c_transport.html#aab55ca305e93d3777632c65321becd22',1,'daisy::NeoTrellisI2CTransport::Read()'],['../classdaisy_1_1_neo_pixel_i2_c_transport.html#a85e51e2e596f772b25b9966d884fcd4a',1,'daisy::NeoPixelI2CTransport::Read()'],['../classdaisy_1_1_mpr121_i2_c_transport.html#aa95902f995e64b0e2d44cfef43ef290e',1,'daisy::Mpr121I2CTransport::Read()'],['../classdaisy_1_1_mcp23_x17.html#a247be516b21cbb139bfb065301c07983',1,'daisy::Mcp23X17::Read()'],['../classdaisy_1_1_icm20948_spi_transport.html#abf3554aad73a2fcbf397dede500319e7',1,'daisy::Icm20948SpiTransport::Read()'],['../classdaisy_1_1_icm20948_i2_c_transport.html#a011b575c3f47fde4319b21a211a46654',1,'daisy::Icm20948I2CTransport::Read()'],['../classdaisy_1_1_dps310_spi_transport.html#aa977dd1473bcfe08dea86f5135a1e9e2',1,'daisy::Dps310SpiTransport::Read()'],['../classdaisy_1_1_dps310_i2_c_transport.html#a40162180243c83a1e86cd28c22ba1d0d',1,'daisy::Dps310I2CTransport::Read()'],['../classdaisy_1_1_apds9960_i2_c_transport.html#a9f07b5e8204c1f09403f000ff0a063ff',1,'daisy::Apds9960I2CTransport::Read()'],['../classdaisy_1_1_ring_buffer.html#a112c8553ddc197ad491be9bd8ffabaf9',1,'daisy::RingBuffer::Read()'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#a5135f3de87d57d04dbde0ab633370251',1,'daisy::RingBuffer< T, 0 >::Read()']]], + ['read_19',['Read',['../classdaisy_1_1_tlv493d_i2_c_transport.html#aab39a053d2e2b59cba8baf13d6d1275d',1,'daisy::Tlv493dI2CTransport::Read()'],['../classdaisy_1_1_neo_trellis_i2_c_transport.html#aab55ca305e93d3777632c65321becd22',1,'daisy::NeoTrellisI2CTransport::Read()'],['../classdaisy_1_1_neo_pixel_i2_c_transport.html#a85e51e2e596f772b25b9966d884fcd4a',1,'daisy::NeoPixelI2CTransport::Read()'],['../classdaisy_1_1_mpr121_i2_c_transport.html#aa95902f995e64b0e2d44cfef43ef290e',1,'daisy::Mpr121I2CTransport::Read()'],['../classdaisy_1_1_mcp23_x17.html#a247be516b21cbb139bfb065301c07983',1,'daisy::Mcp23X17::Read()'],['../classdaisy_1_1_icm20948_spi_transport.html#abf3554aad73a2fcbf397dede500319e7',1,'daisy::Icm20948SpiTransport::Read()'],['../classdaisy_1_1_icm20948_i2_c_transport.html#a011b575c3f47fde4319b21a211a46654',1,'daisy::Icm20948I2CTransport::Read()'],['../classdaisy_1_1_dps310_spi_transport.html#aa977dd1473bcfe08dea86f5135a1e9e2',1,'daisy::Dps310SpiTransport::Read()'],['../classdaisy_1_1_dps310_i2_c_transport.html#a40162180243c83a1e86cd28c22ba1d0d',1,'daisy::Dps310I2CTransport::Read()'],['../classdaisy_1_1_apds9960_i2_c_transport.html#a9f07b5e8204c1f09403f000ff0a063ff',1,'daisy::Apds9960I2CTransport::Read()'],['../classdaisy_1_1_switch3.html#a4fd5caa658851e7732d9a9e3cc200556',1,'daisy::Switch3::Read()'],['../classdaisy_1_1_g_p_i_o.html#a7671cd340ee06976816c354b5dd4f8a4',1,'daisy::GPIO::Read()'],['../classdaisy_1_1_ring_buffer.html#a112c8553ddc197ad491be9bd8ffabaf9',1,'daisy::RingBuffer::Read()'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#a5135f3de87d57d04dbde0ab633370251',1,'daisy::RingBuffer< T, 0 >::Read()']]], ['read16_20',['Read16',['../classdaisy_1_1_dps310_i2_c_transport.html#a7ad7758e8a4a62d2db7f2d02a1dcbec3',1,'daisy::Dps310I2CTransport::Read16()'],['../classdaisy_1_1_dps310_spi_transport.html#a24ce7507be64d6adff897139caeaabee',1,'daisy::Dps310SpiTransport::Read16()'],['../classdaisy_1_1_dps310.html#a5efac61910adc2f4b8f3f7a93ff3a23e',1,'daisy::Dps310::Read16(uint8_t reg)']]], ['read16_5fle_21',['Read16_LE',['../classdaisy_1_1_dps310.html#a2f949a8bfb79117da6bcfda3ab07b2c7',1,'daisy::Dps310']]], ['read16r_22',['Read16R',['../classdaisy_1_1_apds9960.html#a099b346f98b398a252868c1d250c0a35',1,'daisy::Apds9960']]], ['read24_23',['Read24',['../classdaisy_1_1_dps310_i2_c_transport.html#a1d8fef21e50b865bc583a428f1d621de',1,'daisy::Dps310I2CTransport::Read24()'],['../classdaisy_1_1_dps310_spi_transport.html#a27f217fa2447d0af9ca6d20a6187af89',1,'daisy::Dps310SpiTransport::Read24()'],['../classdaisy_1_1_dps310.html#a940fda059ad39a6baaab6001d3880493',1,'daisy::Dps310::Read24()']]], - ['read8_24',['Read8',['../classdaisy_1_1_dps310_i2_c_transport.html#a2e1de506134bc891b65a204443f70c9f',1,'daisy::Dps310I2CTransport::Read8()'],['../classdaisy_1_1_dps310_spi_transport.html#a7f279c9f407a2129090c335f6e5fd2b0',1,'daisy::Dps310SpiTransport::Read8()'],['../classdaisy_1_1_dps310.html#ab4ae4d6ee618584e7ff46c800cd2e7b5',1,'daisy::Dps310::Read8()'],['../classdaisy_1_1_icm20948_i2_c_transport.html#a159abd6dce208e70d3d4a44846e06dc4',1,'daisy::Icm20948I2CTransport::Read8()'],['../classdaisy_1_1_icm20948_spi_transport.html#a6e6ccd1b204c985653ed92a699ebed2a',1,'daisy::Icm20948SpiTransport::Read8()'],['../classdaisy_1_1_icm20948.html#ac7d0a07dfcd1eb78852c8bc91c9c842b',1,'daisy::Icm20948::Read8()'],['../classdaisy_1_1_neo_pixel_i2_c_transport.html#a521e325e0931543e3a28563543e85875',1,'daisy::NeoPixelI2CTransport::Read8()'],['../classdaisy_1_1_neo_pixel.html#a9c8c82427371f672b3f8f8a7ba25ad5f',1,'daisy::NeoPixel::Read8()'],['../classdaisy_1_1_neo_trellis_i2_c_transport.html#ac8ecb136d2f865d63ea0bd01c72da3c3',1,'daisy::NeoTrellisI2CTransport::Read8()'],['../classdaisy_1_1_neo_trellis.html#a9cb47f7b2a46bb73b196d078b971020b',1,'daisy::NeoTrellis::Read8()'],['../classdaisy_1_1_apds9960.html#a5cd389597fe2f129725ca356999005c2',1,'daisy::Apds9960::Read8()']]], - ['read_5fcmd_25',['READ_CMD',['../group__flash.html#ga21623e2a5501c821da54dd76ffc1d077',1,'READ_CMD: flash_IS25LP080D.h'],['../group__flash.html#ga21623e2a5501c821da54dd76ffc1d077',1,'READ_CMD: flash_IS25LP064A.h']]], + ['read8_24',['Read8',['../classdaisy_1_1_apds9960.html#a5cd389597fe2f129725ca356999005c2',1,'daisy::Apds9960::Read8()'],['../classdaisy_1_1_dps310_i2_c_transport.html#a2e1de506134bc891b65a204443f70c9f',1,'daisy::Dps310I2CTransport::Read8()'],['../classdaisy_1_1_dps310_spi_transport.html#a7f279c9f407a2129090c335f6e5fd2b0',1,'daisy::Dps310SpiTransport::Read8()'],['../classdaisy_1_1_dps310.html#ab4ae4d6ee618584e7ff46c800cd2e7b5',1,'daisy::Dps310::Read8()'],['../classdaisy_1_1_icm20948_i2_c_transport.html#a159abd6dce208e70d3d4a44846e06dc4',1,'daisy::Icm20948I2CTransport::Read8()'],['../classdaisy_1_1_icm20948_spi_transport.html#a6e6ccd1b204c985653ed92a699ebed2a',1,'daisy::Icm20948SpiTransport::Read8()'],['../classdaisy_1_1_icm20948.html#ac7d0a07dfcd1eb78852c8bc91c9c842b',1,'daisy::Icm20948::Read8()'],['../classdaisy_1_1_neo_pixel_i2_c_transport.html#a521e325e0931543e3a28563543e85875',1,'daisy::NeoPixelI2CTransport::Read8()'],['../classdaisy_1_1_neo_pixel.html#a9c8c82427371f672b3f8f8a7ba25ad5f',1,'daisy::NeoPixel::Read8()'],['../classdaisy_1_1_neo_trellis_i2_c_transport.html#ac8ecb136d2f865d63ea0bd01c72da3c3',1,'daisy::NeoTrellisI2CTransport::Read8()'],['../classdaisy_1_1_neo_trellis.html#a9cb47f7b2a46bb73b196d078b971020b',1,'daisy::NeoTrellis::Read8()']]], + ['read_5fcmd_25',['READ_CMD',['../group__flash.html#ga21623e2a5501c821da54dd76ffc1d077',1,'READ_CMD: flash_IS25LP064A.h'],['../group__flash.html#ga21623e2a5501c821da54dd76ffc1d077',1,'READ_CMD: flash_IS25LP080D.h']]], ['read_5fext_5fread_5fparam_5fcmd_26',['READ_EXT_READ_PARAM_CMD',['../group__flash.html#ga3d390e71fdce7913eebf99002b1945b8',1,'flash_IS25LP080D.h']]], - ['read_5ffunction_5fregister_27',['READ_FUNCTION_REGISTER',['../group__flash.html#gacea7eb2801a5c3351b657f834695f36e',1,'READ_FUNCTION_REGISTER: flash_IS25LP064A.h'],['../group__flash.html#gacea7eb2801a5c3351b657f834695f36e',1,'READ_FUNCTION_REGISTER: flash_IS25LP080D.h']]], - ['read_5fid_5fcmd_28',['READ_ID_CMD',['../group__flash.html#gafad735439bdb43ab280755aa4f129e05',1,'READ_ID_CMD: flash_IS25LP064A.h'],['../group__flash.html#gafad735439bdb43ab280755aa4f129e05',1,'READ_ID_CMD: flash_IS25LP080D.h']]], - ['read_5fid_5fcmd2_29',['READ_ID_CMD2',['../group__flash.html#gac5ec3b44ff1efb54410cac6d360d50db',1,'READ_ID_CMD2: flash_IS25LP064A.h'],['../group__flash.html#gac5ec3b44ff1efb54410cac6d360d50db',1,'READ_ID_CMD2: flash_IS25LP080D.h']]], + ['read_5ffunction_5fregister_27',['READ_FUNCTION_REGISTER',['../group__flash.html#gacea7eb2801a5c3351b657f834695f36e',1,'READ_FUNCTION_REGISTER: flash_IS25LP080D.h'],['../group__flash.html#gacea7eb2801a5c3351b657f834695f36e',1,'READ_FUNCTION_REGISTER: flash_IS25LP064A.h']]], + ['read_5fid_5fcmd_28',['READ_ID_CMD',['../group__flash.html#gafad735439bdb43ab280755aa4f129e05',1,'READ_ID_CMD: flash_IS25LP080D.h'],['../group__flash.html#gafad735439bdb43ab280755aa4f129e05',1,'READ_ID_CMD: flash_IS25LP064A.h']]], + ['read_5fid_5fcmd2_29',['READ_ID_CMD2',['../group__flash.html#gac5ec3b44ff1efb54410cac6d360d50db',1,'READ_ID_CMD2: flash_IS25LP080D.h'],['../group__flash.html#gac5ec3b44ff1efb54410cac6d360d50db',1,'READ_ID_CMD2: flash_IS25LP064A.h']]], ['read_5fmanufact_5fand_5fid_30',['READ_MANUFACT_AND_ID',['../group__flash.html#ga11e012cf5dd37a7ca010df9be2e5c9a8',1,'READ_MANUFACT_AND_ID: flash_IS25LP080D.h'],['../group__flash.html#ga11e012cf5dd37a7ca010df9be2e5c9a8',1,'READ_MANUFACT_AND_ID: flash_IS25LP064A.h']]], ['read_5fread_5fparam_5freg_5fcmd_31',['READ_READ_PARAM_REG_CMD',['../group__flash.html#ga222437d6975ac6ea75f60867cff60554',1,'flash_IS25LP080D.h']]], - ['read_5fserial_5fflash_5fdisco_5fparam_5fcmd_32',['READ_SERIAL_FLASH_DISCO_PARAM_CMD',['../group__flash.html#ga216fff040d8bab7b5df5591ebfc2c5d6',1,'READ_SERIAL_FLASH_DISCO_PARAM_CMD: flash_IS25LP080D.h'],['../group__flash.html#ga216fff040d8bab7b5df5591ebfc2c5d6',1,'READ_SERIAL_FLASH_DISCO_PARAM_CMD: flash_IS25LP064A.h']]], - ['read_5fstatus_5freg_5fcmd_33',['READ_STATUS_REG_CMD',['../group__flash.html#gaa3c6b4a899c5b0875dfcf503f1e41b63',1,'READ_STATUS_REG_CMD: flash_IS25LP080D.h'],['../group__flash.html#gaa3c6b4a899c5b0875dfcf503f1e41b63',1,'READ_STATUS_REG_CMD: flash_IS25LP064A.h']]], + ['read_5fserial_5fflash_5fdisco_5fparam_5fcmd_32',['READ_SERIAL_FLASH_DISCO_PARAM_CMD',['../group__flash.html#ga216fff040d8bab7b5df5591ebfc2c5d6',1,'READ_SERIAL_FLASH_DISCO_PARAM_CMD: flash_IS25LP064A.h'],['../group__flash.html#ga216fff040d8bab7b5df5591ebfc2c5d6',1,'READ_SERIAL_FLASH_DISCO_PARAM_CMD: flash_IS25LP080D.h']]], + ['read_5fstatus_5freg_5fcmd_33',['READ_STATUS_REG_CMD',['../group__flash.html#gaa3c6b4a899c5b0875dfcf503f1e41b63',1,'READ_STATUS_REG_CMD: flash_IS25LP064A.h'],['../group__flash.html#gaa3c6b4a899c5b0875dfcf503f1e41b63',1,'READ_STATUS_REG_CMD: flash_IS25LP080D.h']]], ['read_5funique_5fid_34',['READ_UNIQUE_ID',['../group__flash.html#gab326593933b21da8d3fb2765aca1d282',1,'READ_UNIQUE_ID: flash_IS25LP080D.h'],['../group__flash.html#gab326593933b21da8d3fb2765aca1d282',1,'READ_UNIQUE_ID: flash_IS25LP064A.h']]], - ['readable_35',['Readable',['../classdaisy_1_1_uart_handler.html#a4b8cad10b4f9a9520d2248c567babcc1',1,'daisy::UartHandler::Readable()'],['../classdaisy_1_1_midi_usb_transport.html#a826d042793bbbf38f5b19aab51207702',1,'daisy::MidiUsbTransport::Readable()'],['../classdaisy_1_1_midi_uart_transport.html#a3003a674263cd011b8b61ef4de02c6b0',1,'daisy::MidiUartTransport::Readable()']]], - ['readable_36',['readable',['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#af813b904145707cef9794fbd8346f066',1,'daisy::RingBuffer< T, 0 >::readable()'],['../classdaisy_1_1_ring_buffer.html#a7055d8829240337fc8979fa3eba2341c',1,'daisy::RingBuffer::readable()']]], - ['readablefifo_37',['ReadableFifo',['../classdaisy_1_1_uart_handler.html#ac3af4732fb0a31c38d182248e80413a2',1,'daisy::UartHandler']]], - ['readaccelrange_38',['ReadAccelRange',['../classdaisy_1_1_icm20948.html#a303b9e1efd4abffc802c356934971b40',1,'daisy::Icm20948']]], - ['readanalogpinraw_39',['ReadAnalogPinRaw',['../classdaisy_1_1_m_a_x11300_driver.html#a2fc9ed751123bc6dbcff9b64d234a638',1,'daisy::MAX11300Driver']]], - ['readanalogpinvolts_40',['ReadAnalogPinVolts',['../classdaisy_1_1_m_a_x11300_driver.html#ac1f64f0578d7dd888e75f4ad4ecd4aff',1,'daisy::MAX11300Driver']]], - ['readbits_41',['ReadBits',['../classdaisy_1_1_icm20948.html#a9dee0aeead93ce6fc0f9a6221a802349',1,'daisy::Icm20948::ReadBits()'],['../classdaisy_1_1_dps310.html#aaf7a424972d2e810208fffed986ef1d5',1,'daisy::Dps310::ReadBits()']]], - ['readdataataddress_42',['ReadDataAtAddress',['../classdaisy_1_1_i2_c_handle.html#a2a7a2bcf654a383c6032a86a13645ea3',1,'daisy::I2CHandle']]], - ['readdigitalpin_43',['ReadDigitalPin',['../classdaisy_1_1_m_a_x11300_driver.html#a865eed869d1cdb669896b0ca4dfda683',1,'daisy::MAX11300Driver']]], - ['readexternalregister_44',['ReadExternalRegister',['../classdaisy_1_1_icm20948.html#a4fda80b24df448f0648c1a9fe5179a8d',1,'daisy::Icm20948']]], - ['readgesture_45',['ReadGesture',['../classdaisy_1_1_apds9960.html#a2223fb264bb7284f6a294a311f0fa490',1,'daisy::Apds9960']]], - ['readgyrorange_46',['ReadGyroRange',['../classdaisy_1_1_icm20948.html#ae848d58d1272c93f82d3cdb2bb989826',1,'daisy::Icm20948']]], - ['readkeypad_47',['ReadKeypad',['../classdaisy_1_1_neo_trellis.html#ad8124f8933fd9894ddcd54ca6e6df15a',1,'daisy::NeoTrellis']]], - ['readlen_48',['ReadLen',['../classdaisy_1_1_neo_trellis.html#a5f1a25ea0f51d749c420cbd6c502605a',1,'daisy::NeoTrellis::ReadLen()'],['../classdaisy_1_1_neo_pixel_i2_c_transport.html#ac55451524996bd07b4870a8e98dc948b',1,'daisy::NeoPixelI2CTransport::ReadLen()'],['../classdaisy_1_1_neo_trellis_i2_c_transport.html#aeb052ab80fb5e310c2440d83e677af78',1,'daisy::NeoTrellisI2CTransport::ReadLen()'],['../classdaisy_1_1_neo_pixel.html#a7749453367c03ba2118b197cffe3c187',1,'daisy::NeoPixel::ReadLen()']]], - ['readmagregister_49',['ReadMagRegister',['../classdaisy_1_1_icm20948.html#ac9875cd18b2739d8fc2cacce3c0d348b',1,'daisy::Icm20948']]], - ['readout_50',['ReadOut',['../classdaisy_1_1_tlv493d.html#ac2ac2ef4689e1b66faae9920b10eb055',1,'daisy::Tlv493d']]], - ['readpin_51',['ReadPin',['../classdaisy_1_1_mcp23_x17.html#aeaabf2265db536f7f146f62c8716c1dc',1,'daisy::Mcp23X17']]], - ['readport_52',['ReadPort',['../classdaisy_1_1_mcp23_x17.html#a4e30ad0854d551c84cf76cf63577e624',1,'daisy::Mcp23X17']]], - ['readproximity_53',['ReadProximity',['../classdaisy_1_1_apds9960.html#a9a6ceec95f3c07ccdffe0dbeefe8b73b',1,'daisy::Apds9960']]], - ['readreg_54',['ReadReg',['../classdaisy_1_1_mcp23017_transport.html#a3404e29bb09f311706aa0fada3fb16e7',1,'daisy::Mcp23017Transport::ReadReg(MCPRegister reg, uint8_t &portA, uint8_t &portB)'],['../classdaisy_1_1_mcp23017_transport.html#a856a58cd97fd8a98442f14190a4cecd1',1,'daisy::Mcp23017Transport::ReadReg(MCPRegister reg)'],['../classdaisy_1_1_icm20948.html#ae5764b8f298c52ec37a0a3cb95c3b324',1,'daisy::Icm20948::ReadReg()'],['../classdaisy_1_1_icm20948_spi_transport.html#ad7a5767ad338dd5d9e2a80e04cdf9a4a',1,'daisy::Icm20948SpiTransport::ReadReg()'],['../classdaisy_1_1_icm20948_i2_c_transport.html#ab76c806e1ac36e3ae983e75dd5cfd207',1,'daisy::Icm20948I2CTransport::ReadReg()'],['../classdaisy_1_1_dps310.html#a91ee65deaeec2dfaf85fcb9652b2705d',1,'daisy::Dps310::ReadReg()'],['../classdaisy_1_1_dps310_spi_transport.html#ab180ddf3e5d7f8091b9c85fd938e5385',1,'daisy::Dps310SpiTransport::ReadReg()'],['../classdaisy_1_1_dps310_i2_c_transport.html#aed9e66c7447996ab3d9223a911450497',1,'daisy::Dps310I2CTransport::ReadReg()']]], - ['readregister16_55',['ReadRegister16',['../classdaisy_1_1_mpr121.html#ae89924aa405ee5ae5f2c5b40cccf86a9',1,'daisy::Mpr121']]], - ['readregister8_56',['ReadRegister8',['../classdaisy_1_1_mpr121.html#a7ba853b16da4d77f5f3637feaf5b63b8',1,'daisy::Mpr121']]], - ['reads16_57',['ReadS16',['../classdaisy_1_1_dps310.html#a711b21ddb3d3c70d4849b1b784930d97',1,'daisy::Dps310']]], - ['reads16_5fle_58',['ReadS16_LE',['../classdaisy_1_1_dps310.html#a2f5262ff4f5d56d189465e029357ca7d',1,'daisy::Dps310']]], - ['ready_59',['Ready',['../classdaisy_1_1_m_a_x11300_multi_slave_spi_transport.html#ad5e71e80d2be5e170db6c4b5219b6aab',1,'daisy::MAX11300MultiSlaveSpiTransport']]], - ['receive_60',['RECEIVE',['../structdaisy_1_1_sai_handle_1_1_config.html#a80ffb7d40b82652f1550e8cf6ca56f81a42ddaaef1ffd16ad35901150add8f8f2',1,'daisy::SaiHandle::Config::RECEIVE'],['../classdaisy_1_1_i2_c_handle.html#a8f815f7a77948286f0fa0065a1f7c54ca42ddaaef1ffd16ad35901150add8f8f2',1,'daisy::I2CHandle::RECEIVE']]], - ['receiveblocking_61',['ReceiveBlocking',['../classdaisy_1_1_i2_c_handle.html#a5232996113cc203d72cb75e57b62fa9d',1,'daisy::I2CHandle']]], - ['receivecallback_62',['ReceiveCallback',['../class_usb_handle.html#a33ca9123252e485a3d2045590e5e6217',1,'UsbHandle::ReceiveCallback'],['../class_usb_handle.html#a33ca9123252e485a3d2045590e5e6217',1,'UsbHandle::ReceiveCallback']]], - ['receivedma_63',['ReceiveDma',['../classdaisy_1_1_i2_c_handle.html#ad6f3fdb091285a40a34ca2ebf09a94a8',1,'daisy::I2CHandle']]], - ['record_64',['Record',['../classdaisy_1_1_voct_calibration.html#ad793014c6d82e680aa337fb23e13608d',1,'daisy::VoctCalibration']]], - ['rectangle_65',['Rectangle',['../classdaisy_1_1_rectangle.html',1,'daisy::Rectangle'],['../classdaisy_1_1_rectangle.html#a875e0b0ab17e489ca643db34355dc4d4',1,'daisy::Rectangle::Rectangle(const Rectangle &other)'],['../classdaisy_1_1_rectangle.html#ae3fba9711abedffcf9d4dc2af4080571',1,'daisy::Rectangle::Rectangle()'],['../classdaisy_1_1_rectangle.html#a5fe610247716deabd714b4ba58435e7d',1,'daisy::Rectangle::Rectangle(int16_t width, int16_t height)'],['../classdaisy_1_1_rectangle.html#ab91210090cfb10b5a0971c8c43d09eb3',1,'daisy::Rectangle::Rectangle(int16_t x, int16_t y, int16_t width, int16_t height)']]], - ['red_66',['Red',['../classdaisy_1_1_color.html#ab645aa34a553a044e9c901546e78ed8f',1,'daisy::Color']]], - ['red_67',['RED',['../classdaisy_1_1_color.html#af93d31d5fc63705c228bf9da407c9a40a8b805ea394bedf4786fd371ea10283b8',1,'daisy::Color']]], - ['red8_68',['Red8',['../classdaisy_1_1_color.html#af39d1a11445e8bfff1ea2bd6e9ec7748',1,'daisy::Color']]], - ['reduced_69',['Reduced',['../classdaisy_1_1_rectangle.html#a9cba11d030dff444dd6d31dbf6fd9d13',1,'daisy::Rectangle::Reduced(int16_t xToReduce, int16_t yToReduce) const'],['../classdaisy_1_1_rectangle.html#a6eea3884b558875d5ac7aab86062e2b8',1,'daisy::Rectangle::Reduced(int16_t sizeToReduce) const']]], - ['reenumerate_70',['ReEnumerate',['../classdaisy_1_1_u_s_b_host_handle.html#a369f062c8add67f2f6963bb87286d6ed',1,'daisy::USBHostHandle']]], - ['reference_5fhome_2emd_71',['reference_home.md',['../reference__home_8md.html',1,'']]], - ['reg_72',['reg',['../uniondaisy_1_1_neo_trellis_1_1key_state.html#ab8bd361a78f11e8ef821ad5958a5d68e',1,'daisy::NeoTrellis::keyState::reg'],['../uniondaisy_1_1_neo_trellis_1_1key_event.html#a03c1734baa89ec838aba7f5e103d5ecd',1,'daisy::NeoTrellis::keyEvent::reg'],['../uniondaisy_1_1_neo_trellis_1_1key_event_raw.html#a429c5998f3484a24ceed27640a8313f6',1,'daisy::NeoTrellis::keyEventRaw::reg']]], - ['registercallback_73',['RegisterCallback',['../classdaisy_1_1_neo_trellis.html#ab8560c44784f6eca6807693db0b2535d',1,'daisy::NeoTrellis']]], - ['registers_5fe_74',['Registers_e',['../classdaisy_1_1_tlv493d.html#ac96637647d52f3cfbcd92562aa2eb086',1,'daisy::Tlv493d']]], - ['regmap_75',['RegMap',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798',1,'daisy::Mpr121']]], - ['regmask_5fread_76',['REGMASK_READ',['../tlv493d_8h.html#a4090f1c41d6fdf9b3a8fd5b835fc77e3',1,'tlv493d.h']]], - ['regmask_5ft_77',['RegMask_t',['../structdaisy_1_1_tlv493d_1_1_reg_mask__t.html',1,'daisy::Tlv493d']]], - ['regmask_5fwrite_78',['REGMASK_WRITE',['../tlv493d_8h.html#ab2bd2ce86fd129f2595ab4bc17f08a9f',1,'tlv493d.h']]], - ['regmasks_79',['RegMasks',['../classdaisy_1_1_tlv493d.html#a62c6342362ff4c6bba74c7a186771244',1,'daisy::Tlv493d']]], - ['relcardadd_80',['RelCardAdd',['../struct_d_s_y___s_d___card_info_type_def.html#a5c530fb4ff9a3032125d75a44e9b0a0a',1,'DSY_SD_CardInfoTypeDef']]], - ['release_5fthreshold_81',['release_threshold',['../structdaisy_1_1_mpr121_1_1_config.html#a0c336f8c4c4d0ce11dfcc442ae1297a8',1,'daisy::Mpr121::Config']]], - ['remove_82',['Remove',['../classdaisy_1_1_stack_base.html#a0aca4cedbec62035867fff63a2be529f',1,'daisy::StackBase::Remove()'],['../classdaisy_1_1_f_i_f_o_base.html#a7a040559220ea37332b62fbb9dc82e7d',1,'daisy::FIFOBase::Remove()']]], - ['removeallequalto_83',['RemoveAllEqualTo',['../classdaisy_1_1_stack_base.html#a5c246e49801ddb0c162567a6cdc84a58',1,'daisy::StackBase::RemoveAllEqualTo()'],['../classdaisy_1_1_f_i_f_o_base.html#aa3f1d45b20a1d63789b4346bbfec5404',1,'daisy::FIFOBase::RemoveAllEqualTo()']]], - ['removefrombottom_84',['RemoveFromBottom',['../classdaisy_1_1_rectangle.html#a39ac3cccf36cafade673945385c5601b',1,'daisy::Rectangle']]], - ['removefromleft_85',['RemoveFromLeft',['../classdaisy_1_1_rectangle.html#a41bcd42ae3b23cb259e354665ec68678',1,'daisy::Rectangle']]], - ['removefromright_86',['RemoveFromRight',['../classdaisy_1_1_rectangle.html#a2e2b0d5e50b0b1224851a6287087a68d',1,'daisy::Rectangle']]], - ['removefromtop_87',['RemoveFromTop',['../classdaisy_1_1_rectangle.html#a8609526904dc174d4e089ae44147357c',1,'daisy::Rectangle']]], - ['removeprefix_88',['RemovePrefix',['../classdaisy_1_1_fixed_cap_str_base.html#a43b0c922c7abc563268e92d881ffaa36',1,'daisy::FixedCapStrBase']]], - ['removesuffix_89',['RemoveSuffix',['../classdaisy_1_1_fixed_cap_str_base.html#aafa6b303b8f9b6ed912af9adebd5ff2d',1,'daisy::FixedCapStrBase']]], - ['reset_90',['Reset',['../classdaisy_1_1_fixed_cap_str_base.html#a9f188475678bb61b8737e80de75b2012',1,'daisy::FixedCapStrBase::Reset()'],['../group__midi__events.html#gga3069be23e98a0299bbfa8f1759754d45a51ff911624e8d6e5a76ce0433d00130f',1,'daisy::Reset']]], - ['reset_91',['reset',['../classdaisy_1_1_dps310.html#a2cc9301810c24671b5b21fc0253e5980',1,'daisy::Dps310::reset()'],['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#af882736a325872cbb3814e8b25805742',1,'daisy::SSD130x4WireSoftSpiTransport::Config::reset'],['../structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a3040b9e73290c3c0d562169b5f630c0e',1,'daisy::SSD130x4WireSpiTransport::Config::reset']]], - ['reset_92',['Reset',['../classdaisy_1_1_fixed_cap_str_base.html#a4a868d708e6d2846a88328b292dec877',1,'daisy::FixedCapStrBase::Reset()'],['../classdaisy_1_1_cpu_load_meter.html#a674f7c975cafc8bc89cba9f4a78308dc',1,'daisy::CpuLoadMeter::Reset()'],['../classdaisy_1_1_icm20948.html#a5a3abfded17083721e363d9fb76d782d',1,'daisy::Icm20948::Reset()']]], - ['reset_5f_93',['Reset_',['../classdaisy_1_1_fixed_cap_str_base.html#a4586e2260046cb17c6e78cdbfd8efa9e',1,'daisy::FixedCapStrBase']]], - ['reset_5fenable_5fcmd_94',['RESET_ENABLE_CMD',['../group__flash.html#gaaa9f0b43b7e4f0f5caf4aa703dc794eb',1,'RESET_ENABLE_CMD: flash_IS25LP064A.h'],['../group__flash.html#gaaa9f0b43b7e4f0f5caf4aa703dc794eb',1,'RESET_ENABLE_CMD: flash_IS25LP080D.h']]], - ['reset_5fmemory_5fcmd_95',['RESET_MEMORY_CMD',['../group__flash.html#gad8f71231a1b5f3324659e18aa1c84658',1,'RESET_MEMORY_CMD: flash_IS25LP064A.h'],['../group__flash.html#gad8f71231a1b5f3324659e18aa1c84658',1,'RESET_MEMORY_CMD: flash_IS25LP080D.h']]], - ['resetallcontrollers_96',['ResetAllControllers',['../group__midi__events.html#ggaf9da54b73be4dec526670bd6c53ad98aa16372b6654282e39482508fd9dd45752',1,'daisy']]], - ['resetallcontrollersevent_97',['ResetAllControllersEvent',['../structdaisy_1_1_reset_all_controllers_event.html',1,'daisy']]], - ['resetat_98',['ResetAt',['../classdaisy_1_1_fixed_cap_str_base.html#a4a14a820d2f7bdf7cad8a07a53771296',1,'daisy::FixedCapStrBase']]], - ['resetat_5f_99',['ResetAt_',['../classdaisy_1_1_fixed_cap_str_base.html#aeada8ffe33966f911ed0c7af9d4c345d',1,'daisy::FixedCapStrBase']]], - ['resetcounts_100',['ResetCounts',['../classdaisy_1_1_apds9960.html#a30065fbd4498c53073e95ea6e1142c22',1,'daisy::Apds9960']]], - ['reseti2cmaster_101',['ResetI2CMaster',['../classdaisy_1_1_icm20948.html#a124bb4a956a4082ed8052d454cecc8ef',1,'daisy::Icm20948']]], - ['resettobootloader_102',['ResetToBootloader',['../classdaisy_1_1_system.html#ae7e0bb7a214d85ceaa2264f2d00afd5a',1,'daisy::System']]], - ['resettodefault_103',['ResetToDefault',['../classdaisy_1_1_mapped_string_list_value.html#aa1edf81d83cf2ce90d56d0f36f7a50a9',1,'daisy::MappedStringListValue::ResetToDefault()'],['../classdaisy_1_1_mapped_int_value.html#a921f370452a295e5f52f0483b3559a83',1,'daisy::MappedIntValue::ResetToDefault()'],['../classdaisy_1_1_mapped_float_value.html#accc506533ee066815a8c78f3b7a6cbfc',1,'daisy::MappedFloatValue::ResetToDefault()'],['../classdaisy_1_1_mapped_value.html#a60288a18a6173903f3a7e4c5c9aebb84',1,'daisy::MappedValue::ResetToDefault()']]], - ['restart_104',['Restart',['../classdaisy_1_1_wav_player.html#ac3b2f9f9cdf18ea861be227dcffd5da9',1,'daisy::WavPlayer']]], - ['restoredefaults_105',['RestoreDefaults',['../classdaisy_1_1_persistent_storage.html#ad573b53a242aae9743eea18b93f6e39d',1,'daisy::PersistentStorage']]], - ['result_106',['Result',['../namespacedaisy_1_1_m_a_x11300_types.html#a24cefdb4cc0f16357cc883d597243a81',1,'daisy::MAX11300Types::Result'],['../classdaisy_1_1_wav_writer.html#ab6477ad91d6d9f4804ac9150edd33e1b',1,'daisy::WavWriter::Result'],['../classdaisy_1_1_wave_table_loader.html#ab458927d7a82e236e06456694aadc0dd',1,'daisy::WaveTableLoader::Result'],['../classdaisy_1_1_uart_handler.html#ac45c7ac82e6f0328b4e7b03fd12e7237',1,'daisy::UartHandler::Result'],['../classdaisy_1_1_timer_handle.html#a7425f809b115688f70d7a12acd5a16c7',1,'daisy::TimerHandle::Result'],['../classdaisy_1_1_apds9960.html#ab80195f03d28d8e36ed5e062155b8b8f',1,'daisy::Apds9960::Result'],['../classdaisy_1_1_pcm3060.html#a13c6ad4ee97983297e49fccbb59f0c30',1,'daisy::Pcm3060::Result'],['../classdaisy_1_1_wm8731.html#acee74b7ae4c637c45d33afcb91da7988',1,'daisy::Wm8731::Result'],['../classdaisy_1_1_dot_star.html#af936f3ee5cdee9c99c7cd0d620de7a83',1,'daisy::DotStar::Result'],['../classdaisy_1_1_dps310.html#a11fd577a6158c2550b7bf892357b3ecf',1,'daisy::Dps310::Result'],['../classdaisy_1_1_icm20948.html#abc49c581560427f3cafd11ffb74e8988',1,'daisy::Icm20948::Result'],['../classdaisy_1_1_m_a_x11300_multi_slave_spi_transport.html#afbc7d089dae0efed27daa50e1a6967ef',1,'daisy::MAX11300MultiSlaveSpiTransport::Result'],['../classdaisy_1_1_mpr121.html#ab886fbf5c32dfc9c2caba579f5b465fb',1,'daisy::Mpr121::Result'],['../classdaisy_1_1_neo_pixel.html#afc73663368350e83adc8a99817f98dab',1,'daisy::NeoPixel::Result'],['../classdaisy_1_1_neo_trellis.html#aad11f0a1a3948a419dc8f58f241feacd',1,'daisy::NeoTrellis::Result'],['../class_sdram_handle.html#ab6b59b2a4b1abdec7369ffcdceac73f7',1,'SdramHandle::Result'],['../classdaisy_1_1_tlv493d.html#a3a70517c2f74f3ac8b4bc12dd8bd6836',1,'daisy::Tlv493d::Result'],['../classdaisy_1_1_audio_handle.html#afd70b35cda9ec575d62d4abdcc453c30',1,'daisy::AudioHandle::Result'],['../class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6',1,'UsbHandle::Result'],['../class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6',1,'UsbHandle::Result'],['../classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113',1,'daisy::USBHostHandle::Result'],['../classdaisy_1_1_dac_handle.html#a66e1c535c1809b56744d842005008d54',1,'daisy::DacHandle::Result'],['../classdaisy_1_1_i2_c_handle.html#a4896eede457dea6ed2ed68d9b06e8e16',1,'daisy::I2CHandle::Result'],['../classdaisy_1_1_q_s_p_i_handle.html#aac911aafbe4840fa80c4181982a4c72e',1,'daisy::QSPIHandle::Result'],['../classdaisy_1_1_sai_handle.html#a5463939a5d7fe1a363cfb9beb602d468',1,'daisy::SaiHandle::Result'],['../classdaisy_1_1_sdmmc_handler.html#ad3aa247c4e2a3e8da344a64673768970',1,'daisy::SdmmcHandler::Result'],['../classdaisy_1_1_spi_handle.html#acee8aad7e8008a2dbdfc8f260712bab7',1,'daisy::SpiHandle::Result'],['../classdaisy_1_1_fat_f_s_interface.html#a11bfd1247ea543dd276acbbb3f2342b0',1,'daisy::FatFSInterface::Result']]], - ['reversesection_107',['ReverseSection',['../classdaisy_1_1_fixed_cap_str_base.html#af1d7b42ad446ef5e6188bdf289f2d670',1,'daisy::FixedCapStrBase']]], - ['rgb_108',['RGB',['../structdaisy_1_1_dot_star_1_1_config.html#ac0d32307f8104690f4a6d15dd1943ae9a3ae8a55d4f9c2192c76d44d2d2b8e90e',1,'daisy::DotStar::Config']]], - ['rgb_5fled_2eh_109',['rgb_led.h',['../rgb__led_8h.html',1,'']]], - ['rgbled_110',['RgbLed',['../classdaisy_1_1_rgb_led.html',1,'daisy::RgbLed'],['../classdaisy_1_1_rgb_led.html#a83702469af420ecd8240571ae40677f3',1,'daisy::RgbLed::RgbLed()']]], - ['right_111',['right',['../group__ui.html#ggac734c565c1dc55cbf6b74ea942f40c1ca7c4f29407893c334a6cb7a87bf045c0d',1,'daisy']]], - ['rightbttnid_112',['rightBttnId',['../structdaisy_1_1_u_i_1_1_special_control_ids.html#a8a771125e84075486d861414aec5bdb5',1,'daisy::UI::SpecialControlIds']]], - ['ring_5fled_113',['ring_led',['../classdaisy_1_1_daisy_petal.html#a24abaac2327c0057f99b5d5a4f15bd5a',1,'daisy::DaisyPetal']]], - ['ring_5fled_5f1_114',['RING_LED_1',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682a4868bead6b4bb7b6d1e15ce3f6a34edf',1,'daisy::DaisyPetal']]], - ['ring_5fled_5f2_115',['RING_LED_2',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682ac7b3f1596a8438fac25c8696a8d8e165',1,'daisy::DaisyPetal']]], - ['ring_5fled_5f3_116',['RING_LED_3',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682a1bd8643462c5d2072526d49dd47a69db',1,'daisy::DaisyPetal']]], - ['ring_5fled_5f4_117',['RING_LED_4',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682a546d934044b1971c72a872a95e1f7391',1,'daisy::DaisyPetal']]], - ['ring_5fled_5f5_118',['RING_LED_5',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682a962ed86e4759724ea0392e07ccc89aa9',1,'daisy::DaisyPetal']]], - ['ring_5fled_5f6_119',['RING_LED_6',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682add3683515df29d7a38efde9933530895',1,'daisy::DaisyPetal']]], - ['ring_5fled_5f7_120',['RING_LED_7',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682a86e88f2c21c605b6bb514c3eaf6f330e',1,'daisy::DaisyPetal']]], - ['ring_5fled_5f8_121',['RING_LED_8',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682a1f6fc229b42f772bc9088f62ce3e5036',1,'daisy::DaisyPetal']]], - ['ring_5fled_5flast_122',['RING_LED_LAST',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682a4b60f0a2dbcfe749c77a3cf054f85e39',1,'daisy::DaisyPetal']]], - ['ringbuffer_123',['RingBuffer',['../classdaisy_1_1_ring_buffer.html',1,'daisy::RingBuffer< T, size >'],['../classdaisy_1_1_ring_buffer.html#ab6149ef245dfd8addeea22f5b020262c',1,'daisy::RingBuffer::RingBuffer()'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#a61a776017ae33a993cd911c103e12074',1,'daisy::RingBuffer< T, 0 >::RingBuffer()']]], - ['ringbuffer_2eh_124',['ringbuffer.h',['../ringbuffer_8h.html',1,'']]], - ['ringbuffer_3c_20daisy_3a_3amidievent_2c_20256_20_3e_125',['RingBuffer< daisy::MidiEvent, 256 >',['../classdaisy_1_1_ring_buffer.html',1,'daisy']]], - ['ringbuffer_3c_20t_2c_200_20_3e_126',['RingBuffer< T, 0 >',['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html',1,'daisy']]], - ['ringled_127',['RingLed',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682',1,'daisy::DaisyPetal']]], - ['rising_128',['RISING',['../classdaisy_1_1_neo_trellis.html#a08d0cfd62e053922653a0b9e78ed29c0af843fdfbc06dd0b7a40b927d3c03521b',1,'daisy::NeoTrellis']]], - ['risingedge_129',['RisingEdge',['../classdaisy_1_1_encoder.html#ab501cf73d10d81058b485c48b9eb506f',1,'daisy::Encoder::RisingEdge()'],['../classdaisy_1_1_switch.html#a71f6054840c76ebe3cb2517dc7830d34',1,'daisy::Switch::RisingEdge()']]], - ['rng_2eh_130',['rng.h',['../rng_8h.html',1,'']]], - ['roffset_131',['rOffset',['../classdaisy_1_1_neo_pixel.html#a5dc6778be3278c19b0c3175fed30d988',1,'daisy::NeoPixel']]], - ['rs_132',['rs',['../structdaisy_1_1_lcd_h_d44780_1_1_config.html#a2c6c623ffd463f0de93f2eb6706cffd3',1,'daisy::LcdHD44780::Config']]], - ['rw_133',['rw',['../structdaisy_1_1_tlv493d_1_1_reg_mask__t.html#a3914e04c88276908f21fed1db9b7e4fa',1,'daisy::Tlv493d::RegMask_t']]], - ['rx_134',['RX',['../structdaisy_1_1_uart_handler_1_1_config.html#ae0a7cc8284cbbe42f1d95797b5862084af9c24782c24c237d16e79f18e2fa9046',1,'daisy::UartHandler::Config::RX'],['../classdaisy_1_1_uart_handler.html#adbdfbf1dfaab99cf76ac7ca36d22cf00af9c24782c24c237d16e79f18e2fa9046',1,'daisy::UartHandler::RX']]], - ['rx_135',['rx',['../structdaisy_1_1_uart_handler_1_1_config.html#adb318e26f13636e1bee740fa47497392',1,'daisy::UartHandler::Config::rx'],['../structdaisy_1_1_midi_uart_transport_1_1_config.html#a84c3f711773c994ae22fbb3969573a11',1,'daisy::MidiUartTransport::Config::rx']]], - ['rx_136',['Rx',['../classdaisy_1_1_midi_usb_transport.html#a641c315e8d73411a3c7a2a8087b8f834',1,'daisy::MidiUsbTransport::Rx()'],['../classdaisy_1_1_midi_uart_transport.html#a9b30f4f8f9bc708d9f4a921eade1d7d3',1,'daisy::MidiUartTransport::Rx()']]], - ['rx_137',['RX',['../classdaisy_1_1_spi_handle.html#aa7c484882faf187c7c4153db7cf5e4daaf9c24782c24c237d16e79f18e2fa9046',1,'daisy::SpiHandle']]], - ['rx_5fbuffer_138',['rx_buffer',['../structdaisy_1_1_m_a_x11300_types_1_1_dma_buffer.html#abdc1eea126a4dca4ecc83c41ed988758',1,'daisy::MAX11300Types::DmaBuffer']]], - ['rx_5ftx_139',['RX_TX',['../classdaisy_1_1_spi_handle.html#aa7c484882faf187c7c4153db7cf5e4daaa9f94fc2b5a22b1ebff62655559f82b2',1,'daisy::SpiHandle']]], - ['rxactive_140',['RxActive',['../classdaisy_1_1_uart_handler.html#aeeb804c58c2ccf574142b2a030d2d83b',1,'daisy::UartHandler::RxActive()'],['../classdaisy_1_1_midi_usb_transport.html#abaea457dd71e7e143f7c5f5045de2b42',1,'daisy::MidiUsbTransport::RxActive()'],['../classdaisy_1_1_midi_uart_transport.html#aded78c4242d61c92eaece731f954b57e',1,'daisy::MidiUartTransport::RxActive()']]] + ['readable_35',['readable',['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#af813b904145707cef9794fbd8346f066',1,'daisy::RingBuffer< T, 0 >::readable()'],['../classdaisy_1_1_ring_buffer.html#a7055d8829240337fc8979fa3eba2341c',1,'daisy::RingBuffer::readable()']]], + ['readaccelrange_36',['ReadAccelRange',['../classdaisy_1_1_icm20948.html#a303b9e1efd4abffc802c356934971b40',1,'daisy::Icm20948']]], + ['readanalogpinraw_37',['ReadAnalogPinRaw',['../classdaisy_1_1_m_a_x11300_driver.html#a2fc9ed751123bc6dbcff9b64d234a638',1,'daisy::MAX11300Driver']]], + ['readanalogpinvolts_38',['ReadAnalogPinVolts',['../classdaisy_1_1_m_a_x11300_driver.html#ac1f64f0578d7dd888e75f4ad4ecd4aff',1,'daisy::MAX11300Driver']]], + ['readbits_39',['ReadBits',['../classdaisy_1_1_icm20948.html#a9dee0aeead93ce6fc0f9a6221a802349',1,'daisy::Icm20948::ReadBits()'],['../classdaisy_1_1_dps310.html#aaf7a424972d2e810208fffed986ef1d5',1,'daisy::Dps310::ReadBits()']]], + ['readdataataddress_40',['ReadDataAtAddress',['../classdaisy_1_1_i2_c_handle.html#a2a7a2bcf654a383c6032a86a13645ea3',1,'daisy::I2CHandle']]], + ['readdigitalpin_41',['ReadDigitalPin',['../classdaisy_1_1_m_a_x11300_driver.html#a865eed869d1cdb669896b0ca4dfda683',1,'daisy::MAX11300Driver']]], + ['readexternalregister_42',['ReadExternalRegister',['../classdaisy_1_1_icm20948.html#a4fda80b24df448f0648c1a9fe5179a8d',1,'daisy::Icm20948']]], + ['readgesture_43',['ReadGesture',['../classdaisy_1_1_apds9960.html#a2223fb264bb7284f6a294a311f0fa490',1,'daisy::Apds9960']]], + ['readgyrorange_44',['ReadGyroRange',['../classdaisy_1_1_icm20948.html#ae848d58d1272c93f82d3cdb2bb989826',1,'daisy::Icm20948']]], + ['readkeypad_45',['ReadKeypad',['../classdaisy_1_1_neo_trellis.html#ad8124f8933fd9894ddcd54ca6e6df15a',1,'daisy::NeoTrellis']]], + ['readlen_46',['ReadLen',['../classdaisy_1_1_neo_trellis.html#a5f1a25ea0f51d749c420cbd6c502605a',1,'daisy::NeoTrellis::ReadLen()'],['../classdaisy_1_1_neo_pixel.html#a7749453367c03ba2118b197cffe3c187',1,'daisy::NeoPixel::ReadLen()'],['../classdaisy_1_1_neo_pixel_i2_c_transport.html#ac55451524996bd07b4870a8e98dc948b',1,'daisy::NeoPixelI2CTransport::ReadLen()'],['../classdaisy_1_1_neo_trellis_i2_c_transport.html#aeb052ab80fb5e310c2440d83e677af78',1,'daisy::NeoTrellisI2CTransport::ReadLen()']]], + ['readmagregister_47',['ReadMagRegister',['../classdaisy_1_1_icm20948.html#ac9875cd18b2739d8fc2cacce3c0d348b',1,'daisy::Icm20948']]], + ['readout_48',['ReadOut',['../classdaisy_1_1_tlv493d.html#ac2ac2ef4689e1b66faae9920b10eb055',1,'daisy::Tlv493d']]], + ['readpin_49',['ReadPin',['../classdaisy_1_1_mcp23_x17.html#aeaabf2265db536f7f146f62c8716c1dc',1,'daisy::Mcp23X17']]], + ['readport_50',['ReadPort',['../classdaisy_1_1_mcp23_x17.html#a4e30ad0854d551c84cf76cf63577e624',1,'daisy::Mcp23X17']]], + ['readproximity_51',['ReadProximity',['../classdaisy_1_1_apds9960.html#a9a6ceec95f3c07ccdffe0dbeefe8b73b',1,'daisy::Apds9960']]], + ['readreg_52',['ReadReg',['../classdaisy_1_1_icm20948.html#ae5764b8f298c52ec37a0a3cb95c3b324',1,'daisy::Icm20948::ReadReg()'],['../classdaisy_1_1_dps310_i2_c_transport.html#aed9e66c7447996ab3d9223a911450497',1,'daisy::Dps310I2CTransport::ReadReg()'],['../classdaisy_1_1_dps310_spi_transport.html#ab180ddf3e5d7f8091b9c85fd938e5385',1,'daisy::Dps310SpiTransport::ReadReg()'],['../classdaisy_1_1_dps310.html#a91ee65deaeec2dfaf85fcb9652b2705d',1,'daisy::Dps310::ReadReg()'],['../classdaisy_1_1_icm20948_i2_c_transport.html#ab76c806e1ac36e3ae983e75dd5cfd207',1,'daisy::Icm20948I2CTransport::ReadReg()'],['../classdaisy_1_1_icm20948_spi_transport.html#ad7a5767ad338dd5d9e2a80e04cdf9a4a',1,'daisy::Icm20948SpiTransport::ReadReg()'],['../classdaisy_1_1_mcp23017_transport.html#a3404e29bb09f311706aa0fada3fb16e7',1,'daisy::Mcp23017Transport::ReadReg(MCPRegister reg, uint8_t &portA, uint8_t &portB)'],['../classdaisy_1_1_mcp23017_transport.html#a856a58cd97fd8a98442f14190a4cecd1',1,'daisy::Mcp23017Transport::ReadReg(MCPRegister reg)']]], + ['readregister16_53',['ReadRegister16',['../classdaisy_1_1_mpr121.html#ae89924aa405ee5ae5f2c5b40cccf86a9',1,'daisy::Mpr121']]], + ['readregister8_54',['ReadRegister8',['../classdaisy_1_1_mpr121.html#a7ba853b16da4d77f5f3637feaf5b63b8',1,'daisy::Mpr121']]], + ['reads16_55',['ReadS16',['../classdaisy_1_1_dps310.html#a711b21ddb3d3c70d4849b1b784930d97',1,'daisy::Dps310']]], + ['reads16_5fle_56',['ReadS16_LE',['../classdaisy_1_1_dps310.html#a2f5262ff4f5d56d189465e029357ca7d',1,'daisy::Dps310']]], + ['ready_57',['Ready',['../classdaisy_1_1_m_a_x11300_multi_slave_spi_transport.html#ad5e71e80d2be5e170db6c4b5219b6aab',1,'daisy::MAX11300MultiSlaveSpiTransport']]], + ['receive_58',['RECEIVE',['../structdaisy_1_1_sai_handle_1_1_config.html#a80ffb7d40b82652f1550e8cf6ca56f81a42ddaaef1ffd16ad35901150add8f8f2',1,'daisy::SaiHandle::Config::RECEIVE'],['../classdaisy_1_1_i2_c_handle.html#a8f815f7a77948286f0fa0065a1f7c54ca42ddaaef1ffd16ad35901150add8f8f2',1,'daisy::I2CHandle::RECEIVE']]], + ['receiveblocking_59',['ReceiveBlocking',['../classdaisy_1_1_i2_c_handle.html#a5232996113cc203d72cb75e57b62fa9d',1,'daisy::I2CHandle']]], + ['receivecallback_60',['ReceiveCallback',['../class_usb_handle.html#a33ca9123252e485a3d2045590e5e6217',1,'UsbHandle::ReceiveCallback'],['../class_usb_handle.html#a33ca9123252e485a3d2045590e5e6217',1,'UsbHandle::ReceiveCallback']]], + ['receivedma_61',['ReceiveDma',['../classdaisy_1_1_i2_c_handle.html#ad6f3fdb091285a40a34ca2ebf09a94a8',1,'daisy::I2CHandle']]], + ['record_62',['Record',['../classdaisy_1_1_voct_calibration.html#ad793014c6d82e680aa337fb23e13608d',1,'daisy::VoctCalibration']]], + ['rectangle_63',['Rectangle',['../classdaisy_1_1_rectangle.html',1,'daisy::Rectangle'],['../classdaisy_1_1_rectangle.html#ae3fba9711abedffcf9d4dc2af4080571',1,'daisy::Rectangle::Rectangle()'],['../classdaisy_1_1_rectangle.html#a5fe610247716deabd714b4ba58435e7d',1,'daisy::Rectangle::Rectangle(int16_t width, int16_t height)'],['../classdaisy_1_1_rectangle.html#ab91210090cfb10b5a0971c8c43d09eb3',1,'daisy::Rectangle::Rectangle(int16_t x, int16_t y, int16_t width, int16_t height)'],['../classdaisy_1_1_rectangle.html#a875e0b0ab17e489ca643db34355dc4d4',1,'daisy::Rectangle::Rectangle(const Rectangle &other)']]], + ['red_64',['RED',['../classdaisy_1_1_color.html#af93d31d5fc63705c228bf9da407c9a40a8b805ea394bedf4786fd371ea10283b8',1,'daisy::Color']]], + ['red_65',['Red',['../classdaisy_1_1_color.html#ab645aa34a553a044e9c901546e78ed8f',1,'daisy::Color']]], + ['red8_66',['Red8',['../classdaisy_1_1_color.html#af39d1a11445e8bfff1ea2bd6e9ec7748',1,'daisy::Color']]], + ['reduced_67',['Reduced',['../classdaisy_1_1_rectangle.html#a9cba11d030dff444dd6d31dbf6fd9d13',1,'daisy::Rectangle::Reduced(int16_t xToReduce, int16_t yToReduce) const'],['../classdaisy_1_1_rectangle.html#a6eea3884b558875d5ac7aab86062e2b8',1,'daisy::Rectangle::Reduced(int16_t sizeToReduce) const']]], + ['reenumerate_68',['ReEnumerate',['../classdaisy_1_1_u_s_b_host_handle.html#a369f062c8add67f2f6963bb87286d6ed',1,'daisy::USBHostHandle']]], + ['reference_5fhome_2emd_69',['reference_home.md',['../reference__home_8md.html',1,'']]], + ['reg_70',['reg',['../uniondaisy_1_1_neo_trellis_1_1key_event_raw.html#a429c5998f3484a24ceed27640a8313f6',1,'daisy::NeoTrellis::keyEventRaw::reg'],['../uniondaisy_1_1_neo_trellis_1_1key_state.html#ab8bd361a78f11e8ef821ad5958a5d68e',1,'daisy::NeoTrellis::keyState::reg'],['../uniondaisy_1_1_neo_trellis_1_1key_event.html#a03c1734baa89ec838aba7f5e103d5ecd',1,'daisy::NeoTrellis::keyEvent::reg']]], + ['registercallback_71',['RegisterCallback',['../classdaisy_1_1_neo_trellis.html#ab8560c44784f6eca6807693db0b2535d',1,'daisy::NeoTrellis']]], + ['registers_5fe_72',['Registers_e',['../classdaisy_1_1_tlv493d.html#ac96637647d52f3cfbcd92562aa2eb086',1,'daisy::Tlv493d']]], + ['regmap_73',['RegMap',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798',1,'daisy::Mpr121']]], + ['regmask_5fread_74',['REGMASK_READ',['../tlv493d_8h.html#a4090f1c41d6fdf9b3a8fd5b835fc77e3',1,'tlv493d.h']]], + ['regmask_5ft_75',['RegMask_t',['../structdaisy_1_1_tlv493d_1_1_reg_mask__t.html',1,'daisy::Tlv493d']]], + ['regmask_5fwrite_76',['REGMASK_WRITE',['../tlv493d_8h.html#ab2bd2ce86fd129f2595ab4bc17f08a9f',1,'tlv493d.h']]], + ['regmasks_77',['RegMasks',['../classdaisy_1_1_tlv493d.html#a62c6342362ff4c6bba74c7a186771244',1,'daisy::Tlv493d']]], + ['relcardadd_78',['RelCardAdd',['../struct_d_s_y___s_d___card_info_type_def.html#a5c530fb4ff9a3032125d75a44e9b0a0a',1,'DSY_SD_CardInfoTypeDef']]], + ['release_5fthreshold_79',['release_threshold',['../structdaisy_1_1_mpr121_1_1_config.html#a0c336f8c4c4d0ce11dfcc442ae1297a8',1,'daisy::Mpr121::Config']]], + ['remove_80',['Remove',['../classdaisy_1_1_stack_base.html#a0aca4cedbec62035867fff63a2be529f',1,'daisy::StackBase::Remove()'],['../classdaisy_1_1_f_i_f_o_base.html#a7a040559220ea37332b62fbb9dc82e7d',1,'daisy::FIFOBase::Remove()']]], + ['removeallequalto_81',['RemoveAllEqualTo',['../classdaisy_1_1_stack_base.html#a5c246e49801ddb0c162567a6cdc84a58',1,'daisy::StackBase::RemoveAllEqualTo()'],['../classdaisy_1_1_f_i_f_o_base.html#aa3f1d45b20a1d63789b4346bbfec5404',1,'daisy::FIFOBase::RemoveAllEqualTo()']]], + ['removefrombottom_82',['RemoveFromBottom',['../classdaisy_1_1_rectangle.html#a39ac3cccf36cafade673945385c5601b',1,'daisy::Rectangle']]], + ['removefromleft_83',['RemoveFromLeft',['../classdaisy_1_1_rectangle.html#a41bcd42ae3b23cb259e354665ec68678',1,'daisy::Rectangle']]], + ['removefromright_84',['RemoveFromRight',['../classdaisy_1_1_rectangle.html#a2e2b0d5e50b0b1224851a6287087a68d',1,'daisy::Rectangle']]], + ['removefromtop_85',['RemoveFromTop',['../classdaisy_1_1_rectangle.html#a8609526904dc174d4e089ae44147357c',1,'daisy::Rectangle']]], + ['removeprefix_86',['RemovePrefix',['../classdaisy_1_1_fixed_cap_str_base.html#a43b0c922c7abc563268e92d881ffaa36',1,'daisy::FixedCapStrBase']]], + ['removesuffix_87',['RemoveSuffix',['../classdaisy_1_1_fixed_cap_str_base.html#aafa6b303b8f9b6ed912af9adebd5ff2d',1,'daisy::FixedCapStrBase']]], + ['reset_88',['Reset',['../classdaisy_1_1_fixed_cap_str_base.html#a9f188475678bb61b8737e80de75b2012',1,'daisy::FixedCapStrBase::Reset(const CharType *str)'],['../classdaisy_1_1_fixed_cap_str_base.html#a4a868d708e6d2846a88328b292dec877',1,'daisy::FixedCapStrBase::Reset(const CharType *str, std::size_t length)'],['../group__midi__events.html#gga3069be23e98a0299bbfa8f1759754d45a51ff911624e8d6e5a76ce0433d00130f',1,'daisy::Reset'],['../classdaisy_1_1_icm20948.html#a5a3abfded17083721e363d9fb76d782d',1,'daisy::Icm20948::Reset()'],['../classdaisy_1_1_midi_parser.html#a9fca6bc5b70e646c61a6abcd477a885c',1,'daisy::MidiParser::Reset()'],['../classdaisy_1_1_cpu_load_meter.html#a674f7c975cafc8bc89cba9f4a78308dc',1,'daisy::CpuLoadMeter::Reset()']]], + ['reset_89',['reset',['../structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a3040b9e73290c3c0d562169b5f630c0e',1,'daisy::SSD130x4WireSpiTransport::Config::reset'],['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#af882736a325872cbb3814e8b25805742',1,'daisy::SSD130x4WireSoftSpiTransport::Config::reset'],['../classdaisy_1_1_dps310.html#a2cc9301810c24671b5b21fc0253e5980',1,'daisy::Dps310::reset()']]], + ['reset_5f_90',['Reset_',['../classdaisy_1_1_fixed_cap_str_base.html#a4586e2260046cb17c6e78cdbfd8efa9e',1,'daisy::FixedCapStrBase']]], + ['reset_5fenable_5fcmd_91',['RESET_ENABLE_CMD',['../group__flash.html#gaaa9f0b43b7e4f0f5caf4aa703dc794eb',1,'RESET_ENABLE_CMD: flash_IS25LP080D.h'],['../group__flash.html#gaaa9f0b43b7e4f0f5caf4aa703dc794eb',1,'RESET_ENABLE_CMD: flash_IS25LP064A.h']]], + ['reset_5fmemory_5fcmd_92',['RESET_MEMORY_CMD',['../group__flash.html#gad8f71231a1b5f3324659e18aa1c84658',1,'RESET_MEMORY_CMD: flash_IS25LP080D.h'],['../group__flash.html#gad8f71231a1b5f3324659e18aa1c84658',1,'RESET_MEMORY_CMD: flash_IS25LP064A.h']]], + ['resetallcontrollers_93',['ResetAllControllers',['../group__midi__events.html#ggaf9da54b73be4dec526670bd6c53ad98aa16372b6654282e39482508fd9dd45752',1,'daisy']]], + ['resetallcontrollersevent_94',['ResetAllControllersEvent',['../structdaisy_1_1_reset_all_controllers_event.html',1,'daisy']]], + ['resetat_95',['ResetAt',['../classdaisy_1_1_fixed_cap_str_base.html#a4a14a820d2f7bdf7cad8a07a53771296',1,'daisy::FixedCapStrBase']]], + ['resetat_5f_96',['ResetAt_',['../classdaisy_1_1_fixed_cap_str_base.html#aeada8ffe33966f911ed0c7af9d4c345d',1,'daisy::FixedCapStrBase']]], + ['resetcounts_97',['ResetCounts',['../classdaisy_1_1_apds9960.html#a30065fbd4498c53073e95ea6e1142c22',1,'daisy::Apds9960']]], + ['reseti2cmaster_98',['ResetI2CMaster',['../classdaisy_1_1_icm20948.html#a124bb4a956a4082ed8052d454cecc8ef',1,'daisy::Icm20948']]], + ['resettobootloader_99',['ResetToBootloader',['../classdaisy_1_1_system.html#ae7e0bb7a214d85ceaa2264f2d00afd5a',1,'daisy::System']]], + ['resettodefault_100',['ResetToDefault',['../classdaisy_1_1_mapped_string_list_value.html#aa1edf81d83cf2ce90d56d0f36f7a50a9',1,'daisy::MappedStringListValue::ResetToDefault()'],['../classdaisy_1_1_mapped_int_value.html#a921f370452a295e5f52f0483b3559a83',1,'daisy::MappedIntValue::ResetToDefault()'],['../classdaisy_1_1_mapped_float_value.html#accc506533ee066815a8c78f3b7a6cbfc',1,'daisy::MappedFloatValue::ResetToDefault()'],['../classdaisy_1_1_mapped_value.html#a60288a18a6173903f3a7e4c5c9aebb84',1,'daisy::MappedValue::ResetToDefault()']]], + ['restart_101',['Restart',['../classdaisy_1_1_wav_player.html#ac3b2f9f9cdf18ea861be227dcffd5da9',1,'daisy::WavPlayer']]], + ['restoredefaults_102',['RestoreDefaults',['../classdaisy_1_1_persistent_storage.html#ad573b53a242aae9743eea18b93f6e39d',1,'daisy::PersistentStorage']]], + ['result_103',['Result',['../namespacedaisy_1_1_m_a_x11300_types.html#a24cefdb4cc0f16357cc883d597243a81',1,'daisy::MAX11300Types::Result'],['../classdaisy_1_1_wave_table_loader.html#ab458927d7a82e236e06456694aadc0dd',1,'daisy::WaveTableLoader::Result'],['../classdaisy_1_1_apds9960.html#ab80195f03d28d8e36ed5e062155b8b8f',1,'daisy::Apds9960::Result'],['../classdaisy_1_1_wav_writer.html#ab6477ad91d6d9f4804ac9150edd33e1b',1,'daisy::WavWriter::Result'],['../class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6',1,'UsbHandle::Result'],['../classdaisy_1_1_pcm3060.html#a13c6ad4ee97983297e49fccbb59f0c30',1,'daisy::Pcm3060::Result'],['../classdaisy_1_1_wm8731.html#acee74b7ae4c637c45d33afcb91da7988',1,'daisy::Wm8731::Result'],['../classdaisy_1_1_dot_star.html#af936f3ee5cdee9c99c7cd0d620de7a83',1,'daisy::DotStar::Result'],['../classdaisy_1_1_dps310.html#a11fd577a6158c2550b7bf892357b3ecf',1,'daisy::Dps310::Result'],['../classdaisy_1_1_icm20948.html#abc49c581560427f3cafd11ffb74e8988',1,'daisy::Icm20948::Result'],['../classdaisy_1_1_m_a_x11300_multi_slave_spi_transport.html#afbc7d089dae0efed27daa50e1a6967ef',1,'daisy::MAX11300MultiSlaveSpiTransport::Result'],['../classdaisy_1_1_mpr121.html#ab886fbf5c32dfc9c2caba579f5b465fb',1,'daisy::Mpr121::Result'],['../classdaisy_1_1_neo_pixel.html#afc73663368350e83adc8a99817f98dab',1,'daisy::NeoPixel::Result'],['../classdaisy_1_1_neo_trellis.html#aad11f0a1a3948a419dc8f58f241feacd',1,'daisy::NeoTrellis::Result'],['../class_sdram_handle.html#ab6b59b2a4b1abdec7369ffcdceac73f7',1,'SdramHandle::Result'],['../classdaisy_1_1_tlv493d.html#a3a70517c2f74f3ac8b4bc12dd8bd6836',1,'daisy::Tlv493d::Result'],['../classdaisy_1_1_audio_handle.html#afd70b35cda9ec575d62d4abdcc453c30',1,'daisy::AudioHandle::Result'],['../class_usb_handle.html#a676c11695fe5f925515eaa3d3e2d53a6',1,'UsbHandle::Result'],['../classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113',1,'daisy::USBHostHandle::Result'],['../classdaisy_1_1_dac_handle.html#a66e1c535c1809b56744d842005008d54',1,'daisy::DacHandle::Result'],['../classdaisy_1_1_i2_c_handle.html#a4896eede457dea6ed2ed68d9b06e8e16',1,'daisy::I2CHandle::Result'],['../classdaisy_1_1_q_s_p_i_handle.html#aac911aafbe4840fa80c4181982a4c72e',1,'daisy::QSPIHandle::Result'],['../classdaisy_1_1_sai_handle.html#a5463939a5d7fe1a363cfb9beb602d468',1,'daisy::SaiHandle::Result'],['../classdaisy_1_1_sdmmc_handler.html#ad3aa247c4e2a3e8da344a64673768970',1,'daisy::SdmmcHandler::Result'],['../classdaisy_1_1_spi_handle.html#acee8aad7e8008a2dbdfc8f260712bab7',1,'daisy::SpiHandle::Result'],['../classdaisy_1_1_timer_handle.html#a7425f809b115688f70d7a12acd5a16c7',1,'daisy::TimerHandle::Result'],['../classdaisy_1_1_uart_handler.html#ac45c7ac82e6f0328b4e7b03fd12e7237',1,'daisy::UartHandler::Result'],['../classdaisy_1_1_fat_f_s_interface.html#a11bfd1247ea543dd276acbbb3f2342b0',1,'daisy::FatFSInterface::Result']]], + ['reversesection_104',['ReverseSection',['../classdaisy_1_1_fixed_cap_str_base.html#af1d7b42ad446ef5e6188bdf289f2d670',1,'daisy::FixedCapStrBase']]], + ['rgb_105',['RGB',['../structdaisy_1_1_dot_star_1_1_config.html#ac0d32307f8104690f4a6d15dd1943ae9a3ae8a55d4f9c2192c76d44d2d2b8e90e',1,'daisy::DotStar::Config']]], + ['rgb_5fled_2eh_106',['rgb_led.h',['../rgb__led_8h.html',1,'']]], + ['rgbled_107',['RgbLed',['../classdaisy_1_1_rgb_led.html',1,'daisy::RgbLed'],['../classdaisy_1_1_rgb_led.html#a83702469af420ecd8240571ae40677f3',1,'daisy::RgbLed::RgbLed()']]], + ['right_108',['right',['../group__ui.html#ggac734c565c1dc55cbf6b74ea942f40c1ca7c4f29407893c334a6cb7a87bf045c0d',1,'daisy']]], + ['rightbttnid_109',['rightBttnId',['../structdaisy_1_1_u_i_1_1_special_control_ids.html#a8a771125e84075486d861414aec5bdb5',1,'daisy::UI::SpecialControlIds']]], + ['ring_5fled_110',['ring_led',['../classdaisy_1_1_daisy_petal.html#a24abaac2327c0057f99b5d5a4f15bd5a',1,'daisy::DaisyPetal']]], + ['ring_5fled_5f1_111',['RING_LED_1',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682a4868bead6b4bb7b6d1e15ce3f6a34edf',1,'daisy::DaisyPetal']]], + ['ring_5fled_5f2_112',['RING_LED_2',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682ac7b3f1596a8438fac25c8696a8d8e165',1,'daisy::DaisyPetal']]], + ['ring_5fled_5f3_113',['RING_LED_3',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682a1bd8643462c5d2072526d49dd47a69db',1,'daisy::DaisyPetal']]], + ['ring_5fled_5f4_114',['RING_LED_4',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682a546d934044b1971c72a872a95e1f7391',1,'daisy::DaisyPetal']]], + ['ring_5fled_5f5_115',['RING_LED_5',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682a962ed86e4759724ea0392e07ccc89aa9',1,'daisy::DaisyPetal']]], + ['ring_5fled_5f6_116',['RING_LED_6',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682add3683515df29d7a38efde9933530895',1,'daisy::DaisyPetal']]], + ['ring_5fled_5f7_117',['RING_LED_7',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682a86e88f2c21c605b6bb514c3eaf6f330e',1,'daisy::DaisyPetal']]], + ['ring_5fled_5f8_118',['RING_LED_8',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682a1f6fc229b42f772bc9088f62ce3e5036',1,'daisy::DaisyPetal']]], + ['ring_5fled_5flast_119',['RING_LED_LAST',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682a4b60f0a2dbcfe749c77a3cf054f85e39',1,'daisy::DaisyPetal']]], + ['ringbuffer_120',['RingBuffer',['../classdaisy_1_1_ring_buffer.html',1,'daisy::RingBuffer< T, size >'],['../classdaisy_1_1_ring_buffer.html#ab6149ef245dfd8addeea22f5b020262c',1,'daisy::RingBuffer::RingBuffer()'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#a61a776017ae33a993cd911c103e12074',1,'daisy::RingBuffer< T, 0 >::RingBuffer()']]], + ['ringbuffer_2eh_121',['ringbuffer.h',['../ringbuffer_8h.html',1,'']]], + ['ringbuffer_3c_20t_2c_200_20_3e_122',['RingBuffer< T, 0 >',['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html',1,'daisy']]], + ['ringled_123',['RingLed',['../classdaisy_1_1_daisy_petal.html#a6b6b85167d6938e7b4d151599773d682',1,'daisy::DaisyPetal']]], + ['rising_124',['RISING',['../classdaisy_1_1_neo_trellis.html#a08d0cfd62e053922653a0b9e78ed29c0af843fdfbc06dd0b7a40b927d3c03521b',1,'daisy::NeoTrellis']]], + ['risingedge_125',['RisingEdge',['../classdaisy_1_1_encoder.html#ab501cf73d10d81058b485c48b9eb506f',1,'daisy::Encoder::RisingEdge()'],['../classdaisy_1_1_switch.html#a71f6054840c76ebe3cb2517dc7830d34',1,'daisy::Switch::RisingEdge()']]], + ['rng_2eh_126',['rng.h',['../rng_8h.html',1,'']]], + ['roffset_127',['rOffset',['../classdaisy_1_1_neo_pixel.html#a5dc6778be3278c19b0c3175fed30d988',1,'daisy::NeoPixel']]], + ['rs_128',['rs',['../structdaisy_1_1_lcd_h_d44780_1_1_config.html#a2c6c623ffd463f0de93f2eb6706cffd3',1,'daisy::LcdHD44780::Config']]], + ['rw_129',['rw',['../structdaisy_1_1_tlv493d_1_1_reg_mask__t.html#a3914e04c88276908f21fed1db9b7e4fa',1,'daisy::Tlv493d::RegMask_t']]], + ['rx_130',['rx',['../structdaisy_1_1_uart_handler_1_1_config.html#adb318e26f13636e1bee740fa47497392',1,'daisy::UartHandler::Config']]], + ['rx_131',['RX',['../classdaisy_1_1_uart_handler.html#adbdfbf1dfaab99cf76ac7ca36d22cf00af9c24782c24c237d16e79f18e2fa9046',1,'daisy::UartHandler::RX'],['../structdaisy_1_1_uart_handler_1_1_config.html#ae0a7cc8284cbbe42f1d95797b5862084af9c24782c24c237d16e79f18e2fa9046',1,'daisy::UartHandler::Config::RX'],['../classdaisy_1_1_spi_handle.html#aa7c484882faf187c7c4153db7cf5e4daaf9c24782c24c237d16e79f18e2fa9046',1,'daisy::SpiHandle::RX']]], + ['rx_132',['rx',['../structdaisy_1_1_midi_uart_transport_1_1_config.html#a84c3f711773c994ae22fbb3969573a11',1,'daisy::MidiUartTransport::Config']]], + ['rx_5fbuffer_133',['rx_buffer',['../structdaisy_1_1_m_a_x11300_types_1_1_dma_buffer.html#abdc1eea126a4dca4ecc83c41ed988758',1,'daisy::MAX11300Types::DmaBuffer::rx_buffer'],['../structdaisy_1_1_midi_uart_transport_1_1_config.html#aef5688ab3707e03afb90a53356386d6c',1,'daisy::MidiUartTransport::Config::rx_buffer']]], + ['rx_5fbuffer_5fsize_134',['rx_buffer_size',['../structdaisy_1_1_midi_uart_transport_1_1_config.html#ac9c46f68be9880b9f0479f8162f77007',1,'daisy::MidiUartTransport::Config']]], + ['rx_5ftx_135',['RX_TX',['../classdaisy_1_1_spi_handle.html#aa7c484882faf187c7c4153db7cf5e4daaa9f94fc2b5a22b1ebff62655559f82b2',1,'daisy::SpiHandle']]], + ['rxactive_136',['RxActive',['../classdaisy_1_1_midi_usb_transport.html#abaea457dd71e7e143f7c5f5045de2b42',1,'daisy::MidiUsbTransport::RxActive()'],['../classdaisy_1_1_midi_uart_transport.html#aded78c4242d61c92eaece731f954b57e',1,'daisy::MidiUartTransport::RxActive()']]] ]; diff --git a/search/all_13.js b/search/all_13.js index eb3ba90ad..6ccc870de 100644 --- a/search/all_13.js +++ b/search/all_13.js @@ -25,10 +25,10 @@ var searchData= ['sai_5f96khz_22',['SAI_96KHZ',['../structdaisy_1_1_sai_handle_1_1_config.html#adace22abaff171f0c459cff4a44026fcabe2da78731d2386be1e8ace72a568eee',1,'daisy::SaiHandle::Config']]], ['saihandle_23',['SaiHandle',['../classdaisy_1_1_sai_handle.html',1,'daisy::SaiHandle'],['../classdaisy_1_1_sai_handle.html#aa1ece2a2811cd17e7831e993a211316c',1,'daisy::SaiHandle::SaiHandle()'],['../classdaisy_1_1_sai_handle.html#a51ee63d62a611a35242c3dff0b8c32ed',1,'daisy::SaiHandle::SaiHandle(const SaiHandle &other)=default']]], ['sample_24',['Sample',['../classdaisy_1_1_wav_writer.html#a153a29ee8b89fcd6dfcc6e28a08f27a9',1,'daisy::WavWriter']]], - ['samplerate_25',['SampleRate',['../structdaisy_1_1_w_a_v___format_type_def.html#af94f78ad6e950a2084e143fdc4b4ba04',1,'daisy::WAV_FormatTypeDef']]], - ['samplerate_26',['samplerate',['../structdaisy_1_1_audio_handle_1_1_config.html#a744d708032c448f1eec1a78a9a45e7c6',1,'daisy::AudioHandle::Config']]], - ['samplerate_27',['SampleRate',['../structdaisy_1_1_sai_handle_1_1_config.html#adace22abaff171f0c459cff4a44026fc',1,'daisy::SaiHandle::Config']]], - ['samplerate_28',['samplerate',['../structdaisy_1_1_wav_writer_1_1_config.html#a143f2278359597869a0de80cc8edba86',1,'daisy::WavWriter::Config']]], + ['samplerate_25',['samplerate',['../structdaisy_1_1_wav_writer_1_1_config.html#a143f2278359597869a0de80cc8edba86',1,'daisy::WavWriter::Config']]], + ['samplerate_26',['SampleRate',['../structdaisy_1_1_sai_handle_1_1_config.html#adace22abaff171f0c459cff4a44026fc',1,'daisy::SaiHandle::Config']]], + ['samplerate_27',['samplerate',['../structdaisy_1_1_audio_handle_1_1_config.html#a744d708032c448f1eec1a78a9a45e7c6',1,'daisy::AudioHandle::Config']]], + ['samplerate_28',['SampleRate',['../structdaisy_1_1_w_a_v___format_type_def.html#af94f78ad6e950a2084e143fdc4b4ba04',1,'daisy::WAV_FormatTypeDef']]], ['save_29',['Save',['../classdaisy_1_1_persistent_storage.html#a2223d78897ec8511e961bb5803b7b8b4',1,'daisy::PersistentStorage']]], ['savefile_30',['SaveFile',['../classdaisy_1_1_wav_writer.html#a4e55f491f9849a54906acdcad244b39d',1,'daisy::WavWriter']]], ['sb_31',['sb',['../structdaisy_1_1_sai_handle_1_1_config.html#a8fdd5be3f876f377d45c30baa49f41e2',1,'daisy::SaiHandle::Config']]], @@ -54,270 +54,268 @@ var searchData= ['sda_51',['sda',['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html#a0276e08101dcc3c65153367dba880010',1,'daisy::Mpr121I2CTransport::Config::sda'],['../structdaisy_1_1_i2_c_handle_1_1_config.html#a8d0a82df1f49113e5e4e2aff071e16e3',1,'daisy::I2CHandle::Config::sda'],['../structdaisy_1_1_tlv493d_i2_c_transport_1_1_config.html#a6e762e3e996721f300f002344753f2a2',1,'daisy::Tlv493dI2CTransport::Config::sda'],['../structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a65146322b1ea8590e25abdfcd2f8b159',1,'daisy::NeoTrellisI2CTransport::Config::sda'],['../structdaisy_1_1_neo_pixel_i2_c_transport_1_1_config.html#a1ed8c7da7c5796171a6b1fbac06eabd9',1,'daisy::NeoPixelI2CTransport::Config::sda'],['../structdaisy_1_1_icm20948_i2_c_transport_1_1_config.html#aa0e03d9fa57e9c8f1e6015db2c65efa4',1,'daisy::Icm20948I2CTransport::Config::sda'],['../structdaisy_1_1_dps310_i2_c_transport_1_1_config.html#acb5ed659e3fc6eafadbad73a3b42d438',1,'daisy::Dps310I2CTransport::Config::sda'],['../structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a776e12358363059e096dd614fa9bb4d6',1,'daisy::Apds9960I2CTransport::Config::sda']]], ['sdmmc_2eh_52',['sdmmc.h',['../sdmmc_8h.html',1,'']]], ['sdmmchandler_53',['SdmmcHandler',['../classdaisy_1_1_sdmmc_handler.html',1,'daisy::SdmmcHandler'],['../classdaisy_1_1_sdmmc_handler.html#a83efce6a87aadb15744ce8f330038631',1,'daisy::SdmmcHandler::SdmmcHandler()']]], - ['sdram_54',['SDRAM',['../classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669ab807d16cd8d3035372711ec15a4e5c92',1,'daisy::System']]], - ['sdram_55',['sdram',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a898f9882aa60b6f16336fd613e1653d1',1,'daisy::patch_sm::DaisyPatchSM']]], - ['sdram_56',['SDRAM',['../group__sdram.html',1,'']]], - ['sdram_2eh_57',['sdram.h',['../sdram_8h.html',1,'']]], - ['sdram_5fhandle_58',['sdram_handle',['../classdaisy_1_1_daisy_seed.html#a48b3da45f3fda4a6960cc15f427daa96',1,'daisy::DaisySeed']]], - ['sdramhandle_59',['SdramHandle',['../class_sdram_handle.html',1,'']]], - ['sector_5ferase_5fcmd_60',['SECTOR_ERASE_CMD',['../group__flash.html#gafa3f62391f3e8fbfc1fba32754e88b55',1,'SECTOR_ERASE_CMD: flash_IS25LP080D.h'],['../group__flash.html#gafa3f62391f3e8fbfc1fba32754e88b55',1,'SECTOR_ERASE_CMD: flash_IS25LP064A.h']]], - ['sector_5ferase_5fqpi_5fcmd_61',['SECTOR_ERASE_QPI_CMD',['../group__flash.html#ga49e65f982b506a78ed7d93dceb1b9650',1,'SECTOR_ERASE_QPI_CMD: flash_IS25LP080D.h'],['../group__flash.html#ga49e65f982b506a78ed7d93dceb1b9650',1,'SECTOR_ERASE_QPI_CMD: flash_IS25LP064A.h']]], - ['sector_5flock_62',['SECTOR_LOCK',['../group__flash.html#ga9f85bde4369ff218cf1ce490262cd150',1,'SECTOR_LOCK: flash_IS25LP080D.h'],['../group__flash.html#ga9f85bde4369ff218cf1ce490262cd150',1,'SECTOR_LOCK: flash_IS25LP064A.h']]], - ['sector_5funlock_63',['SECTOR_UNLOCK',['../group__flash.html#gae768b920e288afba52472293c6e79ef4',1,'SECTOR_UNLOCK: flash_IS25LP064A.h'],['../group__flash.html#gae768b920e288afba52472293c6e79ef4',1,'SECTOR_UNLOCK: flash_IS25LP080D.h']]], - ['seed_64',['seed',['../classdaisy_1_1_daisy_field.html#a3f51b16d7d9d50f8f906e04eac8cc0bf',1,'daisy::DaisyField::seed'],['../classdaisy_1_1_daisy_versio.html#ad7fb38b8d273231caa2d158db39c82da',1,'daisy::DaisyVersio::seed'],['../classdaisy_1_1_daisy_pod.html#a75907b96ea78262bf52dd7b565136f58',1,'daisy::DaisyPod::seed'],['../classdaisy_1_1_daisy_petal.html#a2ef75f14bf008985bf6635e9ce87106a',1,'daisy::DaisyPetal::seed'],['../classdaisy_1_1_daisy_patch.html#a4705ca24e5ebc4d8add7d83232162fd7',1,'daisy::DaisyPatch::seed'],['../classdaisy_1_1_daisy_legio.html#ad6d6cadb3ea1ca30e4a0020575225b09',1,'daisy::DaisyLegio::seed']]], - ['seesaw_5fadc_5fbase_65',['SEESAW_ADC_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befab2e30770660420d289650a372059467d',1,'daisy::NeoPixel::SEESAW_ADC_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa57cfd048b8d488334eca492b765f6d32',1,'daisy::NeoTrellis::SEESAW_ADC_BASE']]], - ['seesaw_5fdac_5fbase_66',['SEESAW_DAC_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befa9952803be238e90ee8737ab79b3890ed',1,'daisy::NeoPixel::SEESAW_DAC_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa8d452277f6c26ce713743bd07ce4a769',1,'daisy::NeoTrellis::SEESAW_DAC_BASE']]], - ['seesaw_5fdap_5fbase_67',['SEESAW_DAP_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befab2cb47bc2c6788ce9bab8b4925892886',1,'daisy::NeoPixel::SEESAW_DAP_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa5be8bf916993c05048c08df9b9849702',1,'daisy::NeoTrellis::SEESAW_DAP_BASE']]], - ['seesaw_5feeprom_5fbase_68',['SEESAW_EEPROM_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befafe0b10808eadded45a49dd785fb96ca2',1,'daisy::NeoPixel::SEESAW_EEPROM_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafaddc4ae01636b4d74b064c78642275e89',1,'daisy::NeoTrellis::SEESAW_EEPROM_BASE']]], - ['seesaw_5fencoder_5fbase_69',['SEESAW_ENCODER_BASE',['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa697a05e52e345821c76a2646242be93d',1,'daisy::NeoTrellis::SEESAW_ENCODER_BASE'],['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befab1f20d7fa1d95fb6835484c0c71b0605',1,'daisy::NeoPixel::SEESAW_ENCODER_BASE']]], - ['seesaw_5fgpio_5fbase_70',['SEESAW_GPIO_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befadda07af6856b228a73e22dca7da9a12c',1,'daisy::NeoPixel::SEESAW_GPIO_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa4520484b60a351b8265b64f7992d40fd',1,'daisy::NeoTrellis::SEESAW_GPIO_BASE']]], - ['seesaw_5finterrupt_5fbase_71',['SEESAW_INTERRUPT_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befa6e5bb555003d07ee5caae840294c0f94',1,'daisy::NeoPixel::SEESAW_INTERRUPT_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa06ebe6be60007345989d6564a0fe30ae',1,'daisy::NeoTrellis::SEESAW_INTERRUPT_BASE']]], - ['seesaw_5fkeypad_5fbase_72',['SEESAW_KEYPAD_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befa1b4d900fad9ba13f1e1f8323532773c2',1,'daisy::NeoPixel::SEESAW_KEYPAD_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafad6361c6969630db188ad1f94e074116f',1,'daisy::NeoTrellis::SEESAW_KEYPAD_BASE']]], - ['seesaw_5fkeypad_5fcount_73',['SEESAW_KEYPAD_COUNT',['../classdaisy_1_1_neo_trellis.html#ad233d51152b75b4cbec60411971a9db6af6f41d576533e764a7fc006bc12fa8f8',1,'daisy::NeoTrellis']]], - ['seesaw_5fkeypad_5fevent_74',['SEESAW_KEYPAD_EVENT',['../classdaisy_1_1_neo_trellis.html#ad233d51152b75b4cbec60411971a9db6a33537938f4c7182096b900b4d8d2fd89',1,'daisy::NeoTrellis']]], - ['seesaw_5fkeypad_5ffifo_75',['SEESAW_KEYPAD_FIFO',['../classdaisy_1_1_neo_trellis.html#ad233d51152b75b4cbec60411971a9db6a6297e62f156b1cfc5ff861c2be525ed6',1,'daisy::NeoTrellis']]], - ['seesaw_5fkeypad_5fintenclr_76',['SEESAW_KEYPAD_INTENCLR',['../classdaisy_1_1_neo_trellis.html#ad233d51152b75b4cbec60411971a9db6aa663d58db13dc7d24a747cd0c0cfafda',1,'daisy::NeoTrellis']]], - ['seesaw_5fkeypad_5fintenset_77',['SEESAW_KEYPAD_INTENSET',['../classdaisy_1_1_neo_trellis.html#ad233d51152b75b4cbec60411971a9db6a7132ec292e389d784d8523a013b6eda5',1,'daisy::NeoTrellis']]], - ['seesaw_5fkeypad_5fstatus_78',['SEESAW_KEYPAD_STATUS',['../classdaisy_1_1_neo_trellis.html#ad233d51152b75b4cbec60411971a9db6ace27a71eda5f3ab25d69d5c614a74cc3',1,'daisy::NeoTrellis']]], - ['seesaw_5fneopixel_5fbase_79',['SEESAW_NEOPIXEL_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befa876738339d77d2b4c617a2f692589390',1,'daisy::NeoPixel::SEESAW_NEOPIXEL_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafac4eec17c2feb6a7399cba20cbf197281',1,'daisy::NeoTrellis::SEESAW_NEOPIXEL_BASE']]], - ['seesaw_5fneopixel_5fbuf_80',['SEESAW_NEOPIXEL_BUF',['../classdaisy_1_1_neo_pixel.html#aa85935e2b18e71704d67c5cdda2df878aece795799b42de6b878d325d0b6dbd38',1,'daisy::NeoPixel']]], - ['seesaw_5fneopixel_5fbuf_5flength_81',['SEESAW_NEOPIXEL_BUF_LENGTH',['../classdaisy_1_1_neo_pixel.html#aa85935e2b18e71704d67c5cdda2df878a7db07a19f1c83e31bb0bf8ffa228e866',1,'daisy::NeoPixel']]], - ['seesaw_5fneopixel_5fpin_82',['SEESAW_NEOPIXEL_PIN',['../classdaisy_1_1_neo_pixel.html#aa85935e2b18e71704d67c5cdda2df878a204d6f3e606b954a913f12eeda5c11ff',1,'daisy::NeoPixel']]], - ['seesaw_5fneopixel_5fshow_83',['SEESAW_NEOPIXEL_SHOW',['../classdaisy_1_1_neo_pixel.html#aa85935e2b18e71704d67c5cdda2df878a0ba069e40db57794cf4a28f50c3e275f',1,'daisy::NeoPixel']]], - ['seesaw_5fneopixel_5fspeed_84',['SEESAW_NEOPIXEL_SPEED',['../classdaisy_1_1_neo_pixel.html#aa85935e2b18e71704d67c5cdda2df878ae2a34f983bf6d649b0b37bc14a47b121',1,'daisy::NeoPixel']]], - ['seesaw_5fneopixel_5fstatus_85',['SEESAW_NEOPIXEL_STATUS',['../classdaisy_1_1_neo_pixel.html#aa85935e2b18e71704d67c5cdda2df878ae7d19575693671570af757bee729703b',1,'daisy::NeoPixel']]], - ['seesaw_5fsercom0_5fbase_86',['SEESAW_SERCOM0_BASE',['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafabe6bac130ed8966cfced1734b43a555f',1,'daisy::NeoTrellis::SEESAW_SERCOM0_BASE'],['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befa653206e2988877b1c4420e955f2d646c',1,'daisy::NeoPixel::SEESAW_SERCOM0_BASE']]], - ['seesaw_5fspectrum_5fbase_87',['SEESAW_SPECTRUM_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befa28757163e598e556ad35371f0285cc0a',1,'daisy::NeoPixel::SEESAW_SPECTRUM_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa564d7b3366b9192dd7db46cbfbc80dda',1,'daisy::NeoTrellis::SEESAW_SPECTRUM_BASE']]], - ['seesaw_5fstatus_5fbase_88',['SEESAW_STATUS_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befa14ac93b5ab639a0e15411f9c743b37c4',1,'daisy::NeoPixel::SEESAW_STATUS_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa86b5f3d1587fd2afa8701e3502e8516d',1,'daisy::NeoTrellis::SEESAW_STATUS_BASE']]], - ['seesaw_5fstatus_5fhw_5fid_89',['SEESAW_STATUS_HW_ID',['../classdaisy_1_1_neo_pixel.html#ae8c5611d43b53c821488a4e5b762b7d1ae295f23040ed1755e4d99115a0dc8d65',1,'daisy::NeoPixel::SEESAW_STATUS_HW_ID'],['../classdaisy_1_1_neo_trellis.html#af147efe4392e071419f7ae71ee29b0d3ae097c9ece1cc4e638ba52b70eb82e7c7',1,'daisy::NeoTrellis::SEESAW_STATUS_HW_ID']]], - ['seesaw_5fstatus_5foptions_90',['SEESAW_STATUS_OPTIONS',['../classdaisy_1_1_neo_pixel.html#ae8c5611d43b53c821488a4e5b762b7d1a214185dbcaaabf27a6d4d57555224489',1,'daisy::NeoPixel::SEESAW_STATUS_OPTIONS'],['../classdaisy_1_1_neo_trellis.html#af147efe4392e071419f7ae71ee29b0d3afdbf82a2d9aa8a56bd54d71c4389baa7',1,'daisy::NeoTrellis::SEESAW_STATUS_OPTIONS']]], - ['seesaw_5fstatus_5fswrst_91',['SEESAW_STATUS_SWRST',['../classdaisy_1_1_neo_trellis.html#af147efe4392e071419f7ae71ee29b0d3a2b95a9e1f1392f691e4a6da2bbedc27d',1,'daisy::NeoTrellis::SEESAW_STATUS_SWRST'],['../classdaisy_1_1_neo_pixel.html#ae8c5611d43b53c821488a4e5b762b7d1a7940039e96f9941a887480ca3fbeb60f',1,'daisy::NeoPixel::SEESAW_STATUS_SWRST']]], - ['seesaw_5fstatus_5ftemp_92',['SEESAW_STATUS_TEMP',['../classdaisy_1_1_neo_pixel.html#ae8c5611d43b53c821488a4e5b762b7d1a5f277abe97124bfbdc92d46364b915ea',1,'daisy::NeoPixel::SEESAW_STATUS_TEMP'],['../classdaisy_1_1_neo_trellis.html#af147efe4392e071419f7ae71ee29b0d3a5b1367d171c3c1d3ab6456ad242a8c8c',1,'daisy::NeoTrellis::SEESAW_STATUS_TEMP']]], - ['seesaw_5fstatus_5fversion_93',['SEESAW_STATUS_VERSION',['../classdaisy_1_1_neo_pixel.html#ae8c5611d43b53c821488a4e5b762b7d1a6b1ef0df7bf8109ae4196c04e9ac8505',1,'daisy::NeoPixel::SEESAW_STATUS_VERSION'],['../classdaisy_1_1_neo_trellis.html#af147efe4392e071419f7ae71ee29b0d3aac68ba13b8afdd62b2f4aff33d7aa587',1,'daisy::NeoTrellis::SEESAW_STATUS_VERSION']]], - ['seesaw_5ftimer_5fbase_94',['SEESAW_TIMER_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befabc0edeffe2c7a0f6f5fdecd9e6c41107',1,'daisy::NeoPixel::SEESAW_TIMER_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa6f8cf83118cc2f3b111cbb0a5effef91',1,'daisy::NeoTrellis::SEESAW_TIMER_BASE']]], - ['seesaw_5ftouch_5fbase_95',['SEESAW_TOUCH_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befa435c5590c1d7d1cfd048966bc74a1d2b',1,'daisy::NeoPixel::SEESAW_TOUCH_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa2783d7f9aa6930a91163aae955e80dea',1,'daisy::NeoTrellis::SEESAW_TOUCH_BASE']]], - ['selecteditemidx_5f_96',['selectedItemIdx_',['../classdaisy_1_1_abstract_menu.html#a452a319456f718cc729207ce803fe4a4',1,'daisy::AbstractMenu']]], - ['selectitem_97',['SelectItem',['../classdaisy_1_1_abstract_menu.html#a13f95244703267b826cf05c81ea962ff',1,'daisy::AbstractMenu']]], - ['sendcommand_98',['SendCommand',['../classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html#aadac6fcb157ef83a293f95c2e49dd2b2',1,'daisy::SSD130x4WireSoftSpiTransport::SendCommand()'],['../classdaisy_1_1_s_s_d130x4_wire_spi_transport.html#a21854c65aa4a415970c1239d86625dfb',1,'daisy::SSD130x4WireSpiTransport::SendCommand()'],['../classdaisy_1_1_s_s_d130x_i2_c_transport.html#ab342105cbc480dfc7c07c387ef449c08',1,'daisy::SSD130xI2CTransport::SendCommand(uint8_t cmd)']]], - ['senddata_99',['SendData',['../classdaisy_1_1_s_s_d130x_i2_c_transport.html#ab2c26b2726b2c2e6e1bff68e0eb5f1cb',1,'daisy::SSD130xI2CTransport::SendData()'],['../classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html#a4fad007f2e65a390bcbcbf2c0f442045',1,'daisy::SSD130x4WireSoftSpiTransport::SendData()'],['../classdaisy_1_1_s_s_d130x4_wire_spi_transport.html#a3cf6194c8dbb92b33fb83becc07903fc',1,'daisy::SSD130x4WireSpiTransport::SendData()']]], - ['sendmessage_100',['SendMessage',['../classdaisy_1_1_midi_handler.html#a5c15df4ad7996a8c3fff22a5e679cc54',1,'daisy::MidiHandler']]], - ['sensors_5fdps_5fto_5frads_101',['SENSORS_DPS_TO_RADS',['../icm20948_8h.html#a54bd9549d7c88977f8769fac7be4578d',1,'icm20948.h']]], - ['sensors_5fgravity_5fearth_102',['SENSORS_GRAVITY_EARTH',['../icm20948_8h.html#adf2baeb9499e0aae21699e2345fd51bd',1,'icm20948.h']]], - ['serial_103',['SERIAL',['../group__serial.html',1,'']]], - ['set_104',['Set',['../classdaisy_1_1_mapped_float_value.html#a69b6262bc33337dcc695941b3bc5ab21',1,'daisy::MappedFloatValue::Set()'],['../classdaisy_1_1_mapped_int_value.html#ac8b2f980706743475fe7b1a7b3e6d98b',1,'daisy::MappedIntValue::Set()'],['../class_shift_register595.html#a01d31561cd07890ea52d1f39e55a8385',1,'ShiftRegister595::Set()'],['../classdaisy_1_1_led.html#a7394c869bc8b34d94c183c2b7fb16bc7',1,'daisy::Led::Set()'],['../classdaisy_1_1_rgb_led.html#a342c072e678f5df25a8f638a91479d1f',1,'daisy::RgbLed::Set()']]], - ['setaccelrange_105',['SetAccelRange',['../classdaisy_1_1_icm20948.html#a087eb0aa5f8210268f2a11ce9d93f583',1,'daisy::Icm20948']]], - ['setaccelratedivisor_106',['SetAccelRateDivisor',['../classdaisy_1_1_icm20948.html#a842415a6f1b60caf440240fcaf8ad9f1',1,'daisy::Icm20948']]], - ['setaccessmode_107',['SetAccessMode',['../classdaisy_1_1_tlv493d.html#adffa8bbf61fb813e4e5afc5994ac7316',1,'daisy::Tlv493d']]], - ['setadcgain_108',['SetADCGain',['../classdaisy_1_1_apds9960.html#a25b3ecd642bb7918fd1af80c4269851b',1,'daisy::Apds9960']]], - ['setadcintegrationtime_109',['SetADCIntegrationTime',['../classdaisy_1_1_apds9960.html#a156ad026074df9939292be7155bd4de5',1,'daisy::Apds9960']]], - ['setallglobalbrightness_110',['SetAllGlobalBrightness',['../classdaisy_1_1_dot_star.html#ae16a421d5279084c47a68bf91e0a892d',1,'daisy::DotStar']]], - ['setallto_111',['SetAllTo',['../classdaisy_1_1_led_driver_pca9685.html#a5fd2c10af7ace44d2aefc8b81edc8444',1,'daisy::LedDriverPca9685::SetAllTo(uint8_t brightness)'],['../classdaisy_1_1_led_driver_pca9685.html#af9df21fcd2e7116ff49bd3761b4565b7',1,'daisy::LedDriverPca9685::SetAllTo(float brightness)']]], - ['setalltoraw_112',['SetAllToRaw',['../classdaisy_1_1_led_driver_pca9685.html#a257b001d8770d82457848fbc871909a5',1,'daisy::LedDriverPca9685']]], - ['setaudioblocksize_113',['SetAudioBlockSize',['../classdaisy_1_1_daisy_legio.html#a63f308e20fd34f5a46d4b3977889774e',1,'daisy::DaisyLegio::SetAudioBlockSize()'],['../classdaisy_1_1_daisy_versio.html#af7c9ee88f95151cf6a1ce7caa77e09ca',1,'daisy::DaisyVersio::SetAudioBlockSize()'],['../classdaisy_1_1_daisy_seed.html#a4209c18a3c181e8427ebc7639d4170b6',1,'daisy::DaisySeed::SetAudioBlockSize()'],['../classdaisy_1_1_daisy_pod.html#aaa42d4ffc25bb98bdc162d54fe49be0d',1,'daisy::DaisyPod::SetAudioBlockSize()'],['../classdaisy_1_1_daisy_petal.html#a2356b5fdb0f87f28920c96828b2c0c93',1,'daisy::DaisyPetal::SetAudioBlockSize()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a4209445a7e828b5f42993a7426271f5a',1,'daisy::patch_sm::DaisyPatchSM::SetAudioBlockSize()'],['../classdaisy_1_1_daisy_patch.html#a3eb9d0267312bbe4997124afc9d75b89',1,'daisy::DaisyPatch::SetAudioBlockSize()'],['../classdaisy_1_1_daisy_field.html#aa6f862d51378e4a41fb78d82bb02b57e',1,'daisy::DaisyField::SetAudioBlockSize()']]], - ['setaudiosamplerate_114',['SetAudioSampleRate',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a6eade7a9daf10812665600db8f485637',1,'daisy::patch_sm::DaisyPatchSM::SetAudioSampleRate()'],['../classdaisy_1_1_daisy_versio.html#ae0612be43ce8620e9df2cbe7fa9c018e',1,'daisy::DaisyVersio::SetAudioSampleRate()'],['../classdaisy_1_1_daisy_seed.html#a94fc5d21d3c856bf3cb404e40927ec60',1,'daisy::DaisySeed::SetAudioSampleRate()'],['../classdaisy_1_1_daisy_pod.html#a78bd9a9cbbb99bdcc5ab68199ff918e6',1,'daisy::DaisyPod::SetAudioSampleRate()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a20debb020afaf6ee3888aa3ea1891a29',1,'daisy::patch_sm::DaisyPatchSM::SetAudioSampleRate()'],['../classdaisy_1_1_daisy_patch.html#a305c609998f54b22ff469a19d87120ac',1,'daisy::DaisyPatch::SetAudioSampleRate()'],['../classdaisy_1_1_daisy_petal.html#aa1d796eeb7ac6358b6596a15c595d75f',1,'daisy::DaisyPetal::SetAudioSampleRate()'],['../classdaisy_1_1_daisy_field.html#a80ec5aea2976da341853f79f56ae05f2',1,'daisy::DaisyField::SetAudioSampleRate()'],['../classdaisy_1_1_daisy_legio.html#a6df6ea7eb34882f1f9f1512bd24e2109',1,'daisy::DaisyLegio::SetAudioSampleRate()']]], - ['setbank_115',['SetBank',['../classdaisy_1_1_icm20948.html#a1932382ae74cdb019443adabc98f4b4f',1,'daisy::Icm20948']]], - ['setblocksize_116',['SetBlockSize',['../classdaisy_1_1_audio_handle.html#a93bf9a68619280b2524d8a8894c4dff9',1,'daisy::AudioHandle']]], - ['setblue_117',['SetBlue',['../classdaisy_1_1_rgb_led.html#a388ef2c8991a9e5fd75fc0d484bf39ad',1,'daisy::RgbLed']]], - ['setbrightness_118',['SetBrightness',['../classdaisy_1_1_neo_pixel.html#a9191052295b62ef5f4c0e52585c416b0',1,'daisy::NeoPixel']]], - ['setcallback_119',['SetCallback',['../classdaisy_1_1_timer_handle.html#a6a3a083902c7b5fbfc431242d60571f4',1,'daisy::TimerHandle']]], - ['setcoeff_120',['SetCoeff',['../classdaisy_1_1_analog_control.html#a2ace581abd8f0c5e35c0013e01f37f1c',1,'daisy::AnalogControl']]], - ['setcolor_121',['SetColor',['../classdaisy_1_1_rgb_led.html#afc530391dc068788952edbe9907df8e9',1,'daisy::RgbLed']]], - ['setcolorinterrupt_122',['SetColorInterrupt',['../classdaisy_1_1_apds9960.html#a3bb1a90fd6838df8349b983bf090e9dd',1,'daisy::Apds9960']]], - ['setcursor_123',['SetCursor',['../classdaisy_1_1_one_bit_graphics_display.html#ae261bd2a57f39c379cab0465bddfa9fa',1,'daisy::OneBitGraphicsDisplay::SetCursor()'],['../classdaisy_1_1_lcd_h_d44780.html#aff797aa8b9cfe432c61c286b897b1914',1,'daisy::LcdHD44780::SetCursor()']]], - ['setcvout1_124',['SetCvOut1',['../classdaisy_1_1_daisy_field.html#a7fd7e5cfdc8c8880748b9e3e4143902f',1,'daisy::DaisyField']]], - ['setcvout2_125',['SetCvOut2',['../classdaisy_1_1_daisy_field.html#a47532828ea5e88f30782a21d4b4296e1',1,'daisy::DaisyField']]], - ['setdata_126',['SetData',['../classdaisy_1_1_voct_calibration.html#aaaf0c5e195d9fd5c1ef0a727ffdcccfc',1,'daisy::VoctCalibration']]], - ['setfootswitchled_127',['SetFootswitchLed',['../classdaisy_1_1_daisy_petal.html#a562d597f10b98d36bf1c37314a317d8c',1,'daisy::DaisyPetal']]], - ['setfrom0to1_128',['SetFrom0to1',['../classdaisy_1_1_mapped_int_value.html#abb5f3cb08aae5ed0399bfda88f8e09d9',1,'daisy::MappedIntValue::SetFrom0to1()'],['../classdaisy_1_1_mapped_float_value.html#a63f9ead2d537fd2a64ef7e82d1b91d1d',1,'daisy::MappedFloatValue::SetFrom0to1()'],['../classdaisy_1_1_mapped_value.html#a0547c449d82efa4ee8c21e716e035b53',1,'daisy::MappedValue::SetFrom0to1()'],['../classdaisy_1_1_mapped_string_list_value.html#a8e26e8f810f4a06e71324ee595a2b3b6',1,'daisy::MappedStringListValue::SetFrom0to1()']]], - ['setgesturedimensions_129',['SetGestureDimensions',['../classdaisy_1_1_apds9960.html#a52a083d0ee8ead33d27047f25a9bb770',1,'daisy::Apds9960']]], - ['setgesturefifothreshold_130',['SetGestureFIFOThreshold',['../classdaisy_1_1_apds9960.html#a124ffff67a1e7d8f6e49729c3450515f',1,'daisy::Apds9960']]], - ['setgesturegain_131',['SetGestureGain',['../classdaisy_1_1_apds9960.html#ad451a1d1472e6622fdc893e7002521a3',1,'daisy::Apds9960']]], - ['setgestureoffset_132',['SetGestureOffset',['../classdaisy_1_1_apds9960.html#acdae6871ac644aace21d226c8ff85e1c',1,'daisy::Apds9960']]], - ['setgestureproximitythreshold_133',['SetGestureProximityThreshold',['../classdaisy_1_1_apds9960.html#a7fbdc06defefb2ae19af9d781e6b771a',1,'daisy::Apds9960']]], - ['setgreen_134',['SetGreen',['../classdaisy_1_1_rgb_led.html#ad3d5b670d31b51ba43b84ae8aad7081b',1,'daisy::RgbLed']]], - ['setgyrorange_135',['SetGyroRange',['../classdaisy_1_1_icm20948.html#a4f278839c41c1c0b12e65d2c6636994c',1,'daisy::Icm20948']]], - ['setgyroratedivisor_136',['SetGyroRateDivisor',['../classdaisy_1_1_icm20948.html#ab572f660202da841e20e8bcd63663c75',1,'daisy::Icm20948']]], - ['seti2cbypass_137',['SetI2CBypass',['../classdaisy_1_1_icm20948.html#ae453a9399e14b4d45bb2a42731f86cc0',1,'daisy::Icm20948']]], - ['setindex_138',['SetIndex',['../classdaisy_1_1_mapped_string_list_value.html#ab35c22a237a149f42bb4226e79207881',1,'daisy::MappedStringListValue']]], - ['setinterrupt_139',['SetInterrupt',['../classdaisy_1_1_tlv493d.html#a10c8eb11494135a3530b185503b6ab51',1,'daisy::Tlv493d']]], - ['setintlimits_140',['SetIntLimits',['../classdaisy_1_1_apds9960.html#a3e2dfaffe42d0bc1482da0d0e0fbad92',1,'daisy::Apds9960']]], - ['setkeypadevent_141',['SetKeypadEvent',['../classdaisy_1_1_neo_trellis.html#a9f9d8b34ba47241767af0596d906968b',1,'daisy::NeoTrellis']]], - ['setled_142',['SetLed',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a77aa8d762be1784b07a9b56328a7a491',1,'daisy::patch_sm::DaisyPatchSM']]], - ['setled_143',['SetLED',['../classdaisy_1_1_apds9960.html#ad938cafd3f89e17bbf983a6d9fd7e0b3',1,'daisy::Apds9960']]], - ['setled_144',['SetLed',['../classdaisy_1_1_led_driver_pca9685.html#a0d21f17e93238bbef75ee57ab557e7e9',1,'daisy::LedDriverPca9685::SetLed(int ledIndex, uint8_t brightness)'],['../classdaisy_1_1_led_driver_pca9685.html#a7616848201aea05953403406ee89f272',1,'daisy::LedDriverPca9685::SetLed(int ledIndex, float brightness)'],['../classdaisy_1_1_daisy_versio.html#a1ebe1bea805a13bcc366de005c14a27c',1,'daisy::DaisyVersio::SetLed()'],['../classdaisy_1_1_daisy_seed.html#ac4501329b4a5a5cfb9e3cd6003fcda6f',1,'daisy::DaisySeed::SetLed()'],['../classdaisy_1_1_daisy_legio.html#a4576f23c222af59f3c4b98f73a78628a',1,'daisy::DaisyLegio::SetLed()']]], - ['setledraw_145',['SetLedRaw',['../classdaisy_1_1_led_driver_pca9685.html#a0a7c0c80d76741fddd835e4d2b138f3a',1,'daisy::LedDriverPca9685']]], - ['setlooping_146',['SetLooping',['../classdaisy_1_1_wav_player.html#a29d340360f073bd1767e51a06876eafe',1,'daisy::WavPlayer']]], - ['setmagdatarate_147',['SetMagDataRate',['../classdaisy_1_1_icm20948.html#a46c4eda38a5e0b634afdd4993c742ca2',1,'daisy::Icm20948']]], - ['setmode_148',['setMode',['../classdaisy_1_1_dps310.html#a8227bd52a9d2ef66dc95f5648dde5204',1,'daisy::Dps310']]], - ['setonebitgraphicsdisplaytodrawto_149',['SetOneBitGraphicsDisplayToDrawTo',['../classdaisy_1_1_full_screen_item_menu.html#aff9c91b42f7163d6a2dc7014e3fc56d9',1,'daisy::FullScreenItemMenu']]], - ['setoutputcompensation_150',['SetOutputCompensation',['../classdaisy_1_1_audio_handle.html#ad35fbe0d71e89dbaccd362c02261ad8a',1,'daisy::AudioHandle']]], - ['setperiod_151',['SetPeriod',['../classdaisy_1_1_timer_handle.html#a0e11c2b05fbd0c6e1cac5d3babe79453',1,'daisy::TimerHandle']]], - ['setpin_152',['SetPin',['../classdaisy_1_1_neo_pixel.html#a7665573b58aa4f6a53bfcef6c65f8757',1,'daisy::NeoPixel']]], - ['setpixelcolor_153',['SetPixelColor',['../classdaisy_1_1_dot_star.html#af210e855104705b4f6b252b03998db66',1,'daisy::DotStar::SetPixelColor(uint16_t idx, const Color &color)'],['../classdaisy_1_1_dot_star.html#a1be57cf9c6a1a4da99874cc3437d246e',1,'daisy::DotStar::SetPixelColor(uint16_t idx, uint32_t color)'],['../classdaisy_1_1_dot_star.html#aa909ca940c58f2e8863e3be4a6c3a6d2',1,'daisy::DotStar::SetPixelColor(uint16_t idx, uint8_t r, uint8_t g, uint8_t b)'],['../classdaisy_1_1_neo_pixel.html#aba8e7b08e8f6126a34a3d0da252b7960',1,'daisy::NeoPixel::SetPixelColor(uint16_t n, uint8_t r, uint8_t g, uint8_t b)'],['../classdaisy_1_1_neo_pixel.html#a9ed0843e42a63d9650b652e93da858c2',1,'daisy::NeoPixel::SetPixelColor(uint16_t n, uint8_t r, uint8_t g, uint8_t b, uint8_t w)'],['../classdaisy_1_1_neo_pixel.html#af3f3b8d35d190ffc7cefe689ff15ae5e',1,'daisy::NeoPixel::SetPixelColor(uint16_t n, uint32_t c)']]], - ['setpixelglobalbrightness_154',['SetPixelGlobalBrightness',['../classdaisy_1_1_dot_star.html#a8ceaf459805764548b8c1008d97bdad5',1,'daisy::DotStar']]], - ['setpostgain_155',['SetPostGain',['../classdaisy_1_1_audio_handle.html#af958fe1518bf32d93cfc5278a1736789',1,'daisy::AudioHandle']]], - ['setprescaler_156',['SetPrescaler',['../classdaisy_1_1_timer_handle.html#aeab69c0b8cd73cf438bc056786cc00f6',1,'daisy::TimerHandle']]], - ['setproxgain_157',['SetProxGain',['../classdaisy_1_1_apds9960.html#aa4267e573b82f14d7950ebe1f179db0e',1,'daisy::Apds9960']]], - ['setproximityinterrupt_158',['SetProximityInterrupt',['../classdaisy_1_1_apds9960.html#a3cf8c7053b967952b70d4da945ea3fc9',1,'daisy::Apds9960']]], - ['setproxpulse_159',['SetProxPulse',['../classdaisy_1_1_apds9960.html#aa19e474f6dd88346a0b5b845ce1df78a',1,'daisy::Apds9960']]], - ['setreceivecallback_160',['SetReceiveCallback',['../class_usb_handle.html#a52c22cce6616ab3948d7933bfc0e7d0b',1,'UsbHandle::SetReceiveCallback(ReceiveCallback cb, UsbPeriph dev)'],['../class_usb_handle.html#a52c22cce6616ab3948d7933bfc0e7d0b',1,'UsbHandle::SetReceiveCallback(ReceiveCallback cb, UsbPeriph dev)']]], - ['setred_161',['SetRed',['../classdaisy_1_1_rgb_led.html#a3e2c0d791418d97742270a43a0bcdcc4',1,'daisy::RgbLed']]], - ['setregbits_162',['SetRegBits',['../classdaisy_1_1_tlv493d.html#a5fa69cf9112e5c9ecd3992365a803004',1,'daisy::Tlv493d']]], - ['setringled_163',['SetRingLed',['../classdaisy_1_1_daisy_petal.html#ad92270ffe128bc678b78be2067d4fcfe',1,'daisy::DaisyPetal']]], - ['setsamplerate_164',['SetSampleRate',['../classdaisy_1_1_audio_handle.html#a66f20f5f6f2d2b49a80a25678869a47a',1,'daisy::AudioHandle::SetSampleRate()'],['../classdaisy_1_1_led.html#a55c8e1df70930f21270f4c28df6320fb',1,'daisy::Led::SetSampleRate()'],['../classdaisy_1_1_analog_control.html#a4cbdf8afb5e284bd9e12bca004a10fab',1,'daisy::AnalogControl::SetSampleRate()']]], - ['settestpoint_165',['SetTestPoint',['../classdaisy_1_1_daisy_seed.html#a213214b79bb612175f2e82241887d42e',1,'daisy::DaisySeed']]], - ['setthresholds_166',['SetThresholds',['../classdaisy_1_1_mpr121.html#aa8abce9cdda9b9eb3811b54ecf7dcd85',1,'daisy::Mpr121']]], - ['setupdaterate_167',['SetUpdateRate',['../classdaisy_1_1_switch.html#a9b690946462b81edba1feace3625bc64',1,'daisy::Switch::SetUpdateRate()'],['../classdaisy_1_1_encoder.html#aa613736d374d8a751ecb3b804b11e29d',1,'daisy::Encoder::SetUpdateRate()']]], - ['setupmag_168',['SetupMag',['../classdaisy_1_1_icm20948.html#a79983dbc3ab1c35742a700ebed7e066f',1,'daisy::Icm20948']]], - ['setwavetableinfo_169',['SetWaveTableInfo',['../classdaisy_1_1_wave_table_loader.html#a946156ea77f74d7ee25d122a6ba42ab0',1,'daisy::WaveTableLoader']]], - ['shift_170',['shift',['../structdaisy_1_1_tlv493d_1_1_reg_mask__t.html#a2a4e889d529ac949c802f37913911c27',1,'daisy::Tlv493d::RegMask_t']]], - ['shiftregister_171',['SHIFTREGISTER',['../group__shiftregister.html',1,'']]], - ['shiftregister4021_172',['ShiftRegister4021',['../classdaisy_1_1_shift_register4021.html',1,'daisy::ShiftRegister4021< num_daisychained, num_parallel >'],['../classdaisy_1_1_shift_register4021.html#a250b5d7fad3eb6186b05764cf19429b0',1,'daisy::ShiftRegister4021::ShiftRegister4021()']]], - ['shiftregister4021_3c_202_20_3e_173',['ShiftRegister4021< 2 >',['../classdaisy_1_1_shift_register4021.html',1,'daisy']]], - ['shiftregister595_174',['ShiftRegister595',['../class_shift_register595.html#a39dcf4e9c542534e2ea9038e00863d71',1,'ShiftRegister595::ShiftRegister595()'],['../class_shift_register595.html',1,'ShiftRegister595']]], - ['show_175',['Show',['../classdaisy_1_1_dot_star.html#a0aaab3f2d3e9ba335820b9ab37e4320f',1,'daisy::DotStar::Show()'],['../classdaisy_1_1_neo_pixel.html#a0e05f30968513eb931b87aa03e596622',1,'daisy::NeoPixel::Show()']]], - ['size_176',['Size',['../classdaisy_1_1_fixed_cap_str_base.html#aa5fa64469d140217e12dbf6ac2b6dc9c',1,'daisy::FixedCapStrBase']]], - ['size_5f_177',['size_',['../classdaisy_1_1_fixed_cap_str_base.html#aff6f8a265b888819509106fcee39c4a2',1,'daisy::FixedCapStrBase']]], - ['skip_5fclocks_178',['skip_clocks',['../structdaisy_1_1_system_1_1_config.html#aaf361be5637d24e6042949679305dd11',1,'daisy::System::Config']]], - ['slave_179',['SLAVE',['../structdaisy_1_1_spi_handle_1_1_config.html#a00488576b0a4c1364cb2fd09164a30f7a79e19bc2ac33d6c81272024561992f37',1,'daisy::SpiHandle::Config::SLAVE'],['../structdaisy_1_1_sai_handle_1_1_config.html#a269af182475979f6845fb06ffa3c4055a79e19bc2ac33d6c81272024561992f37',1,'daisy::SaiHandle::Config::SLAVE']]], - ['slow_180',['SLOW',['../classdaisy_1_1_sdmmc_handler.html#a78a654b5e915c05224fb64f0dfbe6bcea0e3066cbbd284dce8b76e7c4620d6d75',1,'daisy::SdmmcHandler']]], - ['soft_181',['SOFT',['../structdaisy_1_1_spi_handle_1_1_config.html#a1832b92ab9f6dcacb9c010c4c77c844ea52e743143106c12bfd73aae547fc6e2e',1,'daisy::SpiHandle::Config']]], - ['song_182',['song',['../structdaisy_1_1_song_select_event.html#ab8348fcb912c6ba63200a15eb0386975',1,'daisy::SongSelectEvent']]], - ['songpositionpointer_183',['SongPositionPointer',['../group__midi__events.html#gga4f648ead175d62e97ceb4d3b49f692f5acafb135ab546ad52887416d9a80ac114',1,'daisy']]], - ['songpositionpointerevent_184',['SongPositionPointerEvent',['../structdaisy_1_1_song_position_pointer_event.html',1,'daisy']]], - ['songselect_185',['SongSelect',['../group__midi__events.html#gga4f648ead175d62e97ceb4d3b49f692f5a1d841bd69c010006dcd3f90059bda305',1,'daisy']]], - ['songselectevent_186',['SongSelectEvent',['../structdaisy_1_1_song_select_event.html',1,'daisy']]], - ['specialcontrolids_187',['SpecialControlIds',['../structdaisy_1_1_u_i_1_1_special_control_ids.html',1,'daisy::UI']]], - ['speed_188',['speed',['../structdaisy_1_1_sdmmc_handler_1_1_config.html#a6daf591d4a6e9f9c064f2c1f5a9a098f',1,'daisy::SdmmcHandler::Config']]], - ['speed_189',['Speed',['../classdaisy_1_1_sdmmc_handler.html#a78a654b5e915c05224fb64f0dfbe6bce',1,'daisy::SdmmcHandler']]], - ['speed_190',['speed',['../structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a33d3e4f8290feaeafaf6129817623b88',1,'daisy::Apds9960I2CTransport::Config::speed'],['../structdaisy_1_1_dps310_i2_c_transport_1_1_config.html#a83d3b69cfb0b8a9371e6498e493984d8',1,'daisy::Dps310I2CTransport::Config::speed'],['../structdaisy_1_1_icm20948_i2_c_transport_1_1_config.html#a6023229b2ec0f69bcc4386e837125b0d',1,'daisy::Icm20948I2CTransport::Config::speed'],['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html#a74c4e8b11ada7fa42c0481d7aab53df7',1,'daisy::Mpr121I2CTransport::Config::speed'],['../structdaisy_1_1_neo_pixel_i2_c_transport_1_1_config.html#a87e19b1180c6450aaab7cfc383c67d72',1,'daisy::NeoPixelI2CTransport::Config::speed'],['../structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a58eb60473ecc33d01fa04720d47bc275',1,'daisy::NeoTrellisI2CTransport::Config::speed'],['../structdaisy_1_1_tlv493d_i2_c_transport_1_1_config.html#a42bef4f93adfee472ee2d65f595dd598',1,'daisy::Tlv493dI2CTransport::Config::speed'],['../structdaisy_1_1_g_p_i_o_1_1_config.html#a1fa17cb5a2f58bf0be3272ef9511aaf3',1,'daisy::GPIO::Config::speed']]], - ['speed_191',['Speed',['../structdaisy_1_1_i2_c_handle_1_1_config.html#a744f7d6297a06e87fe2e2014f05d469e',1,'daisy::I2CHandle::Config::Speed'],['../classdaisy_1_1_g_p_i_o.html#ab46ae5f22fd6af1e941fa05252a832f3',1,'daisy::GPIO::Speed']]], - ['speed_192',['speed',['../structdaisy_1_1_i2_c_handle_1_1_config.html#a7795ab9b3b85bd2f51950b6985a31b97',1,'daisy::I2CHandle::Config']]], - ['speed_5f_193',['speed_',['../structdaisy_1_1_adc_channel_config.html#a93bf7aebe5faa56c19d2254b90e6c83b',1,'daisy::AdcChannelConfig']]], - ['speed_5f16cycles_5f5_194',['SPEED_16CYCLES_5',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09aadda413d3a201a86353098f0c15d4a25',1,'daisy::AdcChannelConfig']]], - ['speed_5f1cycles_5f5_195',['SPEED_1CYCLES_5',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09a05c893fa4164c2778e48388abf863e48',1,'daisy::AdcChannelConfig']]], - ['speed_5f2cycles_5f5_196',['SPEED_2CYCLES_5',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09a126128ad4d1f178230f050a1395ffc78',1,'daisy::AdcChannelConfig']]], - ['speed_5f32cycles_5f5_197',['SPEED_32CYCLES_5',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09a8d98c7e6accb925851bbfd8f69b063eb',1,'daisy::AdcChannelConfig']]], - ['speed_5f387cycles_5f5_198',['SPEED_387CYCLES_5',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09a5d9a4c155a760f3bbc751d0166b779da',1,'daisy::AdcChannelConfig']]], - ['speed_5f64cycles_5f5_199',['SPEED_64CYCLES_5',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09af2a987547380311cd2108b0df7a31da6',1,'daisy::AdcChannelConfig']]], - ['speed_5f810cycles_5f5_200',['SPEED_810CYCLES_5',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09ae9358907cf8e8694f1de9c2f5ce780a8',1,'daisy::AdcChannelConfig']]], - ['speed_5f8cycles_5f5_201',['SPEED_8CYCLES_5',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09a257ad66e50fc8d25b376ffa37ba6dca9',1,'daisy::AdcChannelConfig']]], - ['spi_202',['SPI',['../md_doc_2md_2__a8___getting-_started-_s_p_i.html',1,'']]], - ['spi_2eh_203',['spi.h',['../spi_8h.html',1,'']]], - ['spi_5f1_204',['SPI_1',['../structdaisy_1_1_spi_handle_1_1_config.html#a446ef992a86b93c86fa966f42375586da098d0536cc8ca73ea75f22b4c8e1def3',1,'daisy::SpiHandle::Config']]], - ['spi_5f2_205',['SPI_2',['../structdaisy_1_1_spi_handle_1_1_config.html#a446ef992a86b93c86fa966f42375586da69d77f84154e4d476a4e0ac9a848a54f',1,'daisy::SpiHandle::Config']]], - ['spi_5f3_206',['SPI_3',['../structdaisy_1_1_spi_handle_1_1_config.html#a446ef992a86b93c86fa966f42375586da3136d224851a91299f0fde0135b1adde',1,'daisy::SpiHandle::Config']]], - ['spi_5f4_207',['SPI_4',['../structdaisy_1_1_spi_handle_1_1_config.html#a446ef992a86b93c86fa966f42375586dac9a2f43a99c50118b201d70bbda310e4',1,'daisy::SpiHandle::Config']]], - ['spi_5f5_208',['SPI_5',['../structdaisy_1_1_spi_handle_1_1_config.html#a446ef992a86b93c86fa966f42375586dad542978ab136ddc731480ff46302acb9',1,'daisy::SpiHandle::Config']]], - ['spi_5f6_209',['SPI_6',['../structdaisy_1_1_spi_handle_1_1_config.html#a446ef992a86b93c86fa966f42375586dac81c898df22f87db948fdb3f9377314b',1,'daisy::SpiHandle::Config']]], - ['spi_5fconfig_210',['spi_config',['../structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a2725b473c07c6bf9e8b57a0a810799c1',1,'daisy::SSD130x4WireSpiTransport::Config']]], - ['spihandle_211',['SpiHandle',['../classdaisy_1_1_spi_handle.html',1,'daisy::SpiHandle'],['../classdaisy_1_1_spi_handle.html#ac060acec2d6c651a1d330443e4c6c9f6',1,'daisy::SpiHandle::SpiHandle()'],['../classdaisy_1_1_spi_handle.html#a389021fcd8c1ffa264c2568d5ad4f17f',1,'daisy::SpiHandle::SpiHandle(const SpiHandle &other)=default']]], - ['spimultislave_2eh_212',['spiMultislave.h',['../spi_multislave_8h.html',1,'']]], - ['sr_213',['sr',['../structdaisy_1_1_sai_handle_1_1_config.html#a05f5f92b5f15f31c8ffef09403412370',1,'daisy::SaiHandle::Config']]], - ['sr_5f4021_2eh_214',['sr_4021.h',['../sr__4021_8h.html',1,'']]], - ['sr_5f595_2eh_215',['sr_595.h',['../sr__595_8h.html',1,'']]], - ['sram_5fd1_216',['SRAM_D1',['../classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669a35f8f673757164a22c8b4480b3f2cb14',1,'daisy::System']]], - ['sram_5fd2_217',['SRAM_D2',['../classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669a41391ab0f45c27d3c9fbf78c3e704eaa',1,'daisy::System']]], - ['sram_5fd3_218',['SRAM_D3',['../classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669a748714d5582ea547bb760b0ceb3cb524',1,'daisy::System']]], - ['srt_5ftype_219',['srt_type',['../structdaisy_1_1_midi_event.html#a6981641c0057f45e3a8556a55948b9fc',1,'daisy::MidiEvent']]], - ['srtundefined0_220',['SRTUndefined0',['../group__midi__events.html#gga3069be23e98a0299bbfa8f1759754d45a2eb09ebb3ba848fe764c2a70a8bccc06',1,'daisy']]], - ['srtundefined1_221',['SRTUndefined1',['../group__midi__events.html#gga3069be23e98a0299bbfa8f1759754d45aeac3f9db3a5e741f739a858c71c242a0',1,'daisy']]], - ['ssd130x4wiresoftspi128x64driver_222',['SSD130x4WireSoftSpi128x64Driver',['../namespacedaisy.html#ae8e2e71dc645fcd1b8ce39a222c54bbb',1,'daisy']]], - ['ssd130x4wiresoftspitransport_223',['SSD130x4WireSoftSpiTransport',['../classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html',1,'daisy']]], - ['ssd130x4wirespi128x32driver_224',['SSD130x4WireSpi128x32Driver',['../namespacedaisy.html#a11d2079f8e664f71755233a82ed3403a',1,'daisy']]], - ['ssd130x4wirespi128x64driver_225',['SSD130x4WireSpi128x64Driver',['../namespacedaisy.html#aee317551f4e4af6b26f81739b7ba2f42',1,'daisy']]], - ['ssd130x4wirespi64x32driver_226',['SSD130x4WireSpi64x32Driver',['../namespacedaisy.html#af93a87691f811767ffd06cc43679041f',1,'daisy']]], - ['ssd130x4wirespi64x48driver_227',['SSD130x4WireSpi64x48Driver',['../namespacedaisy.html#a41d79b1f2587e288132f776d2fe96ae1',1,'daisy']]], - ['ssd130x4wirespi98x16driver_228',['SSD130x4WireSpi98x16Driver',['../namespacedaisy.html#a2be114c48c7ff1abd849a43db7f9c240',1,'daisy']]], - ['ssd130x4wirespitransport_229',['SSD130x4WireSpiTransport',['../classdaisy_1_1_s_s_d130x4_wire_spi_transport.html',1,'daisy']]], - ['ssd130xdriver_230',['SSD130xDriver',['../classdaisy_1_1_s_s_d130x_driver.html',1,'daisy']]], - ['ssd130xi2c128x32driver_231',['SSD130xI2c128x32Driver',['../namespacedaisy.html#ae5cc467ccb27e227a81ca126dada30fb',1,'daisy']]], - ['ssd130xi2c128x64driver_232',['SSD130xI2c128x64Driver',['../namespacedaisy.html#a4af84459e74f4102d36054751f93e570',1,'daisy']]], - ['ssd130xi2c64x32driver_233',['SSD130xI2c64x32Driver',['../namespacedaisy.html#a8aa6a733725c92ec32701dacc75092fe',1,'daisy']]], - ['ssd130xi2c64x48driver_234',['SSD130xI2c64x48Driver',['../namespacedaisy.html#a76096dc3b21d044b66782f18906fe46d',1,'daisy']]], - ['ssd130xi2c98x16driver_235',['SSD130xI2c98x16Driver',['../namespacedaisy.html#acd406732d55384b504529db2e83602b6',1,'daisy']]], - ['ssd130xi2ctransport_236',['SSD130xI2CTransport',['../classdaisy_1_1_s_s_d130x_i2_c_transport.html',1,'daisy']]], - ['stack_237',['Stack',['../classdaisy_1_1_stack.html',1,'daisy::Stack< T, capacity >'],['../classdaisy_1_1_stack.html#ac64eead92237e6ad10158920b0a99403',1,'daisy::Stack::Stack()'],['../classdaisy_1_1_stack.html#ac748320726685d136f15e2e61d692e59',1,'daisy::Stack::Stack(const Stack< T, otherCapacity > &other)'],['../classdaisy_1_1_stack.html#ad2d0dc383669108bd0fea624941fd9b7',1,'daisy::Stack::Stack(std::initializer_list< T > valuesToAdd)']]], - ['stack_2eh_238',['Stack.h',['../_stack_8h.html',1,'']]], - ['stack_3c_20daisy_3a_3auicanvasdescriptor_2c_20kmaxnumcanvases_20_3e_239',['Stack< daisy::UiCanvasDescriptor, kMaxNumCanvases >',['../classdaisy_1_1_stack.html',1,'daisy']]], - ['stack_3c_20daisy_3a_3auipage_20_2a_2c_20kmaxnumpages_20_3e_240',['Stack< daisy::UiPage *, kMaxNumPages >',['../classdaisy_1_1_stack.html',1,'daisy']]], - ['stackbase_241',['StackBase',['../classdaisy_1_1_stack_base.html',1,'daisy::StackBase< T >'],['../classdaisy_1_1_stack_base.html#afb33382096c3e4f80d410916220191e8',1,'daisy::StackBase::StackBase(T *buffer, size_t bufferSize, std::initializer_list< T > valuesToAdd)'],['../classdaisy_1_1_stack_base.html#a688438b8a70832061ee28b42274ab160',1,'daisy::StackBase::StackBase(T *buffer, size_t bufferSize)']]], - ['stackbase_3c_20daisy_3a_3auicanvasdescriptor_20_3e_242',['StackBase< daisy::UiCanvasDescriptor >',['../classdaisy_1_1_stack_base.html',1,'daisy']]], - ['stackbase_3c_20daisy_3a_3auipage_20_2a_20_3e_243',['StackBase< daisy::UiPage * >',['../classdaisy_1_1_stack_base.html',1,'daisy']]], - ['standard_244',['STANDARD',['../classdaisy_1_1_sdmmc_handler.html#a78a654b5e915c05224fb64f0dfbe6bcea94e94133f4bdc1794c6b647b8ea134d0',1,'daisy::SdmmcHandler']]], - ['start_245',['Start',['../classdaisy_1_1_timer_handle.html#a1016ea27b193aeb40f1d9d199dcbc2e1',1,'daisy::TimerHandle::Start()'],['../classdaisy_1_1_dac_handle.html#a11c804998db9c5c40bc46bacd8040358',1,'daisy::DacHandle::Start()'],['../classdaisy_1_1_m_a_x11300_driver.html#a8dcccec71d283d6f35a551874add7af0',1,'daisy::MAX11300Driver::Start()'],['../classdaisy_1_1_dac_handle.html#a5873d528617ac2b7f07562d78bde65fc',1,'daisy::DacHandle::Start()'],['../classdaisy_1_1_adc_handle.html#a6fddddc75eb2d4ba0365a68d4bac2bd3',1,'daisy::AdcHandle::Start()'],['../classdaisy_1_1_audio_handle.html#a9d2bf9d2dd2256af4d77da403873b9fc',1,'daisy::AudioHandle::Start(InterleavingAudioCallback callback)'],['../classdaisy_1_1_audio_handle.html#a068984ea4ad72f6d0be070fb8ddd346e',1,'daisy::AudioHandle::Start(AudioCallback callback)'],['../group__midi__events.html#gga3069be23e98a0299bbfa8f1759754d45a8361fbf1bffde824dc04af5e9a478e67',1,'daisy::Start']]], - ['startadc_246',['StartAdc',['../classdaisy_1_1_daisy_pod.html#ac98cbdd0e34ec2cb994ca012f05e6317',1,'daisy::DaisyPod::StartAdc()'],['../classdaisy_1_1_daisy_field.html#a3704e1fa291d6f4dada8310c9b4df1d4',1,'daisy::DaisyField::StartAdc()'],['../classdaisy_1_1_daisy_legio.html#a885cdb76f791c45f64bec82c3e36b8a7',1,'daisy::DaisyLegio::StartAdc()'],['../classdaisy_1_1_daisy_patch.html#aef89b7d3492d87652af2207f315e6c6d',1,'daisy::DaisyPatch::StartAdc()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a3364d644e5510458217d4d4e993be3c0',1,'daisy::patch_sm::DaisyPatchSM::StartAdc()'],['../classdaisy_1_1_daisy_petal.html#aa622a3f66ecb66b1980afd8ed223a60b',1,'daisy::DaisyPetal::StartAdc()'],['../classdaisy_1_1_daisy_versio.html#a2e0fb36f0915cb10ed1e04af68b99b7c',1,'daisy::DaisyVersio::StartAdc()']]], - ['startaudio_247',['StartAudio',['../classdaisy_1_1_daisy_patch.html#ab5a3f2af944cf766d2e2108efcb8bb9c',1,'daisy::DaisyPatch::StartAudio()'],['../classdaisy_1_1_daisy_seed.html#a2c530dd1fae556b8ee6939d9092e2966',1,'daisy::DaisySeed::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_seed.html#a8ffb8115424a566cdb4461a19ffdaf2f',1,'daisy::DaisySeed::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_pod.html#a3b8c09167dc1c2992054aa789b1ccd97',1,'daisy::DaisyPod::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_pod.html#a6acbf4fc35f15464540a812062f5cf8f',1,'daisy::DaisyPod::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_petal.html#a632b41303383c649898096df26272784',1,'daisy::DaisyPetal::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_petal.html#a603af40d3fc2a5ca8bf0bb39a02ce995',1,'daisy::DaisyPetal::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a0bbf4d6dab923903860ce331438b6d1f',1,'daisy::patch_sm::DaisyPatchSM::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#ac6209bd036a2726fe2e5c23336129ad2',1,'daisy::patch_sm::DaisyPatchSM::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_legio.html#ae9cb00ab702dddb444ec22abfbf8ac33',1,'daisy::DaisyLegio::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_legio.html#a9388a2fbad155bed43ecc5184e775a89',1,'daisy::DaisyLegio::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_versio.html#a4590bf0bd0eea4fef423379d579a6a39',1,'daisy::DaisyVersio::StartAudio()'],['../classdaisy_1_1_daisy_field.html#a45e8e20435017c73fe31dd8ae2aedb6f',1,'daisy::DaisyField::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_field.html#aadde15ba09d4cd9cca94f5ad4726129f',1,'daisy::DaisyField::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_versio.html#ad0aaeb0f8ab4ba21654b188dd6f6d8c7',1,'daisy::DaisyVersio::StartAudio()']]], - ['startcallbackfunctionptr_248',['StartCallbackFunctionPtr',['../classdaisy_1_1_spi_handle.html#ac2f47ed26b7630dd193c59204a72daa1',1,'daisy::SpiHandle::StartCallbackFunctionPtr'],['../classdaisy_1_1_uart_handler.html#a67b4d9b8492cff01abcd79b57cacebec',1,'daisy::UartHandler::StartCallbackFunctionPtr']]], - ['startdac_249',['StartDac',['../classdaisy_1_1_daisy_field.html#a76e10ba692e77ee5d66e3e21bb8181be',1,'daisy::DaisyField::StartDac()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a76af459a006eb995a2f9489d2212f148',1,'daisy::patch_sm::DaisyPatchSM::StartDac()']]], - ['startdma_250',['StartDma',['../classdaisy_1_1_sai_handle.html#a11626ecc438f4ba0933e93ae730b57ee',1,'daisy::SaiHandle']]], - ['startlog_251',['StartLog',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a9793cd48c769ef5fef261d82085af445',1,'daisy::patch_sm::DaisyPatchSM::StartLog()'],['../classdaisy_1_1_daisy_seed.html#a1dc5e257b31624e4a7fc95a642479228',1,'daisy::DaisySeed::StartLog()'],['../classdaisy_1_1_logger.html#a71a09a4fec04899145840441af05a07b',1,'daisy::Logger::StartLog()'],['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#a641e1f67b84ada4032ce0c3646c20ed8',1,'daisy::Logger< LOGGER_NONE >::StartLog()']]], - ['startreceive_252',['StartReceive',['../classdaisy_1_1_midi_handler.html#a28d650f767ca99afaa79e39664fcb4c2',1,'daisy::MidiHandler']]], - ['startrx_253',['StartRx',['../classdaisy_1_1_midi_uart_transport.html#ac19153d70ce2f869e96cca20453197b7',1,'daisy::MidiUartTransport::StartRx()'],['../classdaisy_1_1_midi_usb_transport.html#a15246033ff7a78e47c37b2ade7769705',1,'daisy::MidiUsbTransport::StartRx()'],['../classdaisy_1_1_uart_handler.html#a24098e17a8be0b1b2a229f1959c941db',1,'daisy::UartHandler::StartRx()']]], - ['startswith_254',['StartsWith',['../classdaisy_1_1_fixed_cap_str_base.html#ae64aa4ce6a51a36532493155262f158d',1,'daisy::FixedCapStrBase']]], - ['startswithignoringcase_255',['StartsWithIgnoringCase',['../classdaisy_1_1_fixed_cap_str_base.html#a02f42643ec5f296aff45c960878ed48b',1,'daisy::FixedCapStrBase']]], - ['stataddreg_256',['StatAddReg',['../classdaisy_1_1_neo_pixel.html#ae8c5611d43b53c821488a4e5b762b7d1',1,'daisy::NeoPixel']]], - ['state_257',['State',['../classdaisy_1_1_persistent_storage.html#ad48f55bcb2a8b6959c0f4cf7822b0efa',1,'daisy::PersistentStorage::State'],['../classdaisy_1_1_shift_register4021.html#a6fd476472092be0ba51b6a7e1435b411',1,'daisy::ShiftRegister4021::State()'],['../classdaisy_1_1_gate_in.html#a08f75c6621307249de3107df96cfab2d',1,'daisy::GateIn::State()']]], - ['state_258',['STATE',['../uniondaisy_1_1_neo_trellis_1_1key_state.html#a0e5950baf19bbe6ec35f5354a9ae02e1',1,'daisy::NeoTrellis::keyState']]], - ['status_259',['Status',['../classdaisy_1_1_q_s_p_i_handle.html#a130e764ad0cd53c10c0bc85193e8c133',1,'daisy::QSPIHandle']]], - ['statusfuncaddregs_260',['StatusFuncAddRegs',['../classdaisy_1_1_neo_trellis.html#af147efe4392e071419f7ae71ee29b0d3',1,'daisy::NeoTrellis']]], - ['step_261',['Step',['../classdaisy_1_1_mapped_value.html#aada8599a26752072c8cafd3c72cfc363',1,'daisy::MappedValue::Step()'],['../classdaisy_1_1_mapped_float_value.html#a6d694d504dee817692e827a03ef0cba3',1,'daisy::MappedFloatValue::Step()'],['../classdaisy_1_1_mapped_int_value.html#ad226278c98dbad71c9b6ed36a9da2fb6',1,'daisy::MappedIntValue::Step()'],['../classdaisy_1_1_mapped_string_list_value.html#a93cf610f964ea96d1893b5521dc9efa3',1,'daisy::MappedStringListValue::Step()']]], - ['stop_262',['Stop',['../group__midi__events.html#gga3069be23e98a0299bbfa8f1759754d45ae4621bb0596a2aa6412e6bed132d03ef',1,'daisy::Stop'],['../classdaisy_1_1_m_a_x11300_driver.html#aba20195f2dab641796d58a25f12667f4',1,'daisy::MAX11300Driver::Stop()'],['../classdaisy_1_1_audio_handle.html#ae0592d95b7f211bb4837b5a0f51ca5c7',1,'daisy::AudioHandle::Stop()'],['../classdaisy_1_1_adc_handle.html#ab6a016e484c9b7389e6302521e778bc9',1,'daisy::AdcHandle::Stop()'],['../classdaisy_1_1_dac_handle.html#ab0dcfed9ca249820670d45a75a49aaa0',1,'daisy::DacHandle::Stop()'],['../classdaisy_1_1_timer_handle.html#a371b05e9ff969c35e6daf2b8c1fa1d0e',1,'daisy::TimerHandle::Stop()']]], - ['stopadc_263',['StopAdc',['../classdaisy_1_1_daisy_field.html#a64c5254d55c822ed02f1afd6c97d78df',1,'daisy::DaisyField::StopAdc()'],['../classdaisy_1_1_daisy_legio.html#a3d7e9f9f749427f3ba59c6d60ebf1dea',1,'daisy::DaisyLegio::StopAdc()'],['../classdaisy_1_1_daisy_patch.html#a66aa03d67e904654fe1935bda7799010',1,'daisy::DaisyPatch::StopAdc()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a744fa233d5a85b9af051e5e8fdf78a5a',1,'daisy::patch_sm::DaisyPatchSM::StopAdc()'],['../classdaisy_1_1_daisy_petal.html#a6991d127bdc7dfa96d8a1ee168050746',1,'daisy::DaisyPetal::StopAdc()'],['../classdaisy_1_1_daisy_pod.html#a75a0c9b9647257856bcbad57fb9f91b4',1,'daisy::DaisyPod::StopAdc()'],['../classdaisy_1_1_daisy_versio.html#a33ff3c1fc69dfc391cdf202ee2f332cb',1,'daisy::DaisyVersio::StopAdc()']]], - ['stopaudio_264',['StopAudio',['../classdaisy_1_1_daisy_petal.html#aa5f7f3b1730d3d7cfd5e64f863463f42',1,'daisy::DaisyPetal::StopAudio()'],['../classdaisy_1_1_daisy_versio.html#a2f9891f4d072f8492c1feb794880c4ed',1,'daisy::DaisyVersio::StopAudio()'],['../classdaisy_1_1_daisy_seed.html#aed16a490a02c3ad2b3d10cb567957e4f',1,'daisy::DaisySeed::StopAudio()'],['../classdaisy_1_1_daisy_pod.html#ad1f745242c8248f186e6ae0931b3f4fa',1,'daisy::DaisyPod::StopAudio()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a505410067658f1423b392c63c96b7299',1,'daisy::patch_sm::DaisyPatchSM::StopAudio()'],['../classdaisy_1_1_daisy_legio.html#ab5870c1734bfdb750058ad301005794c',1,'daisy::DaisyLegio::StopAudio()'],['../classdaisy_1_1_daisy_patch.html#a1f955cd08ba4228cb2cedbd953bc7094',1,'daisy::DaisyPatch::StopAudio()'],['../classdaisy_1_1_daisy_field.html#a33df0d48abfa4e92b11b460aec6663c5',1,'daisy::DaisyField::StopAudio()']]], - ['stopbits_265',['StopBits',['../structdaisy_1_1_uart_handler_1_1_config.html#a308b7817c645e6af7d8115da1e5beb94',1,'daisy::UartHandler::Config']]], - ['stopbits_266',['stopbits',['../structdaisy_1_1_uart_handler_1_1_config.html#a490845e58271053432b93ec8cc56798e',1,'daisy::UartHandler::Config']]], - ['stopdac_267',['StopDac',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a8d9c7ec46f0532b5c655868b8d680163',1,'daisy::patch_sm::DaisyPatchSM']]], - ['stopdma_268',['StopDma',['../classdaisy_1_1_sai_handle.html#a99de674d71df2db2e2ee445396c1e6cf',1,'daisy::SaiHandle']]], - ['stream_269',['Stream',['../classdaisy_1_1_wav_player.html#a52be0ed680b908241ffc287f879c6c7a',1,'daisy::WavPlayer']]], - ['stringize_270',['STRINGIZE',['../group__logging__macros.html#ga9301916f6c8ae438b0cf7c6769b34128',1,'logger.h']]], - ['stringize_5fnx_271',['STRINGIZE_NX',['../group__logging__macros.html#gaf90e7cb64f23452c7c57b9b231bace78',1,'logger.h']]], - ['strlen_272',['strlen',['../classdaisy_1_1_fixed_cap_str_base.html#a36894eceea6adb51c2ec9f829ee7b39c',1,'daisy::FixedCapStrBase']]], - ['subchunk1id_273',['SubChunk1ID',['../structdaisy_1_1_w_a_v___format_type_def.html#a027b8307b27f1648d55fbcc9be8fa02f',1,'daisy::WAV_FormatTypeDef']]], - ['subchunk1size_274',['SubChunk1Size',['../structdaisy_1_1_w_a_v___format_type_def.html#a3f00bebc16e12c569d7a30d4d0da5abc',1,'daisy::WAV_FormatTypeDef']]], - ['subchunk2id_275',['SubChunk2ID',['../structdaisy_1_1_w_a_v___format_type_def.html#ae31021692b18b35a7f33e9e5e8d0a3f1',1,'daisy::WAV_FormatTypeDef']]], - ['subchunk2size_276',['SubCHunk2Size',['../structdaisy_1_1_w_a_v___format_type_def.html#a93968350c8f1abcd287e79ded8b6a81d',1,'daisy::WAV_FormatTypeDef']]], - ['sw_277',['sw',['../classdaisy_1_1_daisy_legio.html#a5e379882fca42288ccc90e4c3f98cf43',1,'daisy::DaisyLegio::sw'],['../classdaisy_1_1_daisy_field.html#ac57dd57a3cbf308ae2215ba8f4134e8f',1,'daisy::DaisyField::sw'],['../classdaisy_1_1_daisy_versio.html#aa40cf7681aed764ecf3529b3573f0a25',1,'daisy::DaisyVersio::sw']]], - ['sw_278',['Sw',['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911',1,'daisy::DaisyPetal::Sw'],['../classdaisy_1_1_daisy_pod.html#a148bfabd288f0b4d20a26b1d0e3bdeeb',1,'daisy::DaisyPod::Sw']]], - ['sw_5f0_279',['SW_0',['../classdaisy_1_1_daisy_versio.html#a6f2416114c97e313ade19a8142c396b7a25db83ab54213d7db432a505cdc269d6',1,'daisy::DaisyVersio']]], - ['sw_5f1_280',['SW_1',['../classdaisy_1_1_daisy_field.html#a418e1e43655501188c4e740e90e98beca741b822407920a640d754e56dc9c5cf2',1,'daisy::DaisyField::SW_1'],['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911ab2afe0429e8b94db1fad8f879aa4b2ff',1,'daisy::DaisyPetal::SW_1'],['../classdaisy_1_1_daisy_versio.html#a6f2416114c97e313ade19a8142c396b7aa290d40f4d9adcf845b94cdb25b981d1',1,'daisy::DaisyVersio::SW_1']]], - ['sw_5f2_281',['SW_2',['../classdaisy_1_1_daisy_field.html#a418e1e43655501188c4e740e90e98becaead8e960d21a99c44694ae3f7ddedf7b',1,'daisy::DaisyField::SW_2'],['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911a684e6a6ab7d709f8b827c97b2639f2ab',1,'daisy::DaisyPetal::SW_2']]], - ['sw_5f3_282',['SW_3',['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911aa2bd052d217894508a36856ea5843d3e',1,'daisy::DaisyPetal']]], - ['sw_5f4_283',['SW_4',['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911acda6031d654ad6b6d6f094419e97968c',1,'daisy::DaisyPetal']]], - ['sw_5f5_284',['SW_5',['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911a9a13b8958600f5421b29017057614f64',1,'daisy::DaisyPetal']]], - ['sw_5f6_285',['SW_6',['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911ad45878f759196455d7fa6ee41ed93dc6',1,'daisy::DaisyPetal']]], - ['sw_5f7_286',['SW_7',['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911ae2a1269dd381d8c8aa9de3aae9e400f4',1,'daisy::DaisyPetal']]], - ['sw_5flast_287',['SW_LAST',['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911af4668f61ed58c3103b2800d3cf45ca7c',1,'daisy::DaisyPetal::SW_LAST'],['../classdaisy_1_1_daisy_versio.html#a6f2416114c97e313ade19a8142c396b7a9b6a42bbf8432dcdc700dc268da61404',1,'daisy::DaisyVersio::SW_LAST'],['../classdaisy_1_1_daisy_legio.html#ac42890eb3f8ca1742947606d5f1475d3a94596e358daaae5b9b5ce3340cc84c38',1,'daisy::DaisyLegio::SW_LAST'],['../classdaisy_1_1_daisy_field.html#a418e1e43655501188c4e740e90e98beca865113e9e584259b98c17d98e2bb88ad',1,'daisy::DaisyField::SW_LAST']]], - ['sw_5fleft_288',['SW_LEFT',['../classdaisy_1_1_daisy_legio.html#ac42890eb3f8ca1742947606d5f1475d3a34d38b6857c1ff012a9614089327ffc8',1,'daisy::DaisyLegio']]], - ['sw_5fright_289',['SW_RIGHT',['../classdaisy_1_1_daisy_legio.html#ac42890eb3f8ca1742947606d5f1475d3a861ee3a902acbc55130f66ef827f6955',1,'daisy::DaisyLegio']]], - ['swallow_290',['Swallow',['../classdaisy_1_1_ring_buffer.html#ac7bdb6693448c488bda8e6d830f9bfcb',1,'daisy::RingBuffer']]], - ['swap_291',['Swap',['../namespacedaisy.html#af68a2e700b33a01728ddc00075c3ea1c',1,'daisy::Swap()'],['../classdaisy_1_1_fixed_cap_str_base.html#ad28ed8bb868191ba79bc9ed25e278cda',1,'daisy::FixedCapStrBase::Swap(FixedCapStrBase &rhs) noexcept']]], - ['swap_5f_292',['Swap_',['../classdaisy_1_1_fixed_cap_str_base.html#aaf2ab8cea03625c4e3b65526d09c0500',1,'daisy::FixedCapStrBase']]], - ['swapbuffersandtransmit_293',['SwapBuffersAndTransmit',['../classdaisy_1_1_led_driver_pca9685.html#aaa538bb3ae180234011761962d2119cf',1,'daisy::LedDriverPca9685']]], - ['switch_294',['Switch',['../classdaisy_1_1_switch.html',1,'daisy::Switch'],['../classdaisy_1_1_switch.html#ad14a8ae20033d940d6c9eeb03c1385b8',1,'daisy::Switch::Switch()']]], - ['switch_2eh_295',['switch.h',['../switch_8h.html',1,'']]], - ['switch3_296',['Switch3',['../classdaisy_1_1_switch3.html',1,'daisy::Switch3'],['../classdaisy_1_1_switch3.html#a913db214526f97cc7ae0121c85aedcb2',1,'daisy::Switch3::Switch3()']]], - ['switch3_2eh_297',['switch3.h',['../switch3_8h.html',1,'']]], - ['switches_298',['switches',['../classdaisy_1_1_daisy_petal.html#a4c23c5086d0620b98c2d4a86fde53af2',1,'daisy::DaisyPetal']]], - ['switchpressed_299',['SwitchPressed',['../classdaisy_1_1_daisy_versio.html#a2c1972b50f762a75aec4bcc5baa99bb7',1,'daisy::DaisyVersio']]], - ['swreset_300',['SWReset',['../classdaisy_1_1_neo_pixel.html#ac8afed18a175b01a127f049856889bd8',1,'daisy::NeoPixel::SWReset()'],['../classdaisy_1_1_neo_trellis.html#ae052cf27a7ad81a8c63f6cc70080ac66',1,'daisy::NeoTrellis::SWReset()']]], - ['sync_301',['Sync',['../structdaisy_1_1_sai_handle_1_1_config.html#a269af182475979f6845fb06ffa3c4055',1,'daisy::SaiHandle::Config']]], - ['sysclkfreq_302',['SysClkFreq',['../structdaisy_1_1_system_1_1_config.html#a100d6b1e0b41cf2bf17ecffe28fabfa7',1,'daisy::System::Config']]], - ['sysex_5fbuffer_5flen_303',['SYSEX_BUFFER_LEN',['../midi_8h.html#a02f1ba6b22046642cb6f52e3fab60241',1,'midi.h']]], - ['sysex_5fdata_304',['sysex_data',['../structdaisy_1_1_midi_event.html#a3832d8ac412e42359eff562b56362cbb',1,'daisy::MidiEvent']]], - ['sysex_5fmessage_5flen_305',['sysex_message_len',['../structdaisy_1_1_midi_event.html#a63fe8f48ba2e932b407a8fb4d74f8cc1',1,'daisy::MidiEvent']]], - ['sysexend_306',['SysExEnd',['../group__midi__events.html#gga4f648ead175d62e97ceb4d3b49f692f5a552884ae561eb056d1ffc75827b43057',1,'daisy']]], - ['system_307',['System',['../classdaisy_1_1_system.html',1,'daisy']]], - ['system_308',['system',['../classdaisy_1_1_daisy_seed.html#aa47f39a45d5cda87a428853a92c42f18',1,'daisy::DaisySeed::system'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#aee9989e96b489f7726676140ac0b9c26',1,'daisy::patch_sm::DaisyPatchSM::system']]], - ['system_309',['SYSTEM',['../group__system.html',1,'']]], - ['system_310',['System',['../classdaisy_1_1_system.html#a1662ffb07d4098995be06bea9b502b24',1,'daisy::System']]], - ['system_2eh_311',['system.h',['../system_8h.html',1,'']]], - ['systemcommon_312',['SystemCommon',['../group__midi__events.html#ggaaf09bb687034c8776ca0c68ed3ed4179a211055e6e972c4c9adb11f128aeee32e',1,'daisy']]], - ['systemcommonlast_313',['SystemCommonLast',['../group__midi__events.html#gga4f648ead175d62e97ceb4d3b49f692f5ab6aba2a25dae0b056e5e88f5dcd106bc',1,'daisy']]], - ['systemcommontype_314',['SystemCommonType',['../group__midi__events.html#ga4f648ead175d62e97ceb4d3b49f692f5',1,'daisy']]], - ['systemexclusive_315',['SystemExclusive',['../group__midi__events.html#gga4f648ead175d62e97ceb4d3b49f692f5a22d3dbb96afe5ec810fc6de987200a9c',1,'daisy']]], - ['systemexclusiveevent_316',['SystemExclusiveEvent',['../structdaisy_1_1_system_exclusive_event.html',1,'daisy']]], - ['systemrealtime_317',['SystemRealTime',['../group__midi__events.html#ggaaf09bb687034c8776ca0c68ed3ed4179a5b11a7cc1fb889b396a43a2bf7ca77a9',1,'daisy']]], - ['systemrealtimelast_318',['SystemRealTimeLast',['../group__midi__events.html#gga3069be23e98a0299bbfa8f1759754d45ad64c430420659a465fefd49438ecd1fa',1,'daisy']]], - ['systemrealtimetype_319',['SystemRealTimeType',['../group__midi__events.html#ga3069be23e98a0299bbfa8f1759754d45',1,'daisy']]] + ['sdram_54',['sdram',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a898f9882aa60b6f16336fd613e1653d1',1,'daisy::patch_sm::DaisyPatchSM']]], + ['sdram_55',['SDRAM',['../classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669ab807d16cd8d3035372711ec15a4e5c92',1,'daisy::System::SDRAM'],['../group__sdram.html',1,'(Global Namespace)']]], + ['sdram_2eh_56',['sdram.h',['../sdram_8h.html',1,'']]], + ['sdram_5fhandle_57',['sdram_handle',['../classdaisy_1_1_daisy_seed.html#a48b3da45f3fda4a6960cc15f427daa96',1,'daisy::DaisySeed']]], + ['sdramhandle_58',['SdramHandle',['../class_sdram_handle.html',1,'']]], + ['sector_5ferase_5fcmd_59',['SECTOR_ERASE_CMD',['../group__flash.html#gafa3f62391f3e8fbfc1fba32754e88b55',1,'SECTOR_ERASE_CMD: flash_IS25LP080D.h'],['../group__flash.html#gafa3f62391f3e8fbfc1fba32754e88b55',1,'SECTOR_ERASE_CMD: flash_IS25LP064A.h']]], + ['sector_5ferase_5fqpi_5fcmd_60',['SECTOR_ERASE_QPI_CMD',['../group__flash.html#ga49e65f982b506a78ed7d93dceb1b9650',1,'SECTOR_ERASE_QPI_CMD: flash_IS25LP080D.h'],['../group__flash.html#ga49e65f982b506a78ed7d93dceb1b9650',1,'SECTOR_ERASE_QPI_CMD: flash_IS25LP064A.h']]], + ['sector_5flock_61',['SECTOR_LOCK',['../group__flash.html#ga9f85bde4369ff218cf1ce490262cd150',1,'SECTOR_LOCK: flash_IS25LP080D.h'],['../group__flash.html#ga9f85bde4369ff218cf1ce490262cd150',1,'SECTOR_LOCK: flash_IS25LP064A.h']]], + ['sector_5funlock_62',['SECTOR_UNLOCK',['../group__flash.html#gae768b920e288afba52472293c6e79ef4',1,'SECTOR_UNLOCK: flash_IS25LP064A.h'],['../group__flash.html#gae768b920e288afba52472293c6e79ef4',1,'SECTOR_UNLOCK: flash_IS25LP080D.h']]], + ['seed_63',['seed',['../classdaisy_1_1_daisy_field.html#a3f51b16d7d9d50f8f906e04eac8cc0bf',1,'daisy::DaisyField::seed'],['../classdaisy_1_1_daisy_versio.html#ad7fb38b8d273231caa2d158db39c82da',1,'daisy::DaisyVersio::seed'],['../classdaisy_1_1_daisy_pod.html#a75907b96ea78262bf52dd7b565136f58',1,'daisy::DaisyPod::seed'],['../classdaisy_1_1_daisy_petal.html#a2ef75f14bf008985bf6635e9ce87106a',1,'daisy::DaisyPetal::seed'],['../classdaisy_1_1_daisy_patch.html#a4705ca24e5ebc4d8add7d83232162fd7',1,'daisy::DaisyPatch::seed'],['../classdaisy_1_1_daisy_legio.html#ad6d6cadb3ea1ca30e4a0020575225b09',1,'daisy::DaisyLegio::seed']]], + ['seesaw_5fadc_5fbase_64',['SEESAW_ADC_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befab2e30770660420d289650a372059467d',1,'daisy::NeoPixel::SEESAW_ADC_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa57cfd048b8d488334eca492b765f6d32',1,'daisy::NeoTrellis::SEESAW_ADC_BASE']]], + ['seesaw_5fdac_5fbase_65',['SEESAW_DAC_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befa9952803be238e90ee8737ab79b3890ed',1,'daisy::NeoPixel::SEESAW_DAC_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa8d452277f6c26ce713743bd07ce4a769',1,'daisy::NeoTrellis::SEESAW_DAC_BASE']]], + ['seesaw_5fdap_5fbase_66',['SEESAW_DAP_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befab2cb47bc2c6788ce9bab8b4925892886',1,'daisy::NeoPixel::SEESAW_DAP_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa5be8bf916993c05048c08df9b9849702',1,'daisy::NeoTrellis::SEESAW_DAP_BASE']]], + ['seesaw_5feeprom_5fbase_67',['SEESAW_EEPROM_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befafe0b10808eadded45a49dd785fb96ca2',1,'daisy::NeoPixel::SEESAW_EEPROM_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafaddc4ae01636b4d74b064c78642275e89',1,'daisy::NeoTrellis::SEESAW_EEPROM_BASE']]], + ['seesaw_5fencoder_5fbase_68',['SEESAW_ENCODER_BASE',['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa697a05e52e345821c76a2646242be93d',1,'daisy::NeoTrellis::SEESAW_ENCODER_BASE'],['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befab1f20d7fa1d95fb6835484c0c71b0605',1,'daisy::NeoPixel::SEESAW_ENCODER_BASE']]], + ['seesaw_5fgpio_5fbase_69',['SEESAW_GPIO_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befadda07af6856b228a73e22dca7da9a12c',1,'daisy::NeoPixel::SEESAW_GPIO_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa4520484b60a351b8265b64f7992d40fd',1,'daisy::NeoTrellis::SEESAW_GPIO_BASE']]], + ['seesaw_5finterrupt_5fbase_70',['SEESAW_INTERRUPT_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befa6e5bb555003d07ee5caae840294c0f94',1,'daisy::NeoPixel::SEESAW_INTERRUPT_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa06ebe6be60007345989d6564a0fe30ae',1,'daisy::NeoTrellis::SEESAW_INTERRUPT_BASE']]], + ['seesaw_5fkeypad_5fbase_71',['SEESAW_KEYPAD_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befa1b4d900fad9ba13f1e1f8323532773c2',1,'daisy::NeoPixel::SEESAW_KEYPAD_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafad6361c6969630db188ad1f94e074116f',1,'daisy::NeoTrellis::SEESAW_KEYPAD_BASE']]], + ['seesaw_5fkeypad_5fcount_72',['SEESAW_KEYPAD_COUNT',['../classdaisy_1_1_neo_trellis.html#ad233d51152b75b4cbec60411971a9db6af6f41d576533e764a7fc006bc12fa8f8',1,'daisy::NeoTrellis']]], + ['seesaw_5fkeypad_5fevent_73',['SEESAW_KEYPAD_EVENT',['../classdaisy_1_1_neo_trellis.html#ad233d51152b75b4cbec60411971a9db6a33537938f4c7182096b900b4d8d2fd89',1,'daisy::NeoTrellis']]], + ['seesaw_5fkeypad_5ffifo_74',['SEESAW_KEYPAD_FIFO',['../classdaisy_1_1_neo_trellis.html#ad233d51152b75b4cbec60411971a9db6a6297e62f156b1cfc5ff861c2be525ed6',1,'daisy::NeoTrellis']]], + ['seesaw_5fkeypad_5fintenclr_75',['SEESAW_KEYPAD_INTENCLR',['../classdaisy_1_1_neo_trellis.html#ad233d51152b75b4cbec60411971a9db6aa663d58db13dc7d24a747cd0c0cfafda',1,'daisy::NeoTrellis']]], + ['seesaw_5fkeypad_5fintenset_76',['SEESAW_KEYPAD_INTENSET',['../classdaisy_1_1_neo_trellis.html#ad233d51152b75b4cbec60411971a9db6a7132ec292e389d784d8523a013b6eda5',1,'daisy::NeoTrellis']]], + ['seesaw_5fkeypad_5fstatus_77',['SEESAW_KEYPAD_STATUS',['../classdaisy_1_1_neo_trellis.html#ad233d51152b75b4cbec60411971a9db6ace27a71eda5f3ab25d69d5c614a74cc3',1,'daisy::NeoTrellis']]], + ['seesaw_5fneopixel_5fbase_78',['SEESAW_NEOPIXEL_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befa876738339d77d2b4c617a2f692589390',1,'daisy::NeoPixel::SEESAW_NEOPIXEL_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafac4eec17c2feb6a7399cba20cbf197281',1,'daisy::NeoTrellis::SEESAW_NEOPIXEL_BASE']]], + ['seesaw_5fneopixel_5fbuf_79',['SEESAW_NEOPIXEL_BUF',['../classdaisy_1_1_neo_pixel.html#aa85935e2b18e71704d67c5cdda2df878aece795799b42de6b878d325d0b6dbd38',1,'daisy::NeoPixel']]], + ['seesaw_5fneopixel_5fbuf_5flength_80',['SEESAW_NEOPIXEL_BUF_LENGTH',['../classdaisy_1_1_neo_pixel.html#aa85935e2b18e71704d67c5cdda2df878a7db07a19f1c83e31bb0bf8ffa228e866',1,'daisy::NeoPixel']]], + ['seesaw_5fneopixel_5fpin_81',['SEESAW_NEOPIXEL_PIN',['../classdaisy_1_1_neo_pixel.html#aa85935e2b18e71704d67c5cdda2df878a204d6f3e606b954a913f12eeda5c11ff',1,'daisy::NeoPixel']]], + ['seesaw_5fneopixel_5fshow_82',['SEESAW_NEOPIXEL_SHOW',['../classdaisy_1_1_neo_pixel.html#aa85935e2b18e71704d67c5cdda2df878a0ba069e40db57794cf4a28f50c3e275f',1,'daisy::NeoPixel']]], + ['seesaw_5fneopixel_5fspeed_83',['SEESAW_NEOPIXEL_SPEED',['../classdaisy_1_1_neo_pixel.html#aa85935e2b18e71704d67c5cdda2df878ae2a34f983bf6d649b0b37bc14a47b121',1,'daisy::NeoPixel']]], + ['seesaw_5fneopixel_5fstatus_84',['SEESAW_NEOPIXEL_STATUS',['../classdaisy_1_1_neo_pixel.html#aa85935e2b18e71704d67c5cdda2df878ae7d19575693671570af757bee729703b',1,'daisy::NeoPixel']]], + ['seesaw_5fsercom0_5fbase_85',['SEESAW_SERCOM0_BASE',['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafabe6bac130ed8966cfced1734b43a555f',1,'daisy::NeoTrellis::SEESAW_SERCOM0_BASE'],['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befa653206e2988877b1c4420e955f2d646c',1,'daisy::NeoPixel::SEESAW_SERCOM0_BASE']]], + ['seesaw_5fspectrum_5fbase_86',['SEESAW_SPECTRUM_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befa28757163e598e556ad35371f0285cc0a',1,'daisy::NeoPixel::SEESAW_SPECTRUM_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa564d7b3366b9192dd7db46cbfbc80dda',1,'daisy::NeoTrellis::SEESAW_SPECTRUM_BASE']]], + ['seesaw_5fstatus_5fbase_87',['SEESAW_STATUS_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befa14ac93b5ab639a0e15411f9c743b37c4',1,'daisy::NeoPixel::SEESAW_STATUS_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa86b5f3d1587fd2afa8701e3502e8516d',1,'daisy::NeoTrellis::SEESAW_STATUS_BASE']]], + ['seesaw_5fstatus_5fhw_5fid_88',['SEESAW_STATUS_HW_ID',['../classdaisy_1_1_neo_pixel.html#ae8c5611d43b53c821488a4e5b762b7d1ae295f23040ed1755e4d99115a0dc8d65',1,'daisy::NeoPixel::SEESAW_STATUS_HW_ID'],['../classdaisy_1_1_neo_trellis.html#af147efe4392e071419f7ae71ee29b0d3ae097c9ece1cc4e638ba52b70eb82e7c7',1,'daisy::NeoTrellis::SEESAW_STATUS_HW_ID']]], + ['seesaw_5fstatus_5foptions_89',['SEESAW_STATUS_OPTIONS',['../classdaisy_1_1_neo_pixel.html#ae8c5611d43b53c821488a4e5b762b7d1a214185dbcaaabf27a6d4d57555224489',1,'daisy::NeoPixel::SEESAW_STATUS_OPTIONS'],['../classdaisy_1_1_neo_trellis.html#af147efe4392e071419f7ae71ee29b0d3afdbf82a2d9aa8a56bd54d71c4389baa7',1,'daisy::NeoTrellis::SEESAW_STATUS_OPTIONS']]], + ['seesaw_5fstatus_5fswrst_90',['SEESAW_STATUS_SWRST',['../classdaisy_1_1_neo_trellis.html#af147efe4392e071419f7ae71ee29b0d3a2b95a9e1f1392f691e4a6da2bbedc27d',1,'daisy::NeoTrellis::SEESAW_STATUS_SWRST'],['../classdaisy_1_1_neo_pixel.html#ae8c5611d43b53c821488a4e5b762b7d1a7940039e96f9941a887480ca3fbeb60f',1,'daisy::NeoPixel::SEESAW_STATUS_SWRST']]], + ['seesaw_5fstatus_5ftemp_91',['SEESAW_STATUS_TEMP',['../classdaisy_1_1_neo_pixel.html#ae8c5611d43b53c821488a4e5b762b7d1a5f277abe97124bfbdc92d46364b915ea',1,'daisy::NeoPixel::SEESAW_STATUS_TEMP'],['../classdaisy_1_1_neo_trellis.html#af147efe4392e071419f7ae71ee29b0d3a5b1367d171c3c1d3ab6456ad242a8c8c',1,'daisy::NeoTrellis::SEESAW_STATUS_TEMP']]], + ['seesaw_5fstatus_5fversion_92',['SEESAW_STATUS_VERSION',['../classdaisy_1_1_neo_pixel.html#ae8c5611d43b53c821488a4e5b762b7d1a6b1ef0df7bf8109ae4196c04e9ac8505',1,'daisy::NeoPixel::SEESAW_STATUS_VERSION'],['../classdaisy_1_1_neo_trellis.html#af147efe4392e071419f7ae71ee29b0d3aac68ba13b8afdd62b2f4aff33d7aa587',1,'daisy::NeoTrellis::SEESAW_STATUS_VERSION']]], + ['seesaw_5ftimer_5fbase_93',['SEESAW_TIMER_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befabc0edeffe2c7a0f6f5fdecd9e6c41107',1,'daisy::NeoPixel::SEESAW_TIMER_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa6f8cf83118cc2f3b111cbb0a5effef91',1,'daisy::NeoTrellis::SEESAW_TIMER_BASE']]], + ['seesaw_5ftouch_5fbase_94',['SEESAW_TOUCH_BASE',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3befa435c5590c1d7d1cfd048966bc74a1d2b',1,'daisy::NeoPixel::SEESAW_TOUCH_BASE'],['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfafa2783d7f9aa6930a91163aae955e80dea',1,'daisy::NeoTrellis::SEESAW_TOUCH_BASE']]], + ['selecteditemidx_5f_95',['selectedItemIdx_',['../classdaisy_1_1_abstract_menu.html#a452a319456f718cc729207ce803fe4a4',1,'daisy::AbstractMenu']]], + ['selectitem_96',['SelectItem',['../classdaisy_1_1_abstract_menu.html#a13f95244703267b826cf05c81ea962ff',1,'daisy::AbstractMenu']]], + ['sendcommand_97',['SendCommand',['../classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html#aadac6fcb157ef83a293f95c2e49dd2b2',1,'daisy::SSD130x4WireSoftSpiTransport::SendCommand()'],['../classdaisy_1_1_s_s_d130x4_wire_spi_transport.html#a21854c65aa4a415970c1239d86625dfb',1,'daisy::SSD130x4WireSpiTransport::SendCommand()'],['../classdaisy_1_1_s_s_d130x_i2_c_transport.html#ab342105cbc480dfc7c07c387ef449c08',1,'daisy::SSD130xI2CTransport::SendCommand(uint8_t cmd)']]], + ['senddata_98',['SendData',['../classdaisy_1_1_s_s_d130x_i2_c_transport.html#ab2c26b2726b2c2e6e1bff68e0eb5f1cb',1,'daisy::SSD130xI2CTransport::SendData()'],['../classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html#a4fad007f2e65a390bcbcbf2c0f442045',1,'daisy::SSD130x4WireSoftSpiTransport::SendData()'],['../classdaisy_1_1_s_s_d130x4_wire_spi_transport.html#a3cf6194c8dbb92b33fb83becc07903fc',1,'daisy::SSD130x4WireSpiTransport::SendData()']]], + ['sendmessage_99',['SendMessage',['../classdaisy_1_1_midi_handler.html#a5c15df4ad7996a8c3fff22a5e679cc54',1,'daisy::MidiHandler']]], + ['sensors_5fdps_5fto_5frads_100',['SENSORS_DPS_TO_RADS',['../icm20948_8h.html#a54bd9549d7c88977f8769fac7be4578d',1,'icm20948.h']]], + ['sensors_5fgravity_5fearth_101',['SENSORS_GRAVITY_EARTH',['../icm20948_8h.html#adf2baeb9499e0aae21699e2345fd51bd',1,'icm20948.h']]], + ['serial_102',['SERIAL',['../group__serial.html',1,'']]], + ['set_103',['Set',['../classdaisy_1_1_mapped_float_value.html#a69b6262bc33337dcc695941b3bc5ab21',1,'daisy::MappedFloatValue::Set()'],['../classdaisy_1_1_mapped_int_value.html#ac8b2f980706743475fe7b1a7b3e6d98b',1,'daisy::MappedIntValue::Set()'],['../class_shift_register595.html#a01d31561cd07890ea52d1f39e55a8385',1,'ShiftRegister595::Set()'],['../classdaisy_1_1_led.html#a7394c869bc8b34d94c183c2b7fb16bc7',1,'daisy::Led::Set()'],['../classdaisy_1_1_rgb_led.html#a342c072e678f5df25a8f638a91479d1f',1,'daisy::RgbLed::Set()']]], + ['setaccelrange_104',['SetAccelRange',['../classdaisy_1_1_icm20948.html#a087eb0aa5f8210268f2a11ce9d93f583',1,'daisy::Icm20948']]], + ['setaccelratedivisor_105',['SetAccelRateDivisor',['../classdaisy_1_1_icm20948.html#a842415a6f1b60caf440240fcaf8ad9f1',1,'daisy::Icm20948']]], + ['setaccessmode_106',['SetAccessMode',['../classdaisy_1_1_tlv493d.html#adffa8bbf61fb813e4e5afc5994ac7316',1,'daisy::Tlv493d']]], + ['setadcgain_107',['SetADCGain',['../classdaisy_1_1_apds9960.html#a25b3ecd642bb7918fd1af80c4269851b',1,'daisy::Apds9960']]], + ['setadcintegrationtime_108',['SetADCIntegrationTime',['../classdaisy_1_1_apds9960.html#a156ad026074df9939292be7155bd4de5',1,'daisy::Apds9960']]], + ['setallglobalbrightness_109',['SetAllGlobalBrightness',['../classdaisy_1_1_dot_star.html#ae16a421d5279084c47a68bf91e0a892d',1,'daisy::DotStar']]], + ['setallto_110',['SetAllTo',['../classdaisy_1_1_led_driver_pca9685.html#a5fd2c10af7ace44d2aefc8b81edc8444',1,'daisy::LedDriverPca9685::SetAllTo(uint8_t brightness)'],['../classdaisy_1_1_led_driver_pca9685.html#af9df21fcd2e7116ff49bd3761b4565b7',1,'daisy::LedDriverPca9685::SetAllTo(float brightness)']]], + ['setalltoraw_111',['SetAllToRaw',['../classdaisy_1_1_led_driver_pca9685.html#a257b001d8770d82457848fbc871909a5',1,'daisy::LedDriverPca9685']]], + ['setaudioblocksize_112',['SetAudioBlockSize',['../classdaisy_1_1_daisy_legio.html#a63f308e20fd34f5a46d4b3977889774e',1,'daisy::DaisyLegio::SetAudioBlockSize()'],['../classdaisy_1_1_daisy_versio.html#af7c9ee88f95151cf6a1ce7caa77e09ca',1,'daisy::DaisyVersio::SetAudioBlockSize()'],['../classdaisy_1_1_daisy_seed.html#a4209c18a3c181e8427ebc7639d4170b6',1,'daisy::DaisySeed::SetAudioBlockSize()'],['../classdaisy_1_1_daisy_pod.html#aaa42d4ffc25bb98bdc162d54fe49be0d',1,'daisy::DaisyPod::SetAudioBlockSize()'],['../classdaisy_1_1_daisy_petal.html#a2356b5fdb0f87f28920c96828b2c0c93',1,'daisy::DaisyPetal::SetAudioBlockSize()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a4209445a7e828b5f42993a7426271f5a',1,'daisy::patch_sm::DaisyPatchSM::SetAudioBlockSize()'],['../classdaisy_1_1_daisy_patch.html#a3eb9d0267312bbe4997124afc9d75b89',1,'daisy::DaisyPatch::SetAudioBlockSize()'],['../classdaisy_1_1_daisy_field.html#aa6f862d51378e4a41fb78d82bb02b57e',1,'daisy::DaisyField::SetAudioBlockSize()']]], + ['setaudiosamplerate_113',['SetAudioSampleRate',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a6eade7a9daf10812665600db8f485637',1,'daisy::patch_sm::DaisyPatchSM::SetAudioSampleRate()'],['../classdaisy_1_1_daisy_versio.html#ae0612be43ce8620e9df2cbe7fa9c018e',1,'daisy::DaisyVersio::SetAudioSampleRate()'],['../classdaisy_1_1_daisy_seed.html#a94fc5d21d3c856bf3cb404e40927ec60',1,'daisy::DaisySeed::SetAudioSampleRate()'],['../classdaisy_1_1_daisy_pod.html#a78bd9a9cbbb99bdcc5ab68199ff918e6',1,'daisy::DaisyPod::SetAudioSampleRate()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a20debb020afaf6ee3888aa3ea1891a29',1,'daisy::patch_sm::DaisyPatchSM::SetAudioSampleRate()'],['../classdaisy_1_1_daisy_patch.html#a305c609998f54b22ff469a19d87120ac',1,'daisy::DaisyPatch::SetAudioSampleRate()'],['../classdaisy_1_1_daisy_petal.html#aa1d796eeb7ac6358b6596a15c595d75f',1,'daisy::DaisyPetal::SetAudioSampleRate()'],['../classdaisy_1_1_daisy_field.html#a80ec5aea2976da341853f79f56ae05f2',1,'daisy::DaisyField::SetAudioSampleRate()'],['../classdaisy_1_1_daisy_legio.html#a6df6ea7eb34882f1f9f1512bd24e2109',1,'daisy::DaisyLegio::SetAudioSampleRate()']]], + ['setbank_114',['SetBank',['../classdaisy_1_1_icm20948.html#a1932382ae74cdb019443adabc98f4b4f',1,'daisy::Icm20948']]], + ['setblocksize_115',['SetBlockSize',['../classdaisy_1_1_audio_handle.html#a93bf9a68619280b2524d8a8894c4dff9',1,'daisy::AudioHandle']]], + ['setblue_116',['SetBlue',['../classdaisy_1_1_rgb_led.html#a388ef2c8991a9e5fd75fc0d484bf39ad',1,'daisy::RgbLed']]], + ['setbrightness_117',['SetBrightness',['../classdaisy_1_1_neo_pixel.html#a9191052295b62ef5f4c0e52585c416b0',1,'daisy::NeoPixel']]], + ['setcallback_118',['SetCallback',['../classdaisy_1_1_timer_handle.html#a6a3a083902c7b5fbfc431242d60571f4',1,'daisy::TimerHandle']]], + ['setcoeff_119',['SetCoeff',['../classdaisy_1_1_analog_control.html#a2ace581abd8f0c5e35c0013e01f37f1c',1,'daisy::AnalogControl']]], + ['setcolor_120',['SetColor',['../classdaisy_1_1_rgb_led.html#afc530391dc068788952edbe9907df8e9',1,'daisy::RgbLed']]], + ['setcolorinterrupt_121',['SetColorInterrupt',['../classdaisy_1_1_apds9960.html#a3bb1a90fd6838df8349b983bf090e9dd',1,'daisy::Apds9960']]], + ['setcursor_122',['SetCursor',['../classdaisy_1_1_one_bit_graphics_display.html#ae261bd2a57f39c379cab0465bddfa9fa',1,'daisy::OneBitGraphicsDisplay::SetCursor()'],['../classdaisy_1_1_lcd_h_d44780.html#aff797aa8b9cfe432c61c286b897b1914',1,'daisy::LcdHD44780::SetCursor()']]], + ['setcvout1_123',['SetCvOut1',['../classdaisy_1_1_daisy_field.html#a7fd7e5cfdc8c8880748b9e3e4143902f',1,'daisy::DaisyField']]], + ['setcvout2_124',['SetCvOut2',['../classdaisy_1_1_daisy_field.html#a47532828ea5e88f30782a21d4b4296e1',1,'daisy::DaisyField']]], + ['setdata_125',['SetData',['../classdaisy_1_1_voct_calibration.html#aaaf0c5e195d9fd5c1ef0a727ffdcccfc',1,'daisy::VoctCalibration']]], + ['setfootswitchled_126',['SetFootswitchLed',['../classdaisy_1_1_daisy_petal.html#a562d597f10b98d36bf1c37314a317d8c',1,'daisy::DaisyPetal']]], + ['setfrom0to1_127',['SetFrom0to1',['../classdaisy_1_1_mapped_float_value.html#a63f9ead2d537fd2a64ef7e82d1b91d1d',1,'daisy::MappedFloatValue::SetFrom0to1()'],['../classdaisy_1_1_mapped_int_value.html#abb5f3cb08aae5ed0399bfda88f8e09d9',1,'daisy::MappedIntValue::SetFrom0to1()'],['../classdaisy_1_1_mapped_value.html#a0547c449d82efa4ee8c21e716e035b53',1,'daisy::MappedValue::SetFrom0to1()'],['../classdaisy_1_1_mapped_string_list_value.html#a8e26e8f810f4a06e71324ee595a2b3b6',1,'daisy::MappedStringListValue::SetFrom0to1()']]], + ['setgesturedimensions_128',['SetGestureDimensions',['../classdaisy_1_1_apds9960.html#a52a083d0ee8ead33d27047f25a9bb770',1,'daisy::Apds9960']]], + ['setgesturefifothreshold_129',['SetGestureFIFOThreshold',['../classdaisy_1_1_apds9960.html#a124ffff67a1e7d8f6e49729c3450515f',1,'daisy::Apds9960']]], + ['setgesturegain_130',['SetGestureGain',['../classdaisy_1_1_apds9960.html#ad451a1d1472e6622fdc893e7002521a3',1,'daisy::Apds9960']]], + ['setgestureoffset_131',['SetGestureOffset',['../classdaisy_1_1_apds9960.html#acdae6871ac644aace21d226c8ff85e1c',1,'daisy::Apds9960']]], + ['setgestureproximitythreshold_132',['SetGestureProximityThreshold',['../classdaisy_1_1_apds9960.html#a7fbdc06defefb2ae19af9d781e6b771a',1,'daisy::Apds9960']]], + ['setgreen_133',['SetGreen',['../classdaisy_1_1_rgb_led.html#ad3d5b670d31b51ba43b84ae8aad7081b',1,'daisy::RgbLed']]], + ['setgyrorange_134',['SetGyroRange',['../classdaisy_1_1_icm20948.html#a4f278839c41c1c0b12e65d2c6636994c',1,'daisy::Icm20948']]], + ['setgyroratedivisor_135',['SetGyroRateDivisor',['../classdaisy_1_1_icm20948.html#ab572f660202da841e20e8bcd63663c75',1,'daisy::Icm20948']]], + ['seti2cbypass_136',['SetI2CBypass',['../classdaisy_1_1_icm20948.html#ae453a9399e14b4d45bb2a42731f86cc0',1,'daisy::Icm20948']]], + ['setindex_137',['SetIndex',['../classdaisy_1_1_mapped_string_list_value.html#ab35c22a237a149f42bb4226e79207881',1,'daisy::MappedStringListValue']]], + ['setinterrupt_138',['SetInterrupt',['../classdaisy_1_1_tlv493d.html#a10c8eb11494135a3530b185503b6ab51',1,'daisy::Tlv493d']]], + ['setintlimits_139',['SetIntLimits',['../classdaisy_1_1_apds9960.html#a3e2dfaffe42d0bc1482da0d0e0fbad92',1,'daisy::Apds9960']]], + ['setkeypadevent_140',['SetKeypadEvent',['../classdaisy_1_1_neo_trellis.html#a9f9d8b34ba47241767af0596d906968b',1,'daisy::NeoTrellis']]], + ['setled_141',['SetLed',['../classdaisy_1_1_daisy_legio.html#a4576f23c222af59f3c4b98f73a78628a',1,'daisy::DaisyLegio::SetLed()'],['../classdaisy_1_1_led_driver_pca9685.html#a0d21f17e93238bbef75ee57ab557e7e9',1,'daisy::LedDriverPca9685::SetLed(int ledIndex, uint8_t brightness)'],['../classdaisy_1_1_led_driver_pca9685.html#a7616848201aea05953403406ee89f272',1,'daisy::LedDriverPca9685::SetLed(int ledIndex, float brightness)'],['../classdaisy_1_1_daisy_versio.html#a1ebe1bea805a13bcc366de005c14a27c',1,'daisy::DaisyVersio::SetLed()'],['../classdaisy_1_1_daisy_seed.html#ac4501329b4a5a5cfb9e3cd6003fcda6f',1,'daisy::DaisySeed::SetLed()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a77aa8d762be1784b07a9b56328a7a491',1,'daisy::patch_sm::DaisyPatchSM::SetLed()']]], + ['setled_142',['SetLED',['../classdaisy_1_1_apds9960.html#ad938cafd3f89e17bbf983a6d9fd7e0b3',1,'daisy::Apds9960']]], + ['setledraw_143',['SetLedRaw',['../classdaisy_1_1_led_driver_pca9685.html#a0a7c0c80d76741fddd835e4d2b138f3a',1,'daisy::LedDriverPca9685']]], + ['setlooping_144',['SetLooping',['../classdaisy_1_1_wav_player.html#a29d340360f073bd1767e51a06876eafe',1,'daisy::WavPlayer']]], + ['setmagdatarate_145',['SetMagDataRate',['../classdaisy_1_1_icm20948.html#a46c4eda38a5e0b634afdd4993c742ca2',1,'daisy::Icm20948']]], + ['setmode_146',['setMode',['../classdaisy_1_1_dps310.html#a8227bd52a9d2ef66dc95f5648dde5204',1,'daisy::Dps310']]], + ['setonebitgraphicsdisplaytodrawto_147',['SetOneBitGraphicsDisplayToDrawTo',['../classdaisy_1_1_full_screen_item_menu.html#aff9c91b42f7163d6a2dc7014e3fc56d9',1,'daisy::FullScreenItemMenu']]], + ['setoutputcompensation_148',['SetOutputCompensation',['../classdaisy_1_1_audio_handle.html#ad35fbe0d71e89dbaccd362c02261ad8a',1,'daisy::AudioHandle']]], + ['setperiod_149',['SetPeriod',['../classdaisy_1_1_timer_handle.html#a0e11c2b05fbd0c6e1cac5d3babe79453',1,'daisy::TimerHandle']]], + ['setpin_150',['SetPin',['../classdaisy_1_1_neo_pixel.html#a7665573b58aa4f6a53bfcef6c65f8757',1,'daisy::NeoPixel']]], + ['setpixelcolor_151',['SetPixelColor',['../classdaisy_1_1_dot_star.html#af210e855104705b4f6b252b03998db66',1,'daisy::DotStar::SetPixelColor(uint16_t idx, const Color &color)'],['../classdaisy_1_1_dot_star.html#a1be57cf9c6a1a4da99874cc3437d246e',1,'daisy::DotStar::SetPixelColor(uint16_t idx, uint32_t color)'],['../classdaisy_1_1_dot_star.html#aa909ca940c58f2e8863e3be4a6c3a6d2',1,'daisy::DotStar::SetPixelColor(uint16_t idx, uint8_t r, uint8_t g, uint8_t b)'],['../classdaisy_1_1_neo_pixel.html#aba8e7b08e8f6126a34a3d0da252b7960',1,'daisy::NeoPixel::SetPixelColor(uint16_t n, uint8_t r, uint8_t g, uint8_t b)'],['../classdaisy_1_1_neo_pixel.html#a9ed0843e42a63d9650b652e93da858c2',1,'daisy::NeoPixel::SetPixelColor(uint16_t n, uint8_t r, uint8_t g, uint8_t b, uint8_t w)'],['../classdaisy_1_1_neo_pixel.html#af3f3b8d35d190ffc7cefe689ff15ae5e',1,'daisy::NeoPixel::SetPixelColor(uint16_t n, uint32_t c)']]], + ['setpixelglobalbrightness_152',['SetPixelGlobalBrightness',['../classdaisy_1_1_dot_star.html#a8ceaf459805764548b8c1008d97bdad5',1,'daisy::DotStar']]], + ['setpostgain_153',['SetPostGain',['../classdaisy_1_1_audio_handle.html#af958fe1518bf32d93cfc5278a1736789',1,'daisy::AudioHandle']]], + ['setprescaler_154',['SetPrescaler',['../classdaisy_1_1_timer_handle.html#aeab69c0b8cd73cf438bc056786cc00f6',1,'daisy::TimerHandle']]], + ['setproxgain_155',['SetProxGain',['../classdaisy_1_1_apds9960.html#aa4267e573b82f14d7950ebe1f179db0e',1,'daisy::Apds9960']]], + ['setproximityinterrupt_156',['SetProximityInterrupt',['../classdaisy_1_1_apds9960.html#a3cf8c7053b967952b70d4da945ea3fc9',1,'daisy::Apds9960']]], + ['setproxpulse_157',['SetProxPulse',['../classdaisy_1_1_apds9960.html#aa19e474f6dd88346a0b5b845ce1df78a',1,'daisy::Apds9960']]], + ['setreceivecallback_158',['SetReceiveCallback',['../class_usb_handle.html#a52c22cce6616ab3948d7933bfc0e7d0b',1,'UsbHandle::SetReceiveCallback(ReceiveCallback cb, UsbPeriph dev)'],['../class_usb_handle.html#a52c22cce6616ab3948d7933bfc0e7d0b',1,'UsbHandle::SetReceiveCallback(ReceiveCallback cb, UsbPeriph dev)']]], + ['setred_159',['SetRed',['../classdaisy_1_1_rgb_led.html#a3e2c0d791418d97742270a43a0bcdcc4',1,'daisy::RgbLed']]], + ['setregbits_160',['SetRegBits',['../classdaisy_1_1_tlv493d.html#a5fa69cf9112e5c9ecd3992365a803004',1,'daisy::Tlv493d']]], + ['setringled_161',['SetRingLed',['../classdaisy_1_1_daisy_petal.html#ad92270ffe128bc678b78be2067d4fcfe',1,'daisy::DaisyPetal']]], + ['setsamplerate_162',['SetSampleRate',['../classdaisy_1_1_analog_control.html#a4cbdf8afb5e284bd9e12bca004a10fab',1,'daisy::AnalogControl::SetSampleRate()'],['../classdaisy_1_1_audio_handle.html#a66f20f5f6f2d2b49a80a25678869a47a',1,'daisy::AudioHandle::SetSampleRate()'],['../classdaisy_1_1_led.html#a55c8e1df70930f21270f4c28df6320fb',1,'daisy::Led::SetSampleRate()']]], + ['settestpoint_163',['SetTestPoint',['../classdaisy_1_1_daisy_seed.html#a213214b79bb612175f2e82241887d42e',1,'daisy::DaisySeed']]], + ['setthresholds_164',['SetThresholds',['../classdaisy_1_1_mpr121.html#aa8abce9cdda9b9eb3811b54ecf7dcd85',1,'daisy::Mpr121']]], + ['setupdaterate_165',['SetUpdateRate',['../classdaisy_1_1_encoder.html#aa613736d374d8a751ecb3b804b11e29d',1,'daisy::Encoder::SetUpdateRate()'],['../classdaisy_1_1_switch.html#a9b690946462b81edba1feace3625bc64',1,'daisy::Switch::SetUpdateRate()']]], + ['setupmag_166',['SetupMag',['../classdaisy_1_1_icm20948.html#a79983dbc3ab1c35742a700ebed7e066f',1,'daisy::Icm20948']]], + ['setwavetableinfo_167',['SetWaveTableInfo',['../classdaisy_1_1_wave_table_loader.html#a946156ea77f74d7ee25d122a6ba42ab0',1,'daisy::WaveTableLoader']]], + ['shift_168',['shift',['../structdaisy_1_1_tlv493d_1_1_reg_mask__t.html#a2a4e889d529ac949c802f37913911c27',1,'daisy::Tlv493d::RegMask_t']]], + ['shiftregister_169',['SHIFTREGISTER',['../group__shiftregister.html',1,'']]], + ['shiftregister4021_170',['ShiftRegister4021',['../classdaisy_1_1_shift_register4021.html',1,'daisy::ShiftRegister4021< num_daisychained, num_parallel >'],['../classdaisy_1_1_shift_register4021.html#a250b5d7fad3eb6186b05764cf19429b0',1,'daisy::ShiftRegister4021::ShiftRegister4021()']]], + ['shiftregister4021_3c_202_20_3e_171',['ShiftRegister4021< 2 >',['../classdaisy_1_1_shift_register4021.html',1,'daisy']]], + ['shiftregister595_172',['ShiftRegister595',['../class_shift_register595.html#a39dcf4e9c542534e2ea9038e00863d71',1,'ShiftRegister595::ShiftRegister595()'],['../class_shift_register595.html',1,'ShiftRegister595']]], + ['show_173',['Show',['../classdaisy_1_1_neo_pixel.html#a0e05f30968513eb931b87aa03e596622',1,'daisy::NeoPixel::Show()'],['../classdaisy_1_1_dot_star.html#a0aaab3f2d3e9ba335820b9ab37e4320f',1,'daisy::DotStar::Show()']]], + ['size_174',['Size',['../classdaisy_1_1_fixed_cap_str_base.html#aa5fa64469d140217e12dbf6ac2b6dc9c',1,'daisy::FixedCapStrBase']]], + ['size_5f_175',['size_',['../classdaisy_1_1_fixed_cap_str_base.html#aff6f8a265b888819509106fcee39c4a2',1,'daisy::FixedCapStrBase']]], + ['skip_5fclocks_176',['skip_clocks',['../structdaisy_1_1_system_1_1_config.html#aaf361be5637d24e6042949679305dd11',1,'daisy::System::Config']]], + ['slave_177',['SLAVE',['../structdaisy_1_1_spi_handle_1_1_config.html#a00488576b0a4c1364cb2fd09164a30f7a79e19bc2ac33d6c81272024561992f37',1,'daisy::SpiHandle::Config::SLAVE'],['../structdaisy_1_1_sai_handle_1_1_config.html#a269af182475979f6845fb06ffa3c4055a79e19bc2ac33d6c81272024561992f37',1,'daisy::SaiHandle::Config::SLAVE']]], + ['slow_178',['SLOW',['../classdaisy_1_1_sdmmc_handler.html#a78a654b5e915c05224fb64f0dfbe6bcea0e3066cbbd284dce8b76e7c4620d6d75',1,'daisy::SdmmcHandler']]], + ['soft_179',['SOFT',['../structdaisy_1_1_spi_handle_1_1_config.html#a1832b92ab9f6dcacb9c010c4c77c844ea52e743143106c12bfd73aae547fc6e2e',1,'daisy::SpiHandle::Config']]], + ['song_180',['song',['../structdaisy_1_1_song_select_event.html#ab8348fcb912c6ba63200a15eb0386975',1,'daisy::SongSelectEvent']]], + ['songpositionpointer_181',['SongPositionPointer',['../group__midi__events.html#gga4f648ead175d62e97ceb4d3b49f692f5acafb135ab546ad52887416d9a80ac114',1,'daisy']]], + ['songpositionpointerevent_182',['SongPositionPointerEvent',['../structdaisy_1_1_song_position_pointer_event.html',1,'daisy']]], + ['songselect_183',['SongSelect',['../group__midi__events.html#gga4f648ead175d62e97ceb4d3b49f692f5a1d841bd69c010006dcd3f90059bda305',1,'daisy']]], + ['songselectevent_184',['SongSelectEvent',['../structdaisy_1_1_song_select_event.html',1,'daisy']]], + ['specialcontrolids_185',['SpecialControlIds',['../structdaisy_1_1_u_i_1_1_special_control_ids.html',1,'daisy::UI']]], + ['speed_186',['speed',['../structdaisy_1_1_sdmmc_handler_1_1_config.html#a6daf591d4a6e9f9c064f2c1f5a9a098f',1,'daisy::SdmmcHandler::Config']]], + ['speed_187',['Speed',['../classdaisy_1_1_sdmmc_handler.html#a78a654b5e915c05224fb64f0dfbe6bce',1,'daisy::SdmmcHandler']]], + ['speed_188',['speed',['../structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a33d3e4f8290feaeafaf6129817623b88',1,'daisy::Apds9960I2CTransport::Config::speed'],['../structdaisy_1_1_dps310_i2_c_transport_1_1_config.html#a83d3b69cfb0b8a9371e6498e493984d8',1,'daisy::Dps310I2CTransport::Config::speed'],['../structdaisy_1_1_icm20948_i2_c_transport_1_1_config.html#a6023229b2ec0f69bcc4386e837125b0d',1,'daisy::Icm20948I2CTransport::Config::speed'],['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html#a74c4e8b11ada7fa42c0481d7aab53df7',1,'daisy::Mpr121I2CTransport::Config::speed'],['../structdaisy_1_1_neo_pixel_i2_c_transport_1_1_config.html#a87e19b1180c6450aaab7cfc383c67d72',1,'daisy::NeoPixelI2CTransport::Config::speed'],['../structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a58eb60473ecc33d01fa04720d47bc275',1,'daisy::NeoTrellisI2CTransport::Config::speed'],['../structdaisy_1_1_tlv493d_i2_c_transport_1_1_config.html#a42bef4f93adfee472ee2d65f595dd598',1,'daisy::Tlv493dI2CTransport::Config::speed'],['../structdaisy_1_1_g_p_i_o_1_1_config.html#a1fa17cb5a2f58bf0be3272ef9511aaf3',1,'daisy::GPIO::Config::speed']]], + ['speed_189',['Speed',['../structdaisy_1_1_i2_c_handle_1_1_config.html#a744f7d6297a06e87fe2e2014f05d469e',1,'daisy::I2CHandle::Config::Speed'],['../classdaisy_1_1_g_p_i_o.html#ab46ae5f22fd6af1e941fa05252a832f3',1,'daisy::GPIO::Speed']]], + ['speed_190',['speed',['../structdaisy_1_1_i2_c_handle_1_1_config.html#a7795ab9b3b85bd2f51950b6985a31b97',1,'daisy::I2CHandle::Config']]], + ['speed_5f_191',['speed_',['../structdaisy_1_1_adc_channel_config.html#a93bf7aebe5faa56c19d2254b90e6c83b',1,'daisy::AdcChannelConfig']]], + ['speed_5f16cycles_5f5_192',['SPEED_16CYCLES_5',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09aadda413d3a201a86353098f0c15d4a25',1,'daisy::AdcChannelConfig']]], + ['speed_5f1cycles_5f5_193',['SPEED_1CYCLES_5',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09a05c893fa4164c2778e48388abf863e48',1,'daisy::AdcChannelConfig']]], + ['speed_5f2cycles_5f5_194',['SPEED_2CYCLES_5',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09a126128ad4d1f178230f050a1395ffc78',1,'daisy::AdcChannelConfig']]], + ['speed_5f32cycles_5f5_195',['SPEED_32CYCLES_5',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09a8d98c7e6accb925851bbfd8f69b063eb',1,'daisy::AdcChannelConfig']]], + ['speed_5f387cycles_5f5_196',['SPEED_387CYCLES_5',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09a5d9a4c155a760f3bbc751d0166b779da',1,'daisy::AdcChannelConfig']]], + ['speed_5f64cycles_5f5_197',['SPEED_64CYCLES_5',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09af2a987547380311cd2108b0df7a31da6',1,'daisy::AdcChannelConfig']]], + ['speed_5f810cycles_5f5_198',['SPEED_810CYCLES_5',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09ae9358907cf8e8694f1de9c2f5ce780a8',1,'daisy::AdcChannelConfig']]], + ['speed_5f8cycles_5f5_199',['SPEED_8CYCLES_5',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09a257ad66e50fc8d25b376ffa37ba6dca9',1,'daisy::AdcChannelConfig']]], + ['spi_200',['SPI',['../md_doc_2md_2__a8___getting-_started-_s_p_i.html',1,'']]], + ['spi_2eh_201',['spi.h',['../spi_8h.html',1,'']]], + ['spi_5f1_202',['SPI_1',['../structdaisy_1_1_spi_handle_1_1_config.html#a446ef992a86b93c86fa966f42375586da098d0536cc8ca73ea75f22b4c8e1def3',1,'daisy::SpiHandle::Config']]], + ['spi_5f2_203',['SPI_2',['../structdaisy_1_1_spi_handle_1_1_config.html#a446ef992a86b93c86fa966f42375586da69d77f84154e4d476a4e0ac9a848a54f',1,'daisy::SpiHandle::Config']]], + ['spi_5f3_204',['SPI_3',['../structdaisy_1_1_spi_handle_1_1_config.html#a446ef992a86b93c86fa966f42375586da3136d224851a91299f0fde0135b1adde',1,'daisy::SpiHandle::Config']]], + ['spi_5f4_205',['SPI_4',['../structdaisy_1_1_spi_handle_1_1_config.html#a446ef992a86b93c86fa966f42375586dac9a2f43a99c50118b201d70bbda310e4',1,'daisy::SpiHandle::Config']]], + ['spi_5f5_206',['SPI_5',['../structdaisy_1_1_spi_handle_1_1_config.html#a446ef992a86b93c86fa966f42375586dad542978ab136ddc731480ff46302acb9',1,'daisy::SpiHandle::Config']]], + ['spi_5f6_207',['SPI_6',['../structdaisy_1_1_spi_handle_1_1_config.html#a446ef992a86b93c86fa966f42375586dac81c898df22f87db948fdb3f9377314b',1,'daisy::SpiHandle::Config']]], + ['spi_5fconfig_208',['spi_config',['../structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a2725b473c07c6bf9e8b57a0a810799c1',1,'daisy::SSD130x4WireSpiTransport::Config']]], + ['spihandle_209',['SpiHandle',['../classdaisy_1_1_spi_handle.html',1,'daisy::SpiHandle'],['../classdaisy_1_1_spi_handle.html#ac060acec2d6c651a1d330443e4c6c9f6',1,'daisy::SpiHandle::SpiHandle()'],['../classdaisy_1_1_spi_handle.html#a389021fcd8c1ffa264c2568d5ad4f17f',1,'daisy::SpiHandle::SpiHandle(const SpiHandle &other)=default']]], + ['spimultislave_2eh_210',['spiMultislave.h',['../spi_multislave_8h.html',1,'']]], + ['sr_211',['sr',['../structdaisy_1_1_sai_handle_1_1_config.html#a05f5f92b5f15f31c8ffef09403412370',1,'daisy::SaiHandle::Config']]], + ['sr_5f4021_2eh_212',['sr_4021.h',['../sr__4021_8h.html',1,'']]], + ['sr_5f595_2eh_213',['sr_595.h',['../sr__595_8h.html',1,'']]], + ['sram_5fd1_214',['SRAM_D1',['../classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669a35f8f673757164a22c8b4480b3f2cb14',1,'daisy::System']]], + ['sram_5fd2_215',['SRAM_D2',['../classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669a41391ab0f45c27d3c9fbf78c3e704eaa',1,'daisy::System']]], + ['sram_5fd3_216',['SRAM_D3',['../classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669a748714d5582ea547bb760b0ceb3cb524',1,'daisy::System']]], + ['srt_5ftype_217',['srt_type',['../structdaisy_1_1_midi_event.html#a6981641c0057f45e3a8556a55948b9fc',1,'daisy::MidiEvent']]], + ['srtundefined0_218',['SRTUndefined0',['../group__midi__events.html#gga3069be23e98a0299bbfa8f1759754d45a2eb09ebb3ba848fe764c2a70a8bccc06',1,'daisy']]], + ['srtundefined1_219',['SRTUndefined1',['../group__midi__events.html#gga3069be23e98a0299bbfa8f1759754d45aeac3f9db3a5e741f739a858c71c242a0',1,'daisy']]], + ['ssd130x4wiresoftspi128x64driver_220',['SSD130x4WireSoftSpi128x64Driver',['../namespacedaisy.html#ae8e2e71dc645fcd1b8ce39a222c54bbb',1,'daisy']]], + ['ssd130x4wiresoftspitransport_221',['SSD130x4WireSoftSpiTransport',['../classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html',1,'daisy']]], + ['ssd130x4wirespi128x32driver_222',['SSD130x4WireSpi128x32Driver',['../namespacedaisy.html#a11d2079f8e664f71755233a82ed3403a',1,'daisy']]], + ['ssd130x4wirespi128x64driver_223',['SSD130x4WireSpi128x64Driver',['../namespacedaisy.html#aee317551f4e4af6b26f81739b7ba2f42',1,'daisy']]], + ['ssd130x4wirespi64x32driver_224',['SSD130x4WireSpi64x32Driver',['../namespacedaisy.html#af93a87691f811767ffd06cc43679041f',1,'daisy']]], + ['ssd130x4wirespi64x48driver_225',['SSD130x4WireSpi64x48Driver',['../namespacedaisy.html#a41d79b1f2587e288132f776d2fe96ae1',1,'daisy']]], + ['ssd130x4wirespi98x16driver_226',['SSD130x4WireSpi98x16Driver',['../namespacedaisy.html#a2be114c48c7ff1abd849a43db7f9c240',1,'daisy']]], + ['ssd130x4wirespitransport_227',['SSD130x4WireSpiTransport',['../classdaisy_1_1_s_s_d130x4_wire_spi_transport.html',1,'daisy']]], + ['ssd130xdriver_228',['SSD130xDriver',['../classdaisy_1_1_s_s_d130x_driver.html',1,'daisy']]], + ['ssd130xi2c128x32driver_229',['SSD130xI2c128x32Driver',['../namespacedaisy.html#ae5cc467ccb27e227a81ca126dada30fb',1,'daisy']]], + ['ssd130xi2c128x64driver_230',['SSD130xI2c128x64Driver',['../namespacedaisy.html#a4af84459e74f4102d36054751f93e570',1,'daisy']]], + ['ssd130xi2c64x32driver_231',['SSD130xI2c64x32Driver',['../namespacedaisy.html#a8aa6a733725c92ec32701dacc75092fe',1,'daisy']]], + ['ssd130xi2c64x48driver_232',['SSD130xI2c64x48Driver',['../namespacedaisy.html#a76096dc3b21d044b66782f18906fe46d',1,'daisy']]], + ['ssd130xi2c98x16driver_233',['SSD130xI2c98x16Driver',['../namespacedaisy.html#acd406732d55384b504529db2e83602b6',1,'daisy']]], + ['ssd130xi2ctransport_234',['SSD130xI2CTransport',['../classdaisy_1_1_s_s_d130x_i2_c_transport.html',1,'daisy']]], + ['stack_235',['Stack',['../classdaisy_1_1_stack.html',1,'daisy::Stack< T, capacity >'],['../classdaisy_1_1_stack.html#ac64eead92237e6ad10158920b0a99403',1,'daisy::Stack::Stack()'],['../classdaisy_1_1_stack.html#ac748320726685d136f15e2e61d692e59',1,'daisy::Stack::Stack(const Stack< T, otherCapacity > &other)'],['../classdaisy_1_1_stack.html#ad2d0dc383669108bd0fea624941fd9b7',1,'daisy::Stack::Stack(std::initializer_list< T > valuesToAdd)']]], + ['stack_2eh_236',['Stack.h',['../_stack_8h.html',1,'']]], + ['stack_3c_20daisy_3a_3auicanvasdescriptor_2c_20kmaxnumcanvases_20_3e_237',['Stack< daisy::UiCanvasDescriptor, kMaxNumCanvases >',['../classdaisy_1_1_stack.html',1,'daisy']]], + ['stack_3c_20daisy_3a_3auipage_20_2a_2c_20kmaxnumpages_20_3e_238',['Stack< daisy::UiPage *, kMaxNumPages >',['../classdaisy_1_1_stack.html',1,'daisy']]], + ['stackbase_239',['StackBase',['../classdaisy_1_1_stack_base.html',1,'daisy::StackBase< T >'],['../classdaisy_1_1_stack_base.html#afb33382096c3e4f80d410916220191e8',1,'daisy::StackBase::StackBase(T *buffer, size_t bufferSize, std::initializer_list< T > valuesToAdd)'],['../classdaisy_1_1_stack_base.html#a688438b8a70832061ee28b42274ab160',1,'daisy::StackBase::StackBase(T *buffer, size_t bufferSize)']]], + ['stackbase_3c_20daisy_3a_3auicanvasdescriptor_20_3e_240',['StackBase< daisy::UiCanvasDescriptor >',['../classdaisy_1_1_stack_base.html',1,'daisy']]], + ['stackbase_3c_20daisy_3a_3auipage_20_2a_20_3e_241',['StackBase< daisy::UiPage * >',['../classdaisy_1_1_stack_base.html',1,'daisy']]], + ['standard_242',['STANDARD',['../classdaisy_1_1_sdmmc_handler.html#a78a654b5e915c05224fb64f0dfbe6bcea94e94133f4bdc1794c6b647b8ea134d0',1,'daisy::SdmmcHandler']]], + ['start_243',['Start',['../classdaisy_1_1_timer_handle.html#a1016ea27b193aeb40f1d9d199dcbc2e1',1,'daisy::TimerHandle::Start()'],['../classdaisy_1_1_dac_handle.html#a11c804998db9c5c40bc46bacd8040358',1,'daisy::DacHandle::Start()'],['../classdaisy_1_1_m_a_x11300_driver.html#a8dcccec71d283d6f35a551874add7af0',1,'daisy::MAX11300Driver::Start()'],['../classdaisy_1_1_dac_handle.html#a5873d528617ac2b7f07562d78bde65fc',1,'daisy::DacHandle::Start()'],['../classdaisy_1_1_adc_handle.html#a6fddddc75eb2d4ba0365a68d4bac2bd3',1,'daisy::AdcHandle::Start()'],['../classdaisy_1_1_audio_handle.html#a9d2bf9d2dd2256af4d77da403873b9fc',1,'daisy::AudioHandle::Start(InterleavingAudioCallback callback)'],['../classdaisy_1_1_audio_handle.html#a068984ea4ad72f6d0be070fb8ddd346e',1,'daisy::AudioHandle::Start(AudioCallback callback)'],['../group__midi__events.html#gga3069be23e98a0299bbfa8f1759754d45a8361fbf1bffde824dc04af5e9a478e67',1,'daisy::Start']]], + ['startadc_244',['StartAdc',['../classdaisy_1_1_daisy_pod.html#ac98cbdd0e34ec2cb994ca012f05e6317',1,'daisy::DaisyPod::StartAdc()'],['../classdaisy_1_1_daisy_field.html#a3704e1fa291d6f4dada8310c9b4df1d4',1,'daisy::DaisyField::StartAdc()'],['../classdaisy_1_1_daisy_legio.html#a885cdb76f791c45f64bec82c3e36b8a7',1,'daisy::DaisyLegio::StartAdc()'],['../classdaisy_1_1_daisy_patch.html#aef89b7d3492d87652af2207f315e6c6d',1,'daisy::DaisyPatch::StartAdc()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a3364d644e5510458217d4d4e993be3c0',1,'daisy::patch_sm::DaisyPatchSM::StartAdc()'],['../classdaisy_1_1_daisy_petal.html#aa622a3f66ecb66b1980afd8ed223a60b',1,'daisy::DaisyPetal::StartAdc()'],['../classdaisy_1_1_daisy_versio.html#a2e0fb36f0915cb10ed1e04af68b99b7c',1,'daisy::DaisyVersio::StartAdc()']]], + ['startaudio_245',['StartAudio',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a0bbf4d6dab923903860ce331438b6d1f',1,'daisy::patch_sm::DaisyPatchSM::StartAudio()'],['../classdaisy_1_1_daisy_versio.html#ad0aaeb0f8ab4ba21654b188dd6f6d8c7',1,'daisy::DaisyVersio::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_versio.html#a4590bf0bd0eea4fef423379d579a6a39',1,'daisy::DaisyVersio::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_seed.html#a2c530dd1fae556b8ee6939d9092e2966',1,'daisy::DaisySeed::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_seed.html#a8ffb8115424a566cdb4461a19ffdaf2f',1,'daisy::DaisySeed::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_pod.html#a3b8c09167dc1c2992054aa789b1ccd97',1,'daisy::DaisyPod::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_pod.html#a6acbf4fc35f15464540a812062f5cf8f',1,'daisy::DaisyPod::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_petal.html#a632b41303383c649898096df26272784',1,'daisy::DaisyPetal::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_petal.html#a603af40d3fc2a5ca8bf0bb39a02ce995',1,'daisy::DaisyPetal::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#ac6209bd036a2726fe2e5c23336129ad2',1,'daisy::patch_sm::DaisyPatchSM::StartAudio()'],['../classdaisy_1_1_daisy_patch.html#ab5a3f2af944cf766d2e2108efcb8bb9c',1,'daisy::DaisyPatch::StartAudio()'],['../classdaisy_1_1_daisy_legio.html#ae9cb00ab702dddb444ec22abfbf8ac33',1,'daisy::DaisyLegio::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_legio.html#a9388a2fbad155bed43ecc5184e775a89',1,'daisy::DaisyLegio::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_field.html#a45e8e20435017c73fe31dd8ae2aedb6f',1,'daisy::DaisyField::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_field.html#aadde15ba09d4cd9cca94f5ad4726129f',1,'daisy::DaisyField::StartAudio(AudioHandle::InterleavingAudioCallback cb)']]], + ['startcallbackfunctionptr_246',['StartCallbackFunctionPtr',['../classdaisy_1_1_spi_handle.html#ac2f47ed26b7630dd193c59204a72daa1',1,'daisy::SpiHandle::StartCallbackFunctionPtr'],['../classdaisy_1_1_uart_handler.html#a67b4d9b8492cff01abcd79b57cacebec',1,'daisy::UartHandler::StartCallbackFunctionPtr']]], + ['startdac_247',['StartDac',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a76af459a006eb995a2f9489d2212f148',1,'daisy::patch_sm::DaisyPatchSM::StartDac()'],['../classdaisy_1_1_daisy_field.html#a76e10ba692e77ee5d66e3e21bb8181be',1,'daisy::DaisyField::StartDac()']]], + ['startdma_248',['StartDma',['../classdaisy_1_1_sai_handle.html#a11626ecc438f4ba0933e93ae730b57ee',1,'daisy::SaiHandle']]], + ['startlog_249',['StartLog',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a9793cd48c769ef5fef261d82085af445',1,'daisy::patch_sm::DaisyPatchSM::StartLog()'],['../classdaisy_1_1_daisy_seed.html#a1dc5e257b31624e4a7fc95a642479228',1,'daisy::DaisySeed::StartLog()'],['../classdaisy_1_1_logger.html#a71a09a4fec04899145840441af05a07b',1,'daisy::Logger::StartLog()'],['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#a641e1f67b84ada4032ce0c3646c20ed8',1,'daisy::Logger< LOGGER_NONE >::StartLog()']]], + ['startreceive_250',['StartReceive',['../classdaisy_1_1_midi_handler.html#a28d650f767ca99afaa79e39664fcb4c2',1,'daisy::MidiHandler']]], + ['startrx_251',['StartRx',['../classdaisy_1_1_midi_uart_transport.html#a03ebfa2dbe4a5a79a7ed0342bc8bf82a',1,'daisy::MidiUartTransport::StartRx()'],['../classdaisy_1_1_midi_usb_transport.html#adb4a68d5ec0eafb2b0093128d5f90529',1,'daisy::MidiUsbTransport::StartRx()']]], + ['startswith_252',['StartsWith',['../classdaisy_1_1_fixed_cap_str_base.html#ae64aa4ce6a51a36532493155262f158d',1,'daisy::FixedCapStrBase']]], + ['startswithignoringcase_253',['StartsWithIgnoringCase',['../classdaisy_1_1_fixed_cap_str_base.html#a02f42643ec5f296aff45c960878ed48b',1,'daisy::FixedCapStrBase']]], + ['stataddreg_254',['StatAddReg',['../classdaisy_1_1_neo_pixel.html#ae8c5611d43b53c821488a4e5b762b7d1',1,'daisy::NeoPixel']]], + ['state_255',['STATE',['../uniondaisy_1_1_neo_trellis_1_1key_state.html#a0e5950baf19bbe6ec35f5354a9ae02e1',1,'daisy::NeoTrellis::keyState']]], + ['state_256',['State',['../classdaisy_1_1_gate_in.html#a08f75c6621307249de3107df96cfab2d',1,'daisy::GateIn::State()'],['../classdaisy_1_1_shift_register4021.html#a6fd476472092be0ba51b6a7e1435b411',1,'daisy::ShiftRegister4021::State()'],['../classdaisy_1_1_persistent_storage.html#ad48f55bcb2a8b6959c0f4cf7822b0efa',1,'daisy::PersistentStorage::State']]], + ['status_257',['Status',['../classdaisy_1_1_q_s_p_i_handle.html#a130e764ad0cd53c10c0bc85193e8c133',1,'daisy::QSPIHandle']]], + ['statusfuncaddregs_258',['StatusFuncAddRegs',['../classdaisy_1_1_neo_trellis.html#af147efe4392e071419f7ae71ee29b0d3',1,'daisy::NeoTrellis']]], + ['step_259',['Step',['../classdaisy_1_1_mapped_string_list_value.html#a93cf610f964ea96d1893b5521dc9efa3',1,'daisy::MappedStringListValue::Step()'],['../classdaisy_1_1_mapped_float_value.html#a6d694d504dee817692e827a03ef0cba3',1,'daisy::MappedFloatValue::Step()'],['../classdaisy_1_1_mapped_int_value.html#ad226278c98dbad71c9b6ed36a9da2fb6',1,'daisy::MappedIntValue::Step()'],['../classdaisy_1_1_mapped_value.html#aada8599a26752072c8cafd3c72cfc363',1,'daisy::MappedValue::Step()']]], + ['stop_260',['Stop',['../classdaisy_1_1_audio_handle.html#ae0592d95b7f211bb4837b5a0f51ca5c7',1,'daisy::AudioHandle::Stop()'],['../group__midi__events.html#gga3069be23e98a0299bbfa8f1759754d45ae4621bb0596a2aa6412e6bed132d03ef',1,'daisy::Stop'],['../classdaisy_1_1_m_a_x11300_driver.html#aba20195f2dab641796d58a25f12667f4',1,'daisy::MAX11300Driver::Stop()'],['../classdaisy_1_1_adc_handle.html#ab6a016e484c9b7389e6302521e778bc9',1,'daisy::AdcHandle::Stop()'],['../classdaisy_1_1_dac_handle.html#ab0dcfed9ca249820670d45a75a49aaa0',1,'daisy::DacHandle::Stop()'],['../classdaisy_1_1_timer_handle.html#a371b05e9ff969c35e6daf2b8c1fa1d0e',1,'daisy::TimerHandle::Stop()']]], + ['stopadc_261',['StopAdc',['../classdaisy_1_1_daisy_field.html#a64c5254d55c822ed02f1afd6c97d78df',1,'daisy::DaisyField::StopAdc()'],['../classdaisy_1_1_daisy_legio.html#a3d7e9f9f749427f3ba59c6d60ebf1dea',1,'daisy::DaisyLegio::StopAdc()'],['../classdaisy_1_1_daisy_patch.html#a66aa03d67e904654fe1935bda7799010',1,'daisy::DaisyPatch::StopAdc()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a744fa233d5a85b9af051e5e8fdf78a5a',1,'daisy::patch_sm::DaisyPatchSM::StopAdc()'],['../classdaisy_1_1_daisy_petal.html#a6991d127bdc7dfa96d8a1ee168050746',1,'daisy::DaisyPetal::StopAdc()'],['../classdaisy_1_1_daisy_pod.html#a75a0c9b9647257856bcbad57fb9f91b4',1,'daisy::DaisyPod::StopAdc()'],['../classdaisy_1_1_daisy_versio.html#a33ff3c1fc69dfc391cdf202ee2f332cb',1,'daisy::DaisyVersio::StopAdc()']]], + ['stopaudio_262',['StopAudio',['../classdaisy_1_1_daisy_petal.html#aa5f7f3b1730d3d7cfd5e64f863463f42',1,'daisy::DaisyPetal::StopAudio()'],['../classdaisy_1_1_daisy_versio.html#a2f9891f4d072f8492c1feb794880c4ed',1,'daisy::DaisyVersio::StopAudio()'],['../classdaisy_1_1_daisy_seed.html#aed16a490a02c3ad2b3d10cb567957e4f',1,'daisy::DaisySeed::StopAudio()'],['../classdaisy_1_1_daisy_pod.html#ad1f745242c8248f186e6ae0931b3f4fa',1,'daisy::DaisyPod::StopAudio()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a505410067658f1423b392c63c96b7299',1,'daisy::patch_sm::DaisyPatchSM::StopAudio()'],['../classdaisy_1_1_daisy_legio.html#ab5870c1734bfdb750058ad301005794c',1,'daisy::DaisyLegio::StopAudio()'],['../classdaisy_1_1_daisy_patch.html#a1f955cd08ba4228cb2cedbd953bc7094',1,'daisy::DaisyPatch::StopAudio()'],['../classdaisy_1_1_daisy_field.html#a33df0d48abfa4e92b11b460aec6663c5',1,'daisy::DaisyField::StopAudio()']]], + ['stopbits_263',['StopBits',['../structdaisy_1_1_uart_handler_1_1_config.html#a308b7817c645e6af7d8115da1e5beb94',1,'daisy::UartHandler::Config']]], + ['stopbits_264',['stopbits',['../structdaisy_1_1_uart_handler_1_1_config.html#a490845e58271053432b93ec8cc56798e',1,'daisy::UartHandler::Config']]], + ['stopdac_265',['StopDac',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a8d9c7ec46f0532b5c655868b8d680163',1,'daisy::patch_sm::DaisyPatchSM']]], + ['stopdma_266',['StopDma',['../classdaisy_1_1_sai_handle.html#a99de674d71df2db2e2ee445396c1e6cf',1,'daisy::SaiHandle']]], + ['stream_267',['Stream',['../classdaisy_1_1_wav_player.html#a52be0ed680b908241ffc287f879c6c7a',1,'daisy::WavPlayer']]], + ['stringize_268',['STRINGIZE',['../group__logging__macros.html#ga9301916f6c8ae438b0cf7c6769b34128',1,'logger.h']]], + ['stringize_5fnx_269',['STRINGIZE_NX',['../group__logging__macros.html#gaf90e7cb64f23452c7c57b9b231bace78',1,'logger.h']]], + ['strlen_270',['strlen',['../classdaisy_1_1_fixed_cap_str_base.html#a36894eceea6adb51c2ec9f829ee7b39c',1,'daisy::FixedCapStrBase']]], + ['subchunk1id_271',['SubChunk1ID',['../structdaisy_1_1_w_a_v___format_type_def.html#a027b8307b27f1648d55fbcc9be8fa02f',1,'daisy::WAV_FormatTypeDef']]], + ['subchunk1size_272',['SubChunk1Size',['../structdaisy_1_1_w_a_v___format_type_def.html#a3f00bebc16e12c569d7a30d4d0da5abc',1,'daisy::WAV_FormatTypeDef']]], + ['subchunk2id_273',['SubChunk2ID',['../structdaisy_1_1_w_a_v___format_type_def.html#ae31021692b18b35a7f33e9e5e8d0a3f1',1,'daisy::WAV_FormatTypeDef']]], + ['subchunk2size_274',['SubCHunk2Size',['../structdaisy_1_1_w_a_v___format_type_def.html#a93968350c8f1abcd287e79ded8b6a81d',1,'daisy::WAV_FormatTypeDef']]], + ['sw_275',['sw',['../classdaisy_1_1_daisy_legio.html#a5e379882fca42288ccc90e4c3f98cf43',1,'daisy::DaisyLegio::sw'],['../classdaisy_1_1_daisy_field.html#ac57dd57a3cbf308ae2215ba8f4134e8f',1,'daisy::DaisyField::sw'],['../classdaisy_1_1_daisy_versio.html#aa40cf7681aed764ecf3529b3573f0a25',1,'daisy::DaisyVersio::sw']]], + ['sw_276',['Sw',['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911',1,'daisy::DaisyPetal::Sw'],['../classdaisy_1_1_daisy_pod.html#a148bfabd288f0b4d20a26b1d0e3bdeeb',1,'daisy::DaisyPod::Sw']]], + ['sw_5f0_277',['SW_0',['../classdaisy_1_1_daisy_versio.html#a6f2416114c97e313ade19a8142c396b7a25db83ab54213d7db432a505cdc269d6',1,'daisy::DaisyVersio']]], + ['sw_5f1_278',['SW_1',['../classdaisy_1_1_daisy_field.html#a418e1e43655501188c4e740e90e98beca741b822407920a640d754e56dc9c5cf2',1,'daisy::DaisyField::SW_1'],['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911ab2afe0429e8b94db1fad8f879aa4b2ff',1,'daisy::DaisyPetal::SW_1'],['../classdaisy_1_1_daisy_versio.html#a6f2416114c97e313ade19a8142c396b7aa290d40f4d9adcf845b94cdb25b981d1',1,'daisy::DaisyVersio::SW_1']]], + ['sw_5f2_279',['SW_2',['../classdaisy_1_1_daisy_field.html#a418e1e43655501188c4e740e90e98becaead8e960d21a99c44694ae3f7ddedf7b',1,'daisy::DaisyField::SW_2'],['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911a684e6a6ab7d709f8b827c97b2639f2ab',1,'daisy::DaisyPetal::SW_2']]], + ['sw_5f3_280',['SW_3',['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911aa2bd052d217894508a36856ea5843d3e',1,'daisy::DaisyPetal']]], + ['sw_5f4_281',['SW_4',['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911acda6031d654ad6b6d6f094419e97968c',1,'daisy::DaisyPetal']]], + ['sw_5f5_282',['SW_5',['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911a9a13b8958600f5421b29017057614f64',1,'daisy::DaisyPetal']]], + ['sw_5f6_283',['SW_6',['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911ad45878f759196455d7fa6ee41ed93dc6',1,'daisy::DaisyPetal']]], + ['sw_5f7_284',['SW_7',['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911ae2a1269dd381d8c8aa9de3aae9e400f4',1,'daisy::DaisyPetal']]], + ['sw_5flast_285',['SW_LAST',['../classdaisy_1_1_daisy_petal.html#a2651bb58e6ae33c0bd4bc770df3c7911af4668f61ed58c3103b2800d3cf45ca7c',1,'daisy::DaisyPetal::SW_LAST'],['../classdaisy_1_1_daisy_versio.html#a6f2416114c97e313ade19a8142c396b7a9b6a42bbf8432dcdc700dc268da61404',1,'daisy::DaisyVersio::SW_LAST'],['../classdaisy_1_1_daisy_legio.html#ac42890eb3f8ca1742947606d5f1475d3a94596e358daaae5b9b5ce3340cc84c38',1,'daisy::DaisyLegio::SW_LAST'],['../classdaisy_1_1_daisy_field.html#a418e1e43655501188c4e740e90e98beca865113e9e584259b98c17d98e2bb88ad',1,'daisy::DaisyField::SW_LAST']]], + ['sw_5fleft_286',['SW_LEFT',['../classdaisy_1_1_daisy_legio.html#ac42890eb3f8ca1742947606d5f1475d3a34d38b6857c1ff012a9614089327ffc8',1,'daisy::DaisyLegio']]], + ['sw_5fright_287',['SW_RIGHT',['../classdaisy_1_1_daisy_legio.html#ac42890eb3f8ca1742947606d5f1475d3a861ee3a902acbc55130f66ef827f6955',1,'daisy::DaisyLegio']]], + ['swallow_288',['Swallow',['../classdaisy_1_1_ring_buffer.html#ac7bdb6693448c488bda8e6d830f9bfcb',1,'daisy::RingBuffer']]], + ['swap_289',['Swap',['../namespacedaisy.html#af68a2e700b33a01728ddc00075c3ea1c',1,'daisy::Swap()'],['../classdaisy_1_1_fixed_cap_str_base.html#ad28ed8bb868191ba79bc9ed25e278cda',1,'daisy::FixedCapStrBase::Swap(FixedCapStrBase &rhs) noexcept']]], + ['swap_5f_290',['Swap_',['../classdaisy_1_1_fixed_cap_str_base.html#aaf2ab8cea03625c4e3b65526d09c0500',1,'daisy::FixedCapStrBase']]], + ['swapbuffersandtransmit_291',['SwapBuffersAndTransmit',['../classdaisy_1_1_led_driver_pca9685.html#aaa538bb3ae180234011761962d2119cf',1,'daisy::LedDriverPca9685']]], + ['switch_292',['Switch',['../classdaisy_1_1_switch.html',1,'daisy::Switch'],['../classdaisy_1_1_switch.html#ad14a8ae20033d940d6c9eeb03c1385b8',1,'daisy::Switch::Switch()']]], + ['switch_2eh_293',['switch.h',['../switch_8h.html',1,'']]], + ['switch3_294',['Switch3',['../classdaisy_1_1_switch3.html',1,'daisy::Switch3'],['../classdaisy_1_1_switch3.html#a913db214526f97cc7ae0121c85aedcb2',1,'daisy::Switch3::Switch3()']]], + ['switch3_2eh_295',['switch3.h',['../switch3_8h.html',1,'']]], + ['switches_296',['switches',['../classdaisy_1_1_daisy_petal.html#a4c23c5086d0620b98c2d4a86fde53af2',1,'daisy::DaisyPetal']]], + ['switchpressed_297',['SwitchPressed',['../classdaisy_1_1_daisy_versio.html#a2c1972b50f762a75aec4bcc5baa99bb7',1,'daisy::DaisyVersio']]], + ['swreset_298',['SWReset',['../classdaisy_1_1_neo_pixel.html#ac8afed18a175b01a127f049856889bd8',1,'daisy::NeoPixel::SWReset()'],['../classdaisy_1_1_neo_trellis.html#ae052cf27a7ad81a8c63f6cc70080ac66',1,'daisy::NeoTrellis::SWReset()']]], + ['sync_299',['Sync',['../structdaisy_1_1_sai_handle_1_1_config.html#a269af182475979f6845fb06ffa3c4055',1,'daisy::SaiHandle::Config']]], + ['sysclkfreq_300',['SysClkFreq',['../structdaisy_1_1_system_1_1_config.html#a100d6b1e0b41cf2bf17ecffe28fabfa7',1,'daisy::System::Config']]], + ['sysex_5fbuffer_5flen_301',['SYSEX_BUFFER_LEN',['../_midi_event_8h.html#a02f1ba6b22046642cb6f52e3fab60241',1,'MidiEvent.h']]], + ['sysex_5fdata_302',['sysex_data',['../structdaisy_1_1_midi_event.html#a7a51f09a3214731e5c02b6bf72985ac9',1,'daisy::MidiEvent']]], + ['sysex_5fmessage_5flen_303',['sysex_message_len',['../structdaisy_1_1_midi_event.html#a63fe8f48ba2e932b407a8fb4d74f8cc1',1,'daisy::MidiEvent']]], + ['sysexend_304',['SysExEnd',['../group__midi__events.html#gga4f648ead175d62e97ceb4d3b49f692f5a552884ae561eb056d1ffc75827b43057',1,'daisy']]], + ['system_305',['System',['../classdaisy_1_1_system.html',1,'daisy']]], + ['system_306',['system',['../classdaisy_1_1_daisy_seed.html#aa47f39a45d5cda87a428853a92c42f18',1,'daisy::DaisySeed::system'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#aee9989e96b489f7726676140ac0b9c26',1,'daisy::patch_sm::DaisyPatchSM::system']]], + ['system_307',['SYSTEM',['../group__system.html',1,'']]], + ['system_308',['System',['../classdaisy_1_1_system.html#a1662ffb07d4098995be06bea9b502b24',1,'daisy::System']]], + ['system_2eh_309',['system.h',['../system_8h.html',1,'']]], + ['systemcommon_310',['SystemCommon',['../group__midi__events.html#ggaaf09bb687034c8776ca0c68ed3ed4179a211055e6e972c4c9adb11f128aeee32e',1,'daisy']]], + ['systemcommonlast_311',['SystemCommonLast',['../group__midi__events.html#gga4f648ead175d62e97ceb4d3b49f692f5ab6aba2a25dae0b056e5e88f5dcd106bc',1,'daisy']]], + ['systemcommontype_312',['SystemCommonType',['../group__midi__events.html#ga4f648ead175d62e97ceb4d3b49f692f5',1,'daisy']]], + ['systemexclusive_313',['SystemExclusive',['../group__midi__events.html#gga4f648ead175d62e97ceb4d3b49f692f5a22d3dbb96afe5ec810fc6de987200a9c',1,'daisy']]], + ['systemexclusiveevent_314',['SystemExclusiveEvent',['../structdaisy_1_1_system_exclusive_event.html',1,'daisy']]], + ['systemrealtime_315',['SystemRealTime',['../group__midi__events.html#ggaaf09bb687034c8776ca0c68ed3ed4179a5b11a7cc1fb889b396a43a2bf7ca77a9',1,'daisy']]], + ['systemrealtimelast_316',['SystemRealTimeLast',['../group__midi__events.html#gga3069be23e98a0299bbfa8f1759754d45ad64c430420659a465fefd49438ecd1fa',1,'daisy']]], + ['systemrealtimetype_317',['SystemRealTimeType',['../group__midi__events.html#ga3069be23e98a0299bbfa8f1759754d45',1,'daisy']]] ]; diff --git a/search/all_14.js b/search/all_14.js index 22d189a7e..670e0f9f0 100644 --- a/search/all_14.js +++ b/search/all_14.js @@ -60,17 +60,17 @@ var searchData= ['two_5flines_5frx_5fonly_57',['TWO_LINES_RX_ONLY',['../structdaisy_1_1_spi_handle_1_1_config.html#a1f417015e7ac05b0a67c1a2d9d9079fca95d742687b11f7d0c9a9b7586735ca0e',1,'daisy::SpiHandle::Config']]], ['two_5flines_5ftx_5fonly_58',['TWO_LINES_TX_ONLY',['../structdaisy_1_1_spi_handle_1_1_config.html#a1f417015e7ac05b0a67c1a2d9d9079fca7b5b54d3f47d316acb22db2624f83359',1,'daisy::SpiHandle::Config']]], ['twoscomplement_59',['twosComplement',['../classdaisy_1_1_dps310.html#a00407c25d583da61d095461792ecd718',1,'daisy::Dps310']]], - ['tx_60',['tx',['../structdaisy_1_1_midi_uart_transport_1_1_config.html#a1637525e57e5aa3773d32d3f619f71f0',1,'daisy::MidiUartTransport::Config']]], + ['tx_60',['Tx',['../classdaisy_1_1_midi_uart_transport.html#a45d636631d6d47eb38b4919ab5d2089b',1,'daisy::MidiUartTransport']]], ['tx_61',['TX',['../classdaisy_1_1_spi_handle.html#aa7c484882faf187c7c4153db7cf5e4daa869036c9d97cf6593c6f1c2ccfd99a49',1,'daisy::SpiHandle::TX'],['../structdaisy_1_1_uart_handler_1_1_config.html#ae0a7cc8284cbbe42f1d95797b5862084a869036c9d97cf6593c6f1c2ccfd99a49',1,'daisy::UartHandler::Config::TX'],['../classdaisy_1_1_uart_handler.html#adbdfbf1dfaab99cf76ac7ca36d22cf00a869036c9d97cf6593c6f1c2ccfd99a49',1,'daisy::UartHandler::TX']]], - ['tx_62',['tx',['../structdaisy_1_1_uart_handler_1_1_config.html#aede71d4e3449591e661b0decfeecd993',1,'daisy::UartHandler::Config']]], - ['tx_63',['Tx',['../classdaisy_1_1_midi_uart_transport.html#a45d636631d6d47eb38b4919ab5d2089b',1,'daisy::MidiUartTransport::Tx()'],['../classdaisy_1_1_midi_usb_transport.html#a997a09de379d7d9275bbb06b255ef711',1,'daisy::MidiUsbTransport::Tx()']]], + ['tx_62',['Tx',['../classdaisy_1_1_midi_usb_transport.html#a997a09de379d7d9275bbb06b255ef711',1,'daisy::MidiUsbTransport']]], + ['tx_63',['tx',['../structdaisy_1_1_midi_uart_transport_1_1_config.html#a1637525e57e5aa3773d32d3f619f71f0',1,'daisy::MidiUartTransport::Config::tx'],['../structdaisy_1_1_uart_handler_1_1_config.html#aede71d4e3449591e661b0decfeecd993',1,'daisy::UartHandler::Config::tx']]], ['tx_5fbuff_5f_64',['tx_buff_',['../group__logger__statics.html#gab254d9ed55afc936ae351128a3209484',1,'daisy::Logger']]], ['tx_5fbuffer_65',['tx_buffer',['../structdaisy_1_1_m_a_x11300_types_1_1_dma_buffer.html#ab59d03f73464aee18ca8914ab8c91a13',1,'daisy::MAX11300Types::DmaBuffer']]], ['tx_5fptr_5f_66',['tx_ptr_',['../group__logger__statics.html#ga00faf12f737b89347c2a9f7af123b25f',1,'daisy::Logger']]], ['tx_5fretry_5fcount_67',['tx_retry_count',['../structdaisy_1_1_midi_usb_transport_1_1_config.html#a4f3333af23786bc6f4f9040722b2c5e9',1,'daisy::MidiUsbTransport::Config']]], ['tx_5frx_68',['TX_RX',['../structdaisy_1_1_uart_handler_1_1_config.html#ae0a7cc8284cbbe42f1d95797b5862084a7eea69f379870f22a6d6f43d716f14ac',1,'daisy::UartHandler::Config']]], - ['type_69',['Type',['../classdaisy_1_1_switch.html#a944058682bae079439ddddd42302b483',1,'daisy::Switch']]], - ['type_70',['type',['../structdaisy_1_1_abstract_menu_1_1_item_config.html#a0b79dcaa186542997e04669b92d821ae',1,'daisy::AbstractMenu::ItemConfig::type'],['../structdaisy_1_1_midi_event.html#aeb9a8c018a3f54c7cafd11b6f8e63e91',1,'daisy::MidiEvent::type'],['../classdaisy_1_1_neo_pixel.html#af3637a3c0b830f68755315d558c5f202',1,'daisy::NeoPixel::type'],['../structdaisy_1_1_neo_pixel_1_1_config.html#a9b25cee8aa170fe8f65bded88a55c815',1,'daisy::NeoPixel::Config::type']]], + ['type_69',['type',['../structdaisy_1_1_abstract_menu_1_1_item_config.html#a0b79dcaa186542997e04669b92d821ae',1,'daisy::AbstractMenu::ItemConfig::type'],['../structdaisy_1_1_midi_event.html#aeb9a8c018a3f54c7cafd11b6f8e63e91',1,'daisy::MidiEvent::type'],['../classdaisy_1_1_neo_pixel.html#af3637a3c0b830f68755315d558c5f202',1,'daisy::NeoPixel::type'],['../structdaisy_1_1_neo_pixel_1_1_config.html#a9b25cee8aa170fe8f65bded88a55c815',1,'daisy::NeoPixel::Config::type']]], + ['type_70',['Type',['../classdaisy_1_1_switch.html#a944058682bae079439ddddd42302b483',1,'daisy::Switch']]], ['type_5fmomentary_71',['TYPE_MOMENTARY',['../classdaisy_1_1_switch.html#a944058682bae079439ddddd42302b483aaddc897d9c79b39b2024829bebb336a1',1,'daisy::Switch']]], ['type_5ftoggle_72',['TYPE_TOGGLE',['../classdaisy_1_1_switch.html#a944058682bae079439ddddd42302b483a5c6a5cc5d4fbe03be97b81244e669038',1,'daisy::Switch']]] ]; diff --git a/search/all_17.js b/search/all_17.js index c66e57b01..42be8407f 100644 --- a/search/all_17.js +++ b/search/all_17.js @@ -28,8 +28,8 @@ var searchData= ['wavwriter_25',['WavWriter',['../classdaisy_1_1_wav_writer.html',1,'daisy::WavWriter< transfer_size >'],['../classdaisy_1_1_wav_writer.html#a4b16eb1005bb7b083f8fcaf7e8a26c48',1,'daisy::WavWriter::WavWriter()']]], ['wavwriter_2eh_26',['WavWriter.h',['../_wav_writer_8h.html',1,'']]], ['white_27',['WHITE',['../classdaisy_1_1_color.html#af93d31d5fc63705c228bf9da407c9a40a83ee753e5244371af742fc0f6a831826',1,'daisy::Color']]], - ['width_28',['Width',['../classdaisy_1_1_oled_display.html#a3be293e91c143677a8ab6c65d7b62363',1,'daisy::OledDisplay::Width()'],['../classdaisy_1_1_one_bit_graphics_display.html#a6a8d21de6d8a49b80681cf84476b39b9',1,'daisy::OneBitGraphicsDisplay::Width()'],['../classdaisy_1_1_s_s_d130x_driver.html#a295ff91cde15653954ad4b329766f93e',1,'daisy::SSD130xDriver::Width()']]], - ['width_29',['width',['../structdaisy_1_1_sdmmc_handler_1_1_config.html#af84b5499b41d1072c7b2c1b7644d82d5',1,'daisy::SdmmcHandler::Config']]], + ['width_28',['width',['../structdaisy_1_1_sdmmc_handler_1_1_config.html#af84b5499b41d1072c7b2c1b7644d82d5',1,'daisy::SdmmcHandler::Config']]], + ['width_29',['Width',['../classdaisy_1_1_oled_display.html#a3be293e91c143677a8ab6c65d7b62363',1,'daisy::OledDisplay::Width()'],['../classdaisy_1_1_one_bit_graphics_display.html#a6a8d21de6d8a49b80681cf84476b39b9',1,'daisy::OneBitGraphicsDisplay::Width()'],['../classdaisy_1_1_s_s_d130x_driver.html#a295ff91cde15653954ad4b329766f93e',1,'daisy::SSD130xDriver::Width()']]], ['withbottom_30',['WithBottom',['../classdaisy_1_1_rectangle.html#ac9867ca9a299dba683fc8eb18d4a8576',1,'daisy::Rectangle']]], ['withcenter_31',['WithCenter',['../classdaisy_1_1_rectangle.html#a6da0bb5fe424d3cde96ac9825117e89b',1,'daisy::Rectangle']]], ['withcenterx_32',['WithCenterX',['../classdaisy_1_1_rectangle.html#a14b990a12ac47e83d933253009b0f61c',1,'daisy::Rectangle']]], diff --git a/search/all_1b.js b/search/all_1b.js index 5b182f4b4..e352766b6 100644 --- a/search/all_1b.js +++ b/search/all_1b.js @@ -35,39 +35,40 @@ var searchData= ['_7emappedvalue_32',['~MappedValue',['../classdaisy_1_1_mapped_value.html#adef06a6f880bab0ed50b29029c3bc1f8',1,'daisy::MappedValue']]], ['_7emax11300driver_33',['~MAX11300Driver',['../classdaisy_1_1_m_a_x11300_driver.html#ad96dbcf4028a2aed29de10bf117a7d06',1,'daisy::MAX11300Driver']]], ['_7emidihandler_34',['~MidiHandler',['../classdaisy_1_1_midi_handler.html#afd52da947947fdce95e725209aae5831',1,'daisy::MidiHandler']]], - ['_7emidiuarttransport_35',['~MidiUartTransport',['../classdaisy_1_1_midi_uart_transport.html#a4934d3331c639115b6bd64ceffa5a888',1,'daisy::MidiUartTransport']]], - ['_7emidiusbtransport_36',['~MidiUsbTransport',['../classdaisy_1_1_midi_usb_transport.html#a6feaa01b40329b31042c2d681bd31956',1,'daisy::MidiUsbTransport']]], - ['_7empr121_37',['~Mpr121',['../classdaisy_1_1_mpr121.html#a59148bf6436c900157138b850d161ef3',1,'daisy::Mpr121']]], - ['_7empr121i2ctransport_38',['~Mpr121I2CTransport',['../classdaisy_1_1_mpr121_i2_c_transport.html#ae9488da639f811e781e6180cc188b426',1,'daisy::Mpr121I2CTransport']]], - ['_7eneopixel_39',['~NeoPixel',['../classdaisy_1_1_neo_pixel.html#a19c887f017f21b1cdf700d156e93b85d',1,'daisy::NeoPixel']]], - ['_7eneopixeli2ctransport_40',['~NeoPixelI2CTransport',['../classdaisy_1_1_neo_pixel_i2_c_transport.html#aaccf8d062eecbba52cca528cfdd3d22d',1,'daisy::NeoPixelI2CTransport']]], - ['_7eneotrellis_41',['~NeoTrellis',['../classdaisy_1_1_neo_trellis.html#a3b18ee0070030255af6d75616c9a32dd',1,'daisy::NeoTrellis']]], - ['_7eneotrellisi2ctransport_42',['~NeoTrellisI2CTransport',['../classdaisy_1_1_neo_trellis_i2_c_transport.html#a3dc86fbcc81dbdb01289c46bbea12360',1,'daisy::NeoTrellisI2CTransport']]], - ['_7eoleddisplay_43',['~OledDisplay',['../classdaisy_1_1_oled_display.html#aa2242c725c0453ddc879452da41f5d55',1,'daisy::OledDisplay']]], - ['_7eonebitgraphicsdisplay_44',['~OneBitGraphicsDisplay',['../classdaisy_1_1_one_bit_graphics_display.html#ad084bd298378d612956001569aeb9227',1,'daisy::OneBitGraphicsDisplay']]], - ['_7eonebitgraphicsdisplayimpl_45',['~OneBitGraphicsDisplayImpl',['../classdaisy_1_1_one_bit_graphics_display_impl.html#a8c78afdc0f05b1b3400bb87ac1b75801',1,'daisy::OneBitGraphicsDisplayImpl']]], - ['_7eparameter_46',['~Parameter',['../classdaisy_1_1_parameter.html#ad29a1b19206bc6568d085ddb4eaa14d9',1,'daisy::Parameter']]], - ['_7epcm3060_47',['~Pcm3060',['../classdaisy_1_1_pcm3060.html#a0be001ee48d6fe05618b7708c2752ad9',1,'daisy::Pcm3060']]], - ['_7erandom_48',['~Random',['../classdaisy_1_1_random.html#af35ade8b5886cdf4b84f7e37e8989917',1,'daisy::Random']]], - ['_7ergbled_49',['~RgbLed',['../classdaisy_1_1_rgb_led.html#a3bfb8dea14712689cc9343b7efea8902',1,'daisy::RgbLed']]], - ['_7escopedirqblocker_50',['~ScopedIrqBlocker',['../classdaisy_1_1_scoped_irq_blocker.html#a13ed84e1ed7e0abc1c7d8ddd2ac97009',1,'daisy::ScopedIrqBlocker']]], - ['_7esdmmchandler_51',['~SdmmcHandler',['../classdaisy_1_1_sdmmc_handler.html#a0e9d9d3b2fdaaa7a26a543383867bfb8',1,'daisy::SdmmcHandler']]], - ['_7eshiftregister4021_52',['~ShiftRegister4021',['../classdaisy_1_1_shift_register4021.html#a52c77889ae6115bb67a37110cfda30cc',1,'daisy::ShiftRegister4021']]], - ['_7eshiftregister595_53',['~ShiftRegister595',['../class_shift_register595.html#af8bd4833320c0674521dd23d5be874cb',1,'ShiftRegister595']]], - ['_7estackbase_54',['~StackBase',['../classdaisy_1_1_stack_base.html#a0b7176df71ffc6a47e298c73f5236ebf',1,'daisy::StackBase']]], - ['_7eswitch_55',['~Switch',['../classdaisy_1_1_switch.html#a7dd3724c490ea56be8995f2713d4dbc0',1,'daisy::Switch']]], - ['_7eswitch3_56',['~Switch3',['../classdaisy_1_1_switch3.html#afa972e7c993a8dd72f59e61aa6b4b83f',1,'daisy::Switch3']]], - ['_7esystem_57',['~System',['../classdaisy_1_1_system.html#a87b28a10a8104313e2f69560e6811b39',1,'daisy::System']]], - ['_7etimerhandle_58',['~TimerHandle',['../classdaisy_1_1_timer_handle.html#a6e866706cca6b8fd05ece9c744c76873',1,'daisy::TimerHandle']]], - ['_7etlv493d_59',['~Tlv493d',['../classdaisy_1_1_tlv493d.html#aca120bae83e55c83cf20d5f6da48e18b',1,'daisy::Tlv493d']]], - ['_7etlv493di2ctransport_60',['~Tlv493dI2CTransport',['../classdaisy_1_1_tlv493d_i2_c_transport.html#a05168e21580b908652932e953bf15013',1,'daisy::Tlv493dI2CTransport']]], - ['_7eui_61',['~UI',['../classdaisy_1_1_u_i.html#aba414ddadfb6b90b96af10ceffe0b925',1,'daisy::UI']]], - ['_7euieventqueue_62',['~UiEventQueue',['../classdaisy_1_1_ui_event_queue.html#a99c34d386afa2f3b56def5612b98b638',1,'daisy::UiEventQueue']]], - ['_7euipage_63',['~UiPage',['../classdaisy_1_1_ui_page.html#a93029d815bbc871377d25c071a1a11c6',1,'daisy::UiPage']]], - ['_7eusbhandle_64',['~UsbHandle',['../class_usb_handle.html#a6ad15406df47137dddf3edcb6c10c9c1',1,'UsbHandle::~UsbHandle()'],['../class_usb_handle.html#a6ad15406df47137dddf3edcb6c10c9c1',1,'UsbHandle::~UsbHandle()']]], - ['_7evoctcalibration_65',['~VoctCalibration',['../classdaisy_1_1_voct_calibration.html#a900865bfcc294d80a9ea687e79a149e1',1,'daisy::VoctCalibration']]], - ['_7ewavetableloader_66',['~WaveTableLoader',['../classdaisy_1_1_wave_table_loader.html#a5b9d90a405d8b80ce7d186de03e8e768',1,'daisy::WaveTableLoader']]], - ['_7ewavplayer_67',['~WavPlayer',['../classdaisy_1_1_wav_player.html#a5aad333a53f985af43a856b252289b8a',1,'daisy::WavPlayer']]], - ['_7ewavwriter_68',['~WavWriter',['../classdaisy_1_1_wav_writer.html#ab589ae805cb5d3c59c982687894fbdea',1,'daisy::WavWriter']]], - ['_7ewm8731_69',['~Wm8731',['../classdaisy_1_1_wm8731.html#ab71d3f1b08fd45a9d940a2d1a3a4c388',1,'daisy::Wm8731']]] + ['_7emidiparser_35',['~MidiParser',['../classdaisy_1_1_midi_parser.html#a97e189d4b01195b78d6f687e91d4cffd',1,'daisy::MidiParser']]], + ['_7emidiuarttransport_36',['~MidiUartTransport',['../classdaisy_1_1_midi_uart_transport.html#a4934d3331c639115b6bd64ceffa5a888',1,'daisy::MidiUartTransport']]], + ['_7emidiusbtransport_37',['~MidiUsbTransport',['../classdaisy_1_1_midi_usb_transport.html#a6feaa01b40329b31042c2d681bd31956',1,'daisy::MidiUsbTransport']]], + ['_7empr121_38',['~Mpr121',['../classdaisy_1_1_mpr121.html#a59148bf6436c900157138b850d161ef3',1,'daisy::Mpr121']]], + ['_7empr121i2ctransport_39',['~Mpr121I2CTransport',['../classdaisy_1_1_mpr121_i2_c_transport.html#ae9488da639f811e781e6180cc188b426',1,'daisy::Mpr121I2CTransport']]], + ['_7eneopixel_40',['~NeoPixel',['../classdaisy_1_1_neo_pixel.html#a19c887f017f21b1cdf700d156e93b85d',1,'daisy::NeoPixel']]], + ['_7eneopixeli2ctransport_41',['~NeoPixelI2CTransport',['../classdaisy_1_1_neo_pixel_i2_c_transport.html#aaccf8d062eecbba52cca528cfdd3d22d',1,'daisy::NeoPixelI2CTransport']]], + ['_7eneotrellis_42',['~NeoTrellis',['../classdaisy_1_1_neo_trellis.html#a3b18ee0070030255af6d75616c9a32dd',1,'daisy::NeoTrellis']]], + ['_7eneotrellisi2ctransport_43',['~NeoTrellisI2CTransport',['../classdaisy_1_1_neo_trellis_i2_c_transport.html#a3dc86fbcc81dbdb01289c46bbea12360',1,'daisy::NeoTrellisI2CTransport']]], + ['_7eoleddisplay_44',['~OledDisplay',['../classdaisy_1_1_oled_display.html#aa2242c725c0453ddc879452da41f5d55',1,'daisy::OledDisplay']]], + ['_7eonebitgraphicsdisplay_45',['~OneBitGraphicsDisplay',['../classdaisy_1_1_one_bit_graphics_display.html#ad084bd298378d612956001569aeb9227',1,'daisy::OneBitGraphicsDisplay']]], + ['_7eonebitgraphicsdisplayimpl_46',['~OneBitGraphicsDisplayImpl',['../classdaisy_1_1_one_bit_graphics_display_impl.html#a8c78afdc0f05b1b3400bb87ac1b75801',1,'daisy::OneBitGraphicsDisplayImpl']]], + ['_7eparameter_47',['~Parameter',['../classdaisy_1_1_parameter.html#ad29a1b19206bc6568d085ddb4eaa14d9',1,'daisy::Parameter']]], + ['_7epcm3060_48',['~Pcm3060',['../classdaisy_1_1_pcm3060.html#a0be001ee48d6fe05618b7708c2752ad9',1,'daisy::Pcm3060']]], + ['_7erandom_49',['~Random',['../classdaisy_1_1_random.html#af35ade8b5886cdf4b84f7e37e8989917',1,'daisy::Random']]], + ['_7ergbled_50',['~RgbLed',['../classdaisy_1_1_rgb_led.html#a3bfb8dea14712689cc9343b7efea8902',1,'daisy::RgbLed']]], + ['_7escopedirqblocker_51',['~ScopedIrqBlocker',['../classdaisy_1_1_scoped_irq_blocker.html#a13ed84e1ed7e0abc1c7d8ddd2ac97009',1,'daisy::ScopedIrqBlocker']]], + ['_7esdmmchandler_52',['~SdmmcHandler',['../classdaisy_1_1_sdmmc_handler.html#a0e9d9d3b2fdaaa7a26a543383867bfb8',1,'daisy::SdmmcHandler']]], + ['_7eshiftregister4021_53',['~ShiftRegister4021',['../classdaisy_1_1_shift_register4021.html#a52c77889ae6115bb67a37110cfda30cc',1,'daisy::ShiftRegister4021']]], + ['_7eshiftregister595_54',['~ShiftRegister595',['../class_shift_register595.html#af8bd4833320c0674521dd23d5be874cb',1,'ShiftRegister595']]], + ['_7estackbase_55',['~StackBase',['../classdaisy_1_1_stack_base.html#a0b7176df71ffc6a47e298c73f5236ebf',1,'daisy::StackBase']]], + ['_7eswitch_56',['~Switch',['../classdaisy_1_1_switch.html#a7dd3724c490ea56be8995f2713d4dbc0',1,'daisy::Switch']]], + ['_7eswitch3_57',['~Switch3',['../classdaisy_1_1_switch3.html#afa972e7c993a8dd72f59e61aa6b4b83f',1,'daisy::Switch3']]], + ['_7esystem_58',['~System',['../classdaisy_1_1_system.html#a87b28a10a8104313e2f69560e6811b39',1,'daisy::System']]], + ['_7etimerhandle_59',['~TimerHandle',['../classdaisy_1_1_timer_handle.html#a6e866706cca6b8fd05ece9c744c76873',1,'daisy::TimerHandle']]], + ['_7etlv493d_60',['~Tlv493d',['../classdaisy_1_1_tlv493d.html#aca120bae83e55c83cf20d5f6da48e18b',1,'daisy::Tlv493d']]], + ['_7etlv493di2ctransport_61',['~Tlv493dI2CTransport',['../classdaisy_1_1_tlv493d_i2_c_transport.html#a05168e21580b908652932e953bf15013',1,'daisy::Tlv493dI2CTransport']]], + ['_7eui_62',['~UI',['../classdaisy_1_1_u_i.html#aba414ddadfb6b90b96af10ceffe0b925',1,'daisy::UI']]], + ['_7euieventqueue_63',['~UiEventQueue',['../classdaisy_1_1_ui_event_queue.html#a99c34d386afa2f3b56def5612b98b638',1,'daisy::UiEventQueue']]], + ['_7euipage_64',['~UiPage',['../classdaisy_1_1_ui_page.html#a93029d815bbc871377d25c071a1a11c6',1,'daisy::UiPage']]], + ['_7eusbhandle_65',['~UsbHandle',['../class_usb_handle.html#a6ad15406df47137dddf3edcb6c10c9c1',1,'UsbHandle::~UsbHandle()'],['../class_usb_handle.html#a6ad15406df47137dddf3edcb6c10c9c1',1,'UsbHandle::~UsbHandle()']]], + ['_7evoctcalibration_66',['~VoctCalibration',['../classdaisy_1_1_voct_calibration.html#a900865bfcc294d80a9ea687e79a149e1',1,'daisy::VoctCalibration']]], + ['_7ewavetableloader_67',['~WaveTableLoader',['../classdaisy_1_1_wave_table_loader.html#a5b9d90a405d8b80ce7d186de03e8e768',1,'daisy::WaveTableLoader']]], + ['_7ewavplayer_68',['~WavPlayer',['../classdaisy_1_1_wav_player.html#a5aad333a53f985af43a856b252289b8a',1,'daisy::WavPlayer']]], + ['_7ewavwriter_69',['~WavWriter',['../classdaisy_1_1_wav_writer.html#ab589ae805cb5d3c59c982687894fbdea',1,'daisy::WavWriter']]], + ['_7ewm8731_70',['~Wm8731',['../classdaisy_1_1_wm8731.html#ab71d3f1b08fd45a9d940a2d1a3a4c388',1,'daisy::Wm8731']]] ]; diff --git a/search/all_2.js b/search/all_2.js index 3ea7f8143..73b7e699f 100644 --- a/search/all_2.js +++ b/search/all_2.js @@ -50,8 +50,8 @@ var searchData= ['blocknbr_47',['BlockNbr',['../struct_d_s_y___s_d___card_info_type_def.html#a1955247be547523e0a16fd37c288b918',1,'DSY_SD_CardInfoTypeDef']]], ['blocksize_48',['blocksize',['../structdaisy_1_1_audio_handle_1_1_config.html#a7e23631311ab3151daa7b4f5a49a897c',1,'daisy::AudioHandle::Config']]], ['blocksize_49',['BlockSize',['../struct_d_s_y___s_d___card_info_type_def.html#a030b9e7d12a77aa526ef7fc86bcb01e0',1,'DSY_SD_CardInfoTypeDef']]], - ['blue_50',['BLUE',['../classdaisy_1_1_color.html#af93d31d5fc63705c228bf9da407c9a40a7030ad36aea5814566cd1c9da26afe6d',1,'daisy::Color']]], - ['blue_51',['Blue',['../classdaisy_1_1_color.html#a9270f936191af9fcd59dad58a8ab0387',1,'daisy::Color']]], + ['blue_50',['Blue',['../classdaisy_1_1_color.html#a9270f936191af9fcd59dad58a8ab0387',1,'daisy::Color']]], + ['blue_51',['BLUE',['../classdaisy_1_1_color.html#af93d31d5fc63705c228bf9da407c9a40a7030ad36aea5814566cd1c9da26afe6d',1,'daisy::Color']]], ['blue8_52',['Blue8',['../classdaisy_1_1_color.html#accf8376e816af404457c61ec6ddd9ab4',1,'daisy::Color']]], ['boards_53',['BOARDS',['../group__boards.html',1,'']]], ['boardversion_54',['BoardVersion',['../classdaisy_1_1_daisy_seed.html#a59363a85e54eebb334d8663a215e5f12',1,'daisy::DaisySeed']]], diff --git a/search/all_3.js b/search/all_3.js index fcc35f372..3b7d1b68f 100644 --- a/search/all_3.js +++ b/search/all_3.js @@ -29,11 +29,11 @@ var searchData= ['centered_26',['centered',['../namespacedaisy.html#a9697449f10c05aa93ee32b36020ea387a15c012757aea2b45f1ea7550869cea02',1,'daisy']]], ['centeredleft_27',['centeredLeft',['../namespacedaisy.html#a9697449f10c05aa93ee32b36020ea387acf178f1e31ac9310e6e21fae3762dcb7',1,'daisy']]], ['centeredright_28',['centeredRight',['../namespacedaisy.html#a9697449f10c05aa93ee32b36020ea387ad105ecd93abcaff16e8546c0a0f79ce4',1,'daisy']]], - ['changeaudiocallback_29',['ChangeAudioCallback',['../classdaisy_1_1_daisy_petal.html#a5abe53d8031d867241697761ba2ac49e',1,'daisy::DaisyPetal::ChangeAudioCallback()'],['../classdaisy_1_1_daisy_pod.html#a400cc9fffe92fee8055f7135d72c0301',1,'daisy::DaisyPod::ChangeAudioCallback(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_pod.html#aeb3cb9f910449050a7fdd2026ef3aced',1,'daisy::DaisyPod::ChangeAudioCallback(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_legio.html#a8e2ff1cd9a12e591c5000ca65345cfdd',1,'daisy::DaisyLegio::ChangeAudioCallback()'],['../classdaisy_1_1_daisy_seed.html#a335cf6197a54b87fb76b85dc44248523',1,'daisy::DaisySeed::ChangeAudioCallback(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_seed.html#ab2ca28523aaff8d1edcb9bee4f3d3c3c',1,'daisy::DaisySeed::ChangeAudioCallback(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_versio.html#ac531434a69979b8e9a9d30102f95cc11',1,'daisy::DaisyVersio::ChangeAudioCallback(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_versio.html#aab768d8a7b8ad96d42a3dccb5b7802b5',1,'daisy::DaisyVersio::ChangeAudioCallback(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_petal.html#aaad9e7f04b54adfb5f10605b4ea0317b',1,'daisy::DaisyPetal::ChangeAudioCallback()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a57857bb457fcea2e262bf49d1656de62',1,'daisy::patch_sm::DaisyPatchSM::ChangeAudioCallback(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a4d5acbbfc808d62586fb56e20d31a0e2',1,'daisy::patch_sm::DaisyPatchSM::ChangeAudioCallback(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_patch.html#a5fc2ae0d696d66db856d29de51a82dd7',1,'daisy::DaisyPatch::ChangeAudioCallback()'],['../classdaisy_1_1_daisy_field.html#af163635c61d101b7d803ca13f9b7e85b',1,'daisy::DaisyField::ChangeAudioCallback(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_field.html#a443feb013a5c6c48b0fb71ee9a22cf6b',1,'daisy::DaisyField::ChangeAudioCallback(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_legio.html#a66c421deff34b0852736036779380cf0',1,'daisy::DaisyLegio::ChangeAudioCallback()']]], - ['changecallback_30',['ChangeCallback',['../classdaisy_1_1_audio_handle.html#a53e54ff52a444ae17ad44deccc350dcc',1,'daisy::AudioHandle::ChangeCallback(InterleavingAudioCallback callback)'],['../classdaisy_1_1_audio_handle.html#af04d84b279b8219a4774f015ca6bba29',1,'daisy::AudioHandle::ChangeCallback(AudioCallback callback)']]], - ['channel_31',['channel',['../structdaisy_1_1_note_off_event.html#a76253736b9fe792133ab5613761f3017',1,'daisy::NoteOffEvent::channel'],['../structdaisy_1_1_note_on_event.html#a5ca9bb0235042964923ce1ebdf0c7321',1,'daisy::NoteOnEvent::channel']]], + ['changeaudiocallback_29',['ChangeAudioCallback',['../classdaisy_1_1_daisy_petal.html#a5abe53d8031d867241697761ba2ac49e',1,'daisy::DaisyPetal::ChangeAudioCallback()'],['../classdaisy_1_1_daisy_pod.html#aeb3cb9f910449050a7fdd2026ef3aced',1,'daisy::DaisyPod::ChangeAudioCallback()'],['../classdaisy_1_1_daisy_patch.html#a5fc2ae0d696d66db856d29de51a82dd7',1,'daisy::DaisyPatch::ChangeAudioCallback()'],['../classdaisy_1_1_daisy_pod.html#a400cc9fffe92fee8055f7135d72c0301',1,'daisy::DaisyPod::ChangeAudioCallback()'],['../classdaisy_1_1_daisy_seed.html#a335cf6197a54b87fb76b85dc44248523',1,'daisy::DaisySeed::ChangeAudioCallback(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_seed.html#ab2ca28523aaff8d1edcb9bee4f3d3c3c',1,'daisy::DaisySeed::ChangeAudioCallback(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_versio.html#ac531434a69979b8e9a9d30102f95cc11',1,'daisy::DaisyVersio::ChangeAudioCallback(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_versio.html#aab768d8a7b8ad96d42a3dccb5b7802b5',1,'daisy::DaisyVersio::ChangeAudioCallback(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_petal.html#aaad9e7f04b54adfb5f10605b4ea0317b',1,'daisy::DaisyPetal::ChangeAudioCallback()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a57857bb457fcea2e262bf49d1656de62',1,'daisy::patch_sm::DaisyPatchSM::ChangeAudioCallback(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a4d5acbbfc808d62586fb56e20d31a0e2',1,'daisy::patch_sm::DaisyPatchSM::ChangeAudioCallback(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_field.html#af163635c61d101b7d803ca13f9b7e85b',1,'daisy::DaisyField::ChangeAudioCallback(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_field.html#a443feb013a5c6c48b0fb71ee9a22cf6b',1,'daisy::DaisyField::ChangeAudioCallback(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_legio.html#a66c421deff34b0852736036779380cf0',1,'daisy::DaisyLegio::ChangeAudioCallback(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_legio.html#a8e2ff1cd9a12e591c5000ca65345cfdd',1,'daisy::DaisyLegio::ChangeAudioCallback(AudioHandle::AudioCallback cb)']]], + ['changecallback_30',['ChangeCallback',['../classdaisy_1_1_audio_handle.html#af04d84b279b8219a4774f015ca6bba29',1,'daisy::AudioHandle::ChangeCallback(AudioCallback callback)'],['../classdaisy_1_1_audio_handle.html#a53e54ff52a444ae17ad44deccc350dcc',1,'daisy::AudioHandle::ChangeCallback(InterleavingAudioCallback callback)']]], + ['channel_31',['channel',['../structdaisy_1_1_note_on_event.html#a5ca9bb0235042964923ce1ebdf0c7321',1,'daisy::NoteOnEvent::channel'],['../structdaisy_1_1_reset_all_controllers_event.html#a026546b1bdf6df08d9e976cf3825752f',1,'daisy::ResetAllControllersEvent::channel'],['../structdaisy_1_1_note_off_event.html#a76253736b9fe792133ab5613761f3017',1,'daisy::NoteOffEvent::channel']]], ['channel_32',['Channel',['../classdaisy_1_1_dac_handle.html#a43de298bdbb02c15b2a35948a15c7125',1,'daisy::DacHandle']]], - ['channel_33',['channel',['../structdaisy_1_1_midi_event.html#a4116a938a5978cf20e11b0d7dc022deb',1,'daisy::MidiEvent::channel'],['../structdaisy_1_1_poly_mode_on_event.html#ae5bd31ed36b63ef4e97098a90f41236a',1,'daisy::PolyModeOnEvent::channel'],['../structdaisy_1_1_mono_mode_on_event.html#a98685d31207264f56110f6cf14e96e6c',1,'daisy::MonoModeOnEvent::channel'],['../structdaisy_1_1_omni_mode_on_event.html#ac4e3c2e5d0050beaf6d74f2013739bd5',1,'daisy::OmniModeOnEvent::channel'],['../structdaisy_1_1_omni_mode_off_event.html#a4b7980c7513829edc53a42910fa4fc8e',1,'daisy::OmniModeOffEvent::channel'],['../structdaisy_1_1_all_notes_off_event.html#a75542c13a95a52b156460d8e6e6ac9da',1,'daisy::AllNotesOffEvent::channel'],['../structdaisy_1_1_local_control_event.html#a8e06e46b93b109b4eae6b6b92f78292d',1,'daisy::LocalControlEvent::channel'],['../structdaisy_1_1_reset_all_controllers_event.html#a026546b1bdf6df08d9e976cf3825752f',1,'daisy::ResetAllControllersEvent::channel'],['../structdaisy_1_1_all_sound_off_event.html#a457f29ed98b4b52cde04951a891a0e74',1,'daisy::AllSoundOffEvent::channel'],['../structdaisy_1_1_channel_mode_event.html#afe4040c2cec193d3d4184ae68709298e',1,'daisy::ChannelModeEvent::channel'],['../structdaisy_1_1_pitch_bend_event.html#a0b0bd11c42dfdc9f2f9ae482a7977d26',1,'daisy::PitchBendEvent::channel'],['../structdaisy_1_1_channel_pressure_event.html#a505820e0e31ea3302ab17cd50adaa622',1,'daisy::ChannelPressureEvent::channel'],['../structdaisy_1_1_program_change_event.html#a835570ed5cbd9fd26d51a3740bd09549',1,'daisy::ProgramChangeEvent::channel'],['../structdaisy_1_1_control_change_event.html#ac9ef96a432ca77995006465140aa0e9e',1,'daisy::ControlChangeEvent::channel'],['../structdaisy_1_1_polyphonic_key_pressure_event.html#afacbe10a8c59c57c731f5f03dbd8276f',1,'daisy::PolyphonicKeyPressureEvent::channel']]], + ['channel_33',['channel',['../structdaisy_1_1_midi_event.html#a4116a938a5978cf20e11b0d7dc022deb',1,'daisy::MidiEvent::channel'],['../structdaisy_1_1_poly_mode_on_event.html#ae5bd31ed36b63ef4e97098a90f41236a',1,'daisy::PolyModeOnEvent::channel'],['../structdaisy_1_1_mono_mode_on_event.html#a98685d31207264f56110f6cf14e96e6c',1,'daisy::MonoModeOnEvent::channel'],['../structdaisy_1_1_omni_mode_on_event.html#ac4e3c2e5d0050beaf6d74f2013739bd5',1,'daisy::OmniModeOnEvent::channel'],['../structdaisy_1_1_omni_mode_off_event.html#a4b7980c7513829edc53a42910fa4fc8e',1,'daisy::OmniModeOffEvent::channel'],['../structdaisy_1_1_all_notes_off_event.html#a75542c13a95a52b156460d8e6e6ac9da',1,'daisy::AllNotesOffEvent::channel'],['../structdaisy_1_1_local_control_event.html#a8e06e46b93b109b4eae6b6b92f78292d',1,'daisy::LocalControlEvent::channel'],['../structdaisy_1_1_all_sound_off_event.html#a457f29ed98b4b52cde04951a891a0e74',1,'daisy::AllSoundOffEvent::channel'],['../structdaisy_1_1_channel_mode_event.html#afe4040c2cec193d3d4184ae68709298e',1,'daisy::ChannelModeEvent::channel'],['../structdaisy_1_1_pitch_bend_event.html#a0b0bd11c42dfdc9f2f9ae482a7977d26',1,'daisy::PitchBendEvent::channel'],['../structdaisy_1_1_channel_pressure_event.html#a505820e0e31ea3302ab17cd50adaa622',1,'daisy::ChannelPressureEvent::channel'],['../structdaisy_1_1_program_change_event.html#a835570ed5cbd9fd26d51a3740bd09549',1,'daisy::ProgramChangeEvent::channel'],['../structdaisy_1_1_control_change_event.html#ac9ef96a432ca77995006465140aa0e9e',1,'daisy::ControlChangeEvent::channel'],['../structdaisy_1_1_polyphonic_key_pressure_event.html#afacbe10a8c59c57c731f5f03dbd8276f',1,'daisy::PolyphonicKeyPressureEvent::channel']]], ['channelmode_34',['ChannelMode',['../group__midi__events.html#ggaaf09bb687034c8776ca0c68ed3ed4179aba56f28826879526f991c5f75c0d072c',1,'daisy']]], ['channelmodeevent_35',['ChannelModeEvent',['../structdaisy_1_1_channel_mode_event.html',1,'daisy']]], ['channelmodelast_36',['ChannelModeLast',['../group__midi__events.html#ggaf9da54b73be4dec526670bd6c53ad98aa8da9e61ff44eb1c141f0195d87f4b07f',1,'daisy']]], @@ -43,106 +43,107 @@ var searchData= ['channels_40',['channels',['../structdaisy_1_1_wav_writer_1_1_config.html#af9ffa3fe0d56cfc55521a33569d45632',1,'daisy::WavWriter::Config']]], ['checkboardversion_41',['CheckBoardVersion',['../classdaisy_1_1_daisy_seed.html#a5db6b70803641e88280cc7d68f224df0',1,'daisy::DaisySeed']]], ['checkboxitem_42',['checkboxItem',['../classdaisy_1_1_abstract_menu.html#a48039035e616d6ecf42cc15561544fada823f78b95f42dc3b66dbe15fe1fd6507',1,'daisy::AbstractMenu']]], - ['checkerror_43',['CheckError',['../classdaisy_1_1_uart_handler.html#ada2266b23e77dde305b229b7814604fe',1,'daisy::UartHandler::CheckError()'],['../classdaisy_1_1_multi_slave_spi_handle.html#a092ec4a9faa69c48a39acfa24d10e238',1,'daisy::MultiSlaveSpiHandle::CheckError()'],['../classdaisy_1_1_spi_handle.html#a903118263e0604c4ba351c972d005386',1,'daisy::SpiHandle::CheckError()']]], + ['checkerror_43',['CheckError',['../classdaisy_1_1_multi_slave_spi_handle.html#a092ec4a9faa69c48a39acfa24d10e238',1,'daisy::MultiSlaveSpiHandle::CheckError()'],['../classdaisy_1_1_spi_handle.html#a903118263e0604c4ba351c972d005386',1,'daisy::SpiHandle::CheckError()'],['../classdaisy_1_1_uart_handler.html#ada2266b23e77dde305b229b7814604fe',1,'daisy::UartHandler::CheckError()']]], ['chip_5ferase_5fcmd_44',['CHIP_ERASE_CMD',['../group__flash.html#gab5d56e314abce71159ab80801a755e97',1,'CHIP_ERASE_CMD: flash_IS25LP080D.h'],['../group__flash.html#gab5d56e314abce71159ab80801a755e97',1,'CHIP_ERASE_CMD: flash_IS25LP064A.h']]], ['chn_45',['chn',['../structdaisy_1_1_dac_handle_1_1_config.html#ad9512b2bc12a61f3a22eea834b976f3c',1,'daisy::DacHandle::Config']]], ['chunkid_46',['ChunkId',['../structdaisy_1_1_w_a_v___format_type_def.html#a7277bbe7165d74a62927d574cfb70a85',1,'daisy::WAV_FormatTypeDef']]], - ['clamp_47',['clamp',['../classdaisy_1_1_fixed_cap_str_base.html#aa9ed1fb1fb4bf8411d5eafb03e7391e2',1,'daisy::FixedCapStrBase']]], - ['class_48',['Class',['../struct_d_s_y___s_d___card_info_type_def.html#a7686e0f5de283d034242aacda74cbc27',1,'DSY_SD_CardInfoTypeDef']]], - ['class_5factive_5fcallback_49',['class_active_callback',['../structdaisy_1_1_u_s_b_host_handle_1_1_config.html#a4b22935a59a911e83ecba4a7b3235e4e',1,'daisy::USBHostHandle::Config']]], - ['classactivecallback_50',['ClassActiveCallback',['../classdaisy_1_1_u_s_b_host_handle.html#a4fad5644a1e1b85f2cbfc27780f65058',1,'daisy::USBHostHandle']]], - ['clear_51',['Clear',['../classdaisy_1_1_neo_pixel.html#a8b116f7bf64327e51410a11455cf12c3',1,'daisy::NeoPixel::Clear()'],['../classdaisy_1_1_stack_base.html#af63e0baa7152c641c00fc2a51fa95847',1,'daisy::StackBase::Clear()'],['../classdaisy_1_1_fixed_cap_str_base.html#ae6695939e40c75f1bf05ff07f49f4859',1,'daisy::FixedCapStrBase::Clear()'],['../classdaisy_1_1_f_i_f_o_base.html#a555fde0e5465b79ea0d0914134283dc2',1,'daisy::FIFOBase::Clear()'],['../classdaisy_1_1_lcd_h_d44780.html#a367cd4b80ec25beacf22c4ae9ebd83f9',1,'daisy::LcdHD44780::Clear()'],['../classdaisy_1_1_dot_star.html#ac1815ff5de1b798d757270607dad2824',1,'daisy::DotStar::Clear()']]], - ['clear_5fext_5fread_5fparam_5fcmd_52',['CLEAR_EXT_READ_PARAM_CMD',['../group__flash.html#gae9a145c8cae5e554e7c7938902e89f20',1,'flash_IS25LP080D.h']]], - ['clearfuncptr_53',['ClearFuncPtr',['../structdaisy_1_1_ui_canvas_descriptor.html#a86d5bbc9e9fcbb65dac28fe78a2c51ec',1,'daisy::UiCanvasDescriptor']]], - ['clearfunction_5f_54',['clearFunction_',['../structdaisy_1_1_ui_canvas_descriptor.html#afa1e4cb91ba86756f938950157f8934b',1,'daisy::UiCanvasDescriptor']]], - ['clearinterrupt_55',['ClearInterrupt',['../classdaisy_1_1_apds9960.html#ac180a968be71261dd2b384c672a14b6f',1,'daisy::Apds9960']]], - ['clearleds_56',['ClearLeds',['../classdaisy_1_1_daisy_petal.html#a8588251c1467e19448ee5c6d9cd8d721',1,'daisy::DaisyPetal::ClearLeds()'],['../classdaisy_1_1_daisy_pod.html#a9bc2e391f7e1a29f04151f82003d88da',1,'daisy::DaisyPod::ClearLeds()']]], - ['clk_57',['clk',['../structdaisy_1_1_q_s_p_i_handle_1_1_config.html#a47407e503978653d8e205159d558e329',1,'daisy::QSPIHandle::Config::clk'],['../structdaisy_1_1_shift_register4021_1_1_config.html#a784eb15848ab91c5664f139706dd0131',1,'daisy::ShiftRegister4021::Config::clk']]], - ['clk_5fpin_58',['clk_pin',['../structdaisy_1_1_dot_star_spi_transport_1_1_config.html#a6dc2db13aefa033aa9b87f44bbd3c446',1,'daisy::DotStarSpiTransport::Config']]], - ['clock_5fphase_59',['clock_phase',['../structdaisy_1_1_spi_handle_1_1_config.html#a87e4362d9c238f2401231b0209780415',1,'daisy::SpiHandle::Config::clock_phase'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#a05b61b4da91b34aff7944ccd4e587619',1,'daisy::MultiSlaveSpiHandle::Config::clock_phase']]], - ['clock_5fpolarity_60',['clock_polarity',['../structdaisy_1_1_spi_handle_1_1_config.html#a035f8343e15d67d087f019f6256a0e81',1,'daisy::SpiHandle::Config::clock_polarity'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#a7ad5927e1840e5d75ddd203704056ea0',1,'daisy::MultiSlaveSpiHandle::Config::clock_polarity']]], - ['clock_5fpowersave_61',['clock_powersave',['../structdaisy_1_1_sdmmc_handler_1_1_config.html#a2087cb1829dbf51e1de53e98e653c387',1,'daisy::SdmmcHandler::Config']]], - ['clockphase_62',['ClockPhase',['../structdaisy_1_1_spi_handle_1_1_config.html#a2ecef0d5dcfbdbdf6d2f91296f118a57',1,'daisy::SpiHandle::Config']]], - ['clockpolarity_63',['ClockPolarity',['../structdaisy_1_1_spi_handle_1_1_config.html#a1d8556f306b61df88d6f08ebd6b9ba24',1,'daisy::SpiHandle::Config']]], - ['close_64',['Close',['../classdaisy_1_1_wav_player.html#adc0c84ee0ecc56e734908a8c1384c5c2',1,'daisy::WavPlayer::Close()'],['../classdaisy_1_1_ui_page.html#a39c00309eabce1b4884a5edebcbea88d',1,'daisy::UiPage::Close()']]], - ['closemenuitem_65',['closeMenuItem',['../classdaisy_1_1_abstract_menu.html#a48039035e616d6ecf42cc15561544fada48ac3fbda63e04ce1b58421084736a2e',1,'daisy::AbstractMenu']]], - ['closepage_66',['ClosePage',['../classdaisy_1_1_u_i.html#ad76cd8102183e7567d2b1bde4f394bee',1,'daisy::UI']]], - ['cm_5ftype_67',['cm_type',['../structdaisy_1_1_midi_event.html#a7fd8633bad4e22a3a6855ad7b1857dc8',1,'daisy::MidiEvent']]], - ['codec_68',['codec',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a13a10b18746edeace08d370c5c9f81a3',1,'daisy::patch_sm::DaisyPatchSM']]], - ['codec_69',['CODEC',['../group__codec.html',1,'']]], - ['codec_5fak4556_2eh_70',['codec_ak4556.h',['../codec__ak4556_8h.html',1,'']]], - ['codec_5fpcm3060_2eh_71',['codec_pcm3060.h',['../codec__pcm3060_8h.html',1,'']]], - ['codec_5fwm8731_2eh_72',['codec_wm8731.h',['../codec__wm8731_8h.html',1,'']]], - ['color_73',['Color',['../classdaisy_1_1_neo_pixel.html#a9108cc1982e0238bcb4bc49a53b6fca3',1,'daisy::NeoPixel::Color(uint8_t r, uint8_t g, uint8_t b)'],['../classdaisy_1_1_neo_pixel.html#acd72cdae401cc660cbedde6c0a641504',1,'daisy::NeoPixel::Color(uint8_t r, uint8_t g, uint8_t b, uint8_t w)'],['../classdaisy_1_1_color.html#a6b1f926235cab78e9d4cb75e86c4c2ee',1,'daisy::Color::Color()'],['../classdaisy_1_1_color.html',1,'daisy::Color']]], - ['color_2eh_74',['color.h',['../color_8h.html',1,'']]], - ['color_5fmode_75',['color_mode',['../structdaisy_1_1_apds9960_1_1_config.html#a1f83a8dbf530eac100a9630a7c07e2c1',1,'daisy::Apds9960::Config']]], - ['color_5forder_76',['color_order',['../structdaisy_1_1_dot_star_1_1_config.html#af5587a07223398f34ac700e4f23baf1f',1,'daisy::DotStar::Config']]], - ['colordataready_77',['ColorDataReady',['../classdaisy_1_1_apds9960.html#a7639be829aba496cf74e64464f4da1ce',1,'daisy::Apds9960']]], - ['colororder_78',['ColorOrder',['../structdaisy_1_1_dot_star_1_1_config.html#ac0d32307f8104690f4a6d15dd1943ae9',1,'daisy::DotStar::Config']]], - ['concatresults_79',['ConcatResults',['../classdaisy_1_1_tlv493d.html#abe703bf1282ecef167a6b81ec33cfd3f',1,'daisy::Tlv493d']]], - ['config_80',['Config',['../structdaisy_1_1_neo_trellis_1_1_config.html#a68ff905c87df6e5c2fcf291c60669eb9',1,'daisy::NeoTrellis::Config::Config()'],['../structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a753b56324f7e8d5733a4b56b30779e46',1,'daisy::Apds9960I2CTransport::Config::Config()'],['../structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a60556e52b033f81831b4b8ec43b7d0d9',1,'daisy::NeoTrellisI2CTransport::Config::Config()'],['../structdaisy_1_1_neo_pixel_1_1_config.html#ab14b524c8d0d3379dbacaccfb8afacf0',1,'daisy::NeoPixel::Config::Config()'],['../structdaisy_1_1_neo_pixel_i2_c_transport_1_1_config.html#a46b9918d07bcf6755e0b18dbd3a74e9f',1,'daisy::NeoPixelI2CTransport::Config::Config()'],['../structdaisy_1_1_mpr121_1_1_config.html#aeb8034eea18b68c566a9f6112b52aaaf',1,'daisy::Mpr121::Config::Config()'],['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html#a10ce49ddd1d0f6d1459079bb8fa5eee3',1,'daisy::Mpr121I2CTransport::Config::Config()'],['../structdaisy_1_1_icm20948_1_1_config.html#a513808e37796cedb27b74217c9962c5b',1,'daisy::Icm20948::Config::Config()'],['../structdaisy_1_1_icm20948_spi_transport_1_1_config.html#a287d67a07a3ff84245f8a6a082024107',1,'daisy::Icm20948SpiTransport::Config::Config()'],['../structdaisy_1_1_icm20948_i2_c_transport_1_1_config.html#a9d32f02a442a3e7f951bbb5db79cbd19',1,'daisy::Icm20948I2CTransport::Config::Config()'],['../structdaisy_1_1_dps310_1_1_config.html#ad0c3f249b3990174f74ef33a2b2933c7',1,'daisy::Dps310::Config::Config()'],['../structdaisy_1_1_dps310_spi_transport_1_1_config.html#a2df00cd13d63eca35b0505c6e4ec7b94',1,'daisy::Dps310SpiTransport::Config::Config()'],['../structdaisy_1_1_dps310_i2_c_transport_1_1_config.html#a2754612c7105b68f86d6d4e5886b6e33',1,'daisy::Dps310I2CTransport::Config::Config()'],['../structdaisy_1_1_apds9960_1_1_config.html#a5db9e59b5a046396e2766351ed318ac3',1,'daisy::Apds9960::Config::Config()'],['../structdaisy_1_1_s_s_d130x_i2_c_transport_1_1_config.html#af233d5e1f3dd1d8445a183692e593cfe',1,'daisy::SSD130xI2CTransport::Config::Config()'],['../structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#af2f5c92ac23ceeed040e6f63d880cbaa',1,'daisy::SSD130x4WireSpiTransport::Config::Config()'],['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a0e6385a90de1a3e4ffaa4023b3d9a83b',1,'daisy::SSD130x4WireSoftSpiTransport::Config::Config()'],['../structdaisy_1_1_tlv493d_i2_c_transport_1_1_config.html#a40838aea9f3e1677c74ff98a759cf464',1,'daisy::Tlv493dI2CTransport::Config::Config()'],['../structdaisy_1_1_tlv493d_1_1_config.html#a1fb7d86703e4032e8d33a9a1c74aa835',1,'daisy::Tlv493d::Config::Config()'],['../structdaisy_1_1_audio_handle_1_1_config.html#a2543a29b73eb254e003f33502d88e991',1,'daisy::AudioHandle::Config::Config()'],['../structdaisy_1_1_midi_uart_transport_1_1_config.html#acf3aaf63941621f4dc93aa42026293bf',1,'daisy::MidiUartTransport::Config::Config()'],['../structdaisy_1_1_u_s_b_host_handle_1_1_config.html#af5880d86c7ad0a0a9161c5e72ff88b0c',1,'daisy::USBHostHandle::Config::Config()'],['../structdaisy_1_1_midi_usb_transport_1_1_config.html#acb8a68dec27a0685a753252e0974fd83',1,'daisy::MidiUsbTransport::Config::Config()'],['../structdaisy_1_1_g_p_i_o_1_1_config.html#a94050e7a224dc7620891e53c597fa32a',1,'daisy::GPIO::Config::Config()'],['../structdaisy_1_1_spi_handle_1_1_config.html#ac8f7dcc5214fc0b910e7755deac5e5f5',1,'daisy::SpiHandle::Config::Config()'],['../structdaisy_1_1_timer_handle_1_1_config.html#ab16930ef8452a8b0dc78ff46918a94a5',1,'daisy::TimerHandle::Config::Config()'],['../structdaisy_1_1_uart_handler_1_1_config.html#a8fb7fc98d0066fa010457bbe092d434b',1,'daisy::UartHandler::Config::Config()'],['../structdaisy_1_1_apds9960_1_1_config.html',1,'daisy::Apds9960< Transport >::Config'],['../structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html',1,'daisy::Apds9960I2CTransport::Config'],['../structdaisy_1_1_audio_handle_1_1_config.html',1,'daisy::AudioHandle::Config'],['../structdaisy_1_1_dac_handle_1_1_config.html',1,'daisy::DacHandle::Config'],['../structdaisy_1_1_dot_star_1_1_config.html',1,'daisy::DotStar< Transport >::Config'],['../structdaisy_1_1_dot_star_spi_transport_1_1_config.html',1,'daisy::DotStarSpiTransport::Config'],['../structdaisy_1_1_dps310_1_1_config.html',1,'daisy::Dps310< Transport >::Config'],['../structdaisy_1_1_dps310_i2_c_transport_1_1_config.html',1,'daisy::Dps310I2CTransport::Config'],['../structdaisy_1_1_dps310_spi_transport_1_1_config.html',1,'daisy::Dps310SpiTransport::Config'],['../structdaisy_1_1_fat_f_s_interface_1_1_config.html',1,'daisy::FatFSInterface::Config'],['../structdaisy_1_1_g_p_i_o_1_1_config.html',1,'daisy::GPIO::Config'],['../structdaisy_1_1_i2_c_handle_1_1_config.html',1,'daisy::I2CHandle::Config'],['../structdaisy_1_1_icm20948_1_1_config.html',1,'daisy::Icm20948< Transport >::Config'],['../structdaisy_1_1_icm20948_i2_c_transport_1_1_config.html',1,'daisy::Icm20948I2CTransport::Config'],['../structdaisy_1_1_icm20948_spi_transport_1_1_config.html',1,'daisy::Icm20948SpiTransport::Config'],['../structdaisy_1_1_lcd_h_d44780_1_1_config.html',1,'daisy::LcdHD44780::Config'],['../structdaisy_1_1_m_a_x11300_driver_1_1_config.html',1,'daisy::MAX11300Driver< Transport, num_devices >::Config'],['../structdaisy_1_1_m_a_x11300_multi_slave_spi_transport_1_1_config.html',1,'daisy::MAX11300MultiSlaveSpiTransport::Config< numDevices >'],['../structdaisy_1_1_mcp23017_transport_1_1_config.html',1,'daisy::Mcp23017Transport::Config'],['../structdaisy_1_1_mcp23_x17_1_1_config.html',1,'daisy::Mcp23X17< Transport >::Config'],['../structdaisy_1_1_midi_handler_1_1_config.html',1,'daisy::MidiHandler< Transport >::Config'],['../structdaisy_1_1_midi_uart_transport_1_1_config.html',1,'daisy::MidiUartTransport::Config'],['../structdaisy_1_1_midi_usb_transport_1_1_config.html',1,'daisy::MidiUsbTransport::Config'],['../structdaisy_1_1_mpr121_1_1_config.html',1,'daisy::Mpr121< Transport >::Config'],['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html',1,'daisy::Mpr121I2CTransport::Config'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html',1,'daisy::MultiSlaveSpiHandle::Config'],['../structdaisy_1_1_neo_pixel_1_1_config.html',1,'daisy::NeoPixel< Transport >::Config'],['../structdaisy_1_1_neo_pixel_i2_c_transport_1_1_config.html',1,'daisy::NeoPixelI2CTransport::Config'],['../structdaisy_1_1_neo_trellis_1_1_config.html',1,'daisy::NeoTrellis< Transport >::Config'],['../structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html',1,'daisy::NeoTrellisI2CTransport::Config'],['../structdaisy_1_1_oled_display_1_1_config.html',1,'daisy::OledDisplay< DisplayDriver >::Config'],['../structdaisy_1_1_q_s_p_i_handle_1_1_config.html',1,'daisy::QSPIHandle::Config'],['../structdaisy_1_1_sai_handle_1_1_config.html',1,'daisy::SaiHandle::Config'],['../structdaisy_1_1_sdmmc_handler_1_1_config.html',1,'daisy::SdmmcHandler::Config'],['../structdaisy_1_1_shift_register4021_1_1_config.html',1,'daisy::ShiftRegister4021< num_daisychained, num_parallel >::Config'],['../structdaisy_1_1_spi_handle_1_1_config.html',1,'daisy::SpiHandle::Config'],['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html',1,'daisy::SSD130x4WireSoftSpiTransport::Config'],['../structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html',1,'daisy::SSD130x4WireSpiTransport::Config'],['../structdaisy_1_1_s_s_d130x_driver_1_1_config.html',1,'daisy::SSD130xDriver< width, height, Transport >::Config'],['../structdaisy_1_1_s_s_d130x_i2_c_transport_1_1_config.html',1,'daisy::SSD130xI2CTransport::Config'],['../structdaisy_1_1_system_1_1_config.html',1,'daisy::System::Config'],['../structdaisy_1_1_timer_handle_1_1_config.html',1,'daisy::TimerHandle::Config'],['../structdaisy_1_1_tlv493d_1_1_config.html',1,'daisy::Tlv493d< Transport >::Config'],['../structdaisy_1_1_tlv493d_i2_c_transport_1_1_config.html',1,'daisy::Tlv493dI2CTransport::Config'],['../structdaisy_1_1_uart_handler_1_1_config.html',1,'daisy::UartHandler::Config'],['../structdaisy_1_1_u_s_b_host_handle_1_1_config.html',1,'daisy::USBHostHandle::Config'],['../structdaisy_1_1_wav_writer_1_1_config.html',1,'daisy::WavWriter< transfer_size >::Config'],['../structdaisy_1_1_wm8731_1_1_config.html',1,'daisy::Wm8731::Config']]], - ['configure_81',['Configure',['../classdaisy_1_1_daisy_seed.html#a756338e5ffbd605a56930d1e634d30e6',1,'daisy::DaisySeed']]], - ['configurei2cmaster_82',['ConfigureI2CMaster',['../classdaisy_1_1_icm20948.html#a6f41a4c5e5086c914f8f84d64d3187e0',1,'daisy::Icm20948']]], - ['configurepinasanalogread_83',['ConfigurePinAsAnalogRead',['../classdaisy_1_1_m_a_x11300_driver.html#abe3dab29c45063128f219eaf407ec4f1',1,'daisy::MAX11300Driver']]], - ['configurepinasanalogwrite_84',['ConfigurePinAsAnalogWrite',['../classdaisy_1_1_m_a_x11300_driver.html#a05825f073bad504b2ecfe2b1a170b205',1,'daisy::MAX11300Driver']]], - ['configurepinasdigitalread_85',['ConfigurePinAsDigitalRead',['../classdaisy_1_1_m_a_x11300_driver.html#a23cec4b94e9b68ed3d5786e9070cb72f',1,'daisy::MAX11300Driver']]], - ['configurepinasdigitalwrite_86',['ConfigurePinAsDigitalWrite',['../classdaisy_1_1_m_a_x11300_driver.html#acb180999fb555be6e2c8cdd1c84dcaed',1,'daisy::MAX11300Driver']]], - ['configurepressure_87',['configurePressure',['../classdaisy_1_1_dps310.html#ab5920481cb5356c4662d9b5fb4e9af5f',1,'daisy::Dps310']]], - ['configuretemperature_88',['configureTemperature',['../classdaisy_1_1_dps310.html#ac833a082cdd31fb0e2bf5e342bbbc819',1,'daisy::Dps310']]], - ['connect_5fcallback_89',['connect_callback',['../structdaisy_1_1_u_s_b_host_handle_1_1_config.html#a6fc69f202495d06c0a0d20401b06fa93',1,'daisy::USBHostHandle::Config']]], - ['connectcallback_90',['ConnectCallback',['../classdaisy_1_1_u_s_b_host_handle.html#a271a5fe3869cae850c6422a964c8e005',1,'daisy::USBHostHandle']]], - ['contains_91',['Contains',['../classdaisy_1_1_f_i_f_o_base.html#a1497e2d60259ee224a6c7a9fe48bd35f',1,'daisy::FIFOBase::Contains()'],['../classdaisy_1_1_stack_base.html#ab6bfc4201969c59db5e5365200243d89',1,'daisy::StackBase::Contains()']]], - ['context_92',['context',['../structdaisy_1_1_abstract_menu_1_1_item_config.html#ae7c2d4b97bd035919b52d46bf9cb659e',1,'daisy::AbstractMenu::ItemConfig']]], - ['continue_93',['Continue',['../group__midi__events.html#gga3069be23e98a0299bbfa8f1759754d45a0938e387061dc2b77911c1a128b8ba02',1,'daisy']]], - ['control_5fknob_5fbottom_94',['CONTROL_KNOB_BOTTOM',['../classdaisy_1_1_daisy_legio.html#a1884bab39dcc854aaca65d18e9cecf24a6f013f54749a155c2de2933976e01f58',1,'daisy::DaisyLegio']]], - ['control_5fknob_5ftop_95',['CONTROL_KNOB_TOP',['../classdaisy_1_1_daisy_legio.html#a1884bab39dcc854aaca65d18e9cecf24a765c4b07fe8861cc2f562d794d031094',1,'daisy::DaisyLegio']]], - ['control_5flast_96',['CONTROL_LAST',['../classdaisy_1_1_daisy_legio.html#a1884bab39dcc854aaca65d18e9cecf24afa9eacbaf4dc3e8cdf31c988e19a3ae4',1,'daisy::DaisyLegio']]], - ['control_5fnumber_97',['control_number',['../structdaisy_1_1_control_change_event.html#ac69453ad29a6c7737dd0ca7608f145e3',1,'daisy::ControlChangeEvent']]], - ['control_5fpitch_98',['CONTROL_PITCH',['../classdaisy_1_1_daisy_legio.html#a1884bab39dcc854aaca65d18e9cecf24af616f422a130863786d902dfaf596c46',1,'daisy::DaisyLegio']]], - ['controlchange_99',['ControlChange',['../group__midi__events.html#ggaaf09bb687034c8776ca0c68ed3ed4179a0b1ada1624d07a8111c54257702313df',1,'daisy']]], - ['controlchangeevent_100',['ControlChangeEvent',['../structdaisy_1_1_control_change_event.html',1,'daisy']]], - ['controls_101',['controls',['../classdaisy_1_1_daisy_legio.html#aa94a8317fb80817f05bb327fdca00fdc',1,'daisy::DaisyLegio']]], - ['controls_102',['CONTROLS',['../group__controls.html',1,'']]], - ['controls_103',['controls',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a5e3f7228eab90a777ebd09267bfb9d0b',1,'daisy::patch_sm::DaisyPatchSM::controls'],['../classdaisy_1_1_daisy_patch.html#af2ad231a452402baa2df7a5fdbdf8a5b',1,'daisy::DaisyPatch::controls']]], - ['conversionspeed_104',['ConversionSpeed',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09',1,'daisy::AdcChannelConfig']]], - ['copy_5f_105',['Copy_',['../classdaisy_1_1_fixed_cap_str_base.html#a875f48decd8b2614a029e35687ed0689',1,'daisy::FixedCapStrBase']]], - ['countequalto_106',['CountEqualTo',['../classdaisy_1_1_stack_base.html#af0433fae1f1755fd0346b669045ecf3d',1,'daisy::StackBase::CountEqualTo()'],['../classdaisy_1_1_f_i_f_o_base.html#ae2556c37fc0bb6229426b33125e5344c',1,'daisy::FIFOBase::CountEqualTo()']]], - ['counterdir_107',['CounterDir',['../structdaisy_1_1_timer_handle_1_1_config.html#a0dd9b7de7144428da36ab1e140081e7b',1,'daisy::TimerHandle::Config']]], - ['cpu_5ffreq_108',['cpu_freq',['../structdaisy_1_1_system_1_1_config.html#a09d69139177eac30a39e4df35154dce0',1,'daisy::System::Config']]], - ['cpuloadmeter_109',['CpuLoadMeter',['../classdaisy_1_1_cpu_load_meter.html#a8ecbda9afb469dd98f247a8a059e410f',1,'daisy::CpuLoadMeter::CpuLoadMeter()'],['../classdaisy_1_1_cpu_load_meter.html',1,'daisy::CpuLoadMeter']]], - ['cpuloadmeter_2eh_110',['CpuLoadMeter.h',['../_cpu_load_meter_8h.html',1,'']]], - ['csb_5fpin_5fstate_111',['csb_pin_state',['../structdaisy_1_1_wm8731_1_1_config.html#a6b83d4a8f2c0fc7a247d6071df07834b',1,'daisy::Wm8731::Config']]], - ['cstr_112',['Cstr',['../classdaisy_1_1_fixed_cap_str_base.html#acef622a408730be91ef386a6a2c86049',1,'daisy::FixedCapStrBase']]], - ['ctrl_113',['Ctrl',['../classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3',1,'daisy::DaisyPatch']]], - ['ctrl_2eh_114',['ctrl.h',['../ctrl_8h.html',1,'']]], - ['ctrl_5f1_115',['CTRL_1',['../classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3add5617d9d944ff9734f9f70ba6ef4559',1,'daisy::DaisyPatch']]], - ['ctrl_5f2_116',['CTRL_2',['../classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3a877a1afe40324da5847f486c32a1be93',1,'daisy::DaisyPatch']]], - ['ctrl_5f3_117',['CTRL_3',['../classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3a4ea357339c00d73927aaa0efe10b8a97',1,'daisy::DaisyPatch']]], - ['ctrl_5f4_118',['CTRL_4',['../classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3a97da9bc7e7650022b0109eba62759e5a',1,'daisy::DaisyPatch']]], - ['ctrl_5flast_119',['CTRL_LAST',['../classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3abd85d3626ac80d244f744f96df92b58a',1,'daisy::DaisyPatch']]], - ['cube_120',['cube',['../group__utility.html#ga6023030167cfeb8bb8e066f8ea455d80',1,'daisy_core.h']]], - ['cube_121',['CUBE',['../classdaisy_1_1_parameter.html#a2fcb1b7095721f0de77594aabb9594daacca2d40b7b85d8f2bd10262152aaca92',1,'daisy::Parameter']]], - ['currentx_122',['CurrentX',['../classdaisy_1_1_one_bit_graphics_display.html#ab877f769f2d9b9f70027beccd9173f50',1,'daisy::OneBitGraphicsDisplay']]], - ['currentx_5f_123',['currentX_',['../classdaisy_1_1_one_bit_graphics_display.html#ae837bd4e0ce7fe11655324303b3a7cfd',1,'daisy::OneBitGraphicsDisplay']]], - ['currenty_124',['CurrentY',['../classdaisy_1_1_one_bit_graphics_display.html#a9087b73bc0d35541ca2d017158d300d4',1,'daisy::OneBitGraphicsDisplay']]], - ['currenty_5f_125',['currentY_',['../classdaisy_1_1_one_bit_graphics_display.html#a1f0c60954f72c6d36d87902145db1fe8',1,'daisy::OneBitGraphicsDisplay']]], - ['cursor_5fblink_126',['cursor_blink',['../structdaisy_1_1_lcd_h_d44780_1_1_config.html#a954080878494e5c11fc00a14d7854b72',1,'daisy::LcdHD44780::Config']]], - ['cursor_5fon_127',['cursor_on',['../structdaisy_1_1_lcd_h_d44780_1_1_config.html#aa4a096ce1b70942784ce46fdd13a369c',1,'daisy::LcdHD44780::Config']]], - ['curve_128',['Curve',['../classdaisy_1_1_parameter.html#a2fcb1b7095721f0de77594aabb9594da',1,'daisy::Parameter']]], - ['customitem_129',['customItem',['../classdaisy_1_1_abstract_menu.html#a48039035e616d6ecf42cc15561544fadaaf1e66e73b1367e969e34cbeb5ced3a2',1,'daisy::AbstractMenu']]], - ['customitem_130',['CustomItem',['../classdaisy_1_1_abstract_menu_1_1_custom_item.html',1,'daisy::AbstractMenu']]], - ['cv_131',['cv',['../classdaisy_1_1_daisy_field.html#a65e6df0f4ecff75bf3156e3438de94a7',1,'daisy::DaisyField']]], - ['cv_5f1_132',['CV_1',['../classdaisy_1_1_daisy_field.html#a81c3bfd2fdf29ccc15bdd81355f1e3d0a36ee3f611c2dea3a995893896774da08',1,'daisy::DaisyField::CV_1'],['../namespacedaisy_1_1patch__sm.html#aaf24993b0ae9c0d2a0b96eecc664097ea359a36104c86f89525732c80c59ee085',1,'daisy::patch_sm::CV_1']]], - ['cv_5f2_133',['CV_2',['../classdaisy_1_1_daisy_field.html#a81c3bfd2fdf29ccc15bdd81355f1e3d0a3508ae751993a839eaee3db60e2c7075',1,'daisy::DaisyField::CV_2'],['../namespacedaisy_1_1patch__sm.html#aaf24993b0ae9c0d2a0b96eecc664097eaf2a7c79098776189ebe26a77b0abe227',1,'daisy::patch_sm::CV_2']]], - ['cv_5f3_134',['CV_3',['../namespacedaisy_1_1patch__sm.html#aaf24993b0ae9c0d2a0b96eecc664097ea864d9b235d708cae7f8c2a850682cff3',1,'daisy::patch_sm::CV_3'],['../classdaisy_1_1_daisy_field.html#a81c3bfd2fdf29ccc15bdd81355f1e3d0ab4b434e696a6a5dd2491caf2c05efeab',1,'daisy::DaisyField::CV_3']]], - ['cv_5f4_135',['CV_4',['../classdaisy_1_1_daisy_field.html#a81c3bfd2fdf29ccc15bdd81355f1e3d0affd7d203194664afb126f733f2930193',1,'daisy::DaisyField::CV_4'],['../namespacedaisy_1_1patch__sm.html#aaf24993b0ae9c0d2a0b96eecc664097ea9f728c19c5ca0ffcb092da7027a2df39',1,'daisy::patch_sm::CV_4']]], - ['cv_5f5_136',['CV_5',['../namespacedaisy_1_1patch__sm.html#aaf24993b0ae9c0d2a0b96eecc664097eabecd3b1bf7cc7deb27d9fb18bea9cb09',1,'daisy::patch_sm']]], - ['cv_5f6_137',['CV_6',['../namespacedaisy_1_1patch__sm.html#aaf24993b0ae9c0d2a0b96eecc664097ea4bcecbdf95a67dfd4f86d2f2f4089951',1,'daisy::patch_sm']]], - ['cv_5f7_138',['CV_7',['../namespacedaisy_1_1patch__sm.html#aaf24993b0ae9c0d2a0b96eecc664097ea4403935418dd47a6953d2274d85e30ec',1,'daisy::patch_sm']]], - ['cv_5f8_139',['CV_8',['../namespacedaisy_1_1patch__sm.html#aaf24993b0ae9c0d2a0b96eecc664097eaf05d539ab5cba030354066d1b19f04bf',1,'daisy::patch_sm']]], - ['cv_5flast_140',['CV_LAST',['../classdaisy_1_1_daisy_field.html#a81c3bfd2fdf29ccc15bdd81355f1e3d0ab3858c1a0f81cae5e7e1a48097110213',1,'daisy::DaisyField']]], - ['cv_5fout_5f1_141',['CV_OUT_1',['../namespacedaisy_1_1patch__sm.html#a6f4e30b5637415dee21e1eaa70ba91c5a0921e7033462937ecac4cd832e58705b',1,'daisy::patch_sm']]], - ['cv_5fout_5f2_142',['CV_OUT_2',['../namespacedaisy_1_1patch__sm.html#a6f4e30b5637415dee21e1eaa70ba91c5ae07a592c381dcace98fd893140f70032',1,'daisy::patch_sm']]], - ['cv_5fout_5fboth_143',['CV_OUT_BOTH',['../namespacedaisy_1_1patch__sm.html#a6f4e30b5637415dee21e1eaa70ba91c5a082a36ff6de6b88ccaa82a6083ba410d',1,'daisy::patch_sm']]], - ['cyan_144',['CYAN',['../classdaisy_1_1_color.html#af93d31d5fc63705c228bf9da407c9a40ae56104f12bd27867c6140cded63e1fad',1,'daisy::Color']]] + ['circularrxcallbackfunctionptr_47',['CircularRxCallbackFunctionPtr',['../classdaisy_1_1_uart_handler.html#a95993666d3498111f123382022967946',1,'daisy::UartHandler']]], + ['clamp_48',['clamp',['../classdaisy_1_1_fixed_cap_str_base.html#aa9ed1fb1fb4bf8411d5eafb03e7391e2',1,'daisy::FixedCapStrBase']]], + ['class_49',['Class',['../struct_d_s_y___s_d___card_info_type_def.html#a7686e0f5de283d034242aacda74cbc27',1,'DSY_SD_CardInfoTypeDef']]], + ['class_5factive_5fcallback_50',['class_active_callback',['../structdaisy_1_1_u_s_b_host_handle_1_1_config.html#a4b22935a59a911e83ecba4a7b3235e4e',1,'daisy::USBHostHandle::Config']]], + ['classactivecallback_51',['ClassActiveCallback',['../classdaisy_1_1_u_s_b_host_handle.html#a4fad5644a1e1b85f2cbfc27780f65058',1,'daisy::USBHostHandle']]], + ['clear_52',['Clear',['../classdaisy_1_1_neo_pixel.html#a8b116f7bf64327e51410a11455cf12c3',1,'daisy::NeoPixel::Clear()'],['../classdaisy_1_1_stack_base.html#af63e0baa7152c641c00fc2a51fa95847',1,'daisy::StackBase::Clear()'],['../classdaisy_1_1_fixed_cap_str_base.html#ae6695939e40c75f1bf05ff07f49f4859',1,'daisy::FixedCapStrBase::Clear()'],['../classdaisy_1_1_f_i_f_o_base.html#a555fde0e5465b79ea0d0914134283dc2',1,'daisy::FIFOBase::Clear()'],['../classdaisy_1_1_lcd_h_d44780.html#a367cd4b80ec25beacf22c4ae9ebd83f9',1,'daisy::LcdHD44780::Clear()'],['../classdaisy_1_1_dot_star.html#ac1815ff5de1b798d757270607dad2824',1,'daisy::DotStar::Clear()']]], + ['clear_5fext_5fread_5fparam_5fcmd_53',['CLEAR_EXT_READ_PARAM_CMD',['../group__flash.html#gae9a145c8cae5e554e7c7938902e89f20',1,'flash_IS25LP080D.h']]], + ['clearfuncptr_54',['ClearFuncPtr',['../structdaisy_1_1_ui_canvas_descriptor.html#a86d5bbc9e9fcbb65dac28fe78a2c51ec',1,'daisy::UiCanvasDescriptor']]], + ['clearfunction_5f_55',['clearFunction_',['../structdaisy_1_1_ui_canvas_descriptor.html#afa1e4cb91ba86756f938950157f8934b',1,'daisy::UiCanvasDescriptor']]], + ['clearinterrupt_56',['ClearInterrupt',['../classdaisy_1_1_apds9960.html#ac180a968be71261dd2b384c672a14b6f',1,'daisy::Apds9960']]], + ['clearleds_57',['ClearLeds',['../classdaisy_1_1_daisy_petal.html#a8588251c1467e19448ee5c6d9cd8d721',1,'daisy::DaisyPetal::ClearLeds()'],['../classdaisy_1_1_daisy_pod.html#a9bc2e391f7e1a29f04151f82003d88da',1,'daisy::DaisyPod::ClearLeds()']]], + ['clk_58',['clk',['../structdaisy_1_1_q_s_p_i_handle_1_1_config.html#a47407e503978653d8e205159d558e329',1,'daisy::QSPIHandle::Config::clk'],['../structdaisy_1_1_shift_register4021_1_1_config.html#a784eb15848ab91c5664f139706dd0131',1,'daisy::ShiftRegister4021::Config::clk']]], + ['clk_5fpin_59',['clk_pin',['../structdaisy_1_1_dot_star_spi_transport_1_1_config.html#a6dc2db13aefa033aa9b87f44bbd3c446',1,'daisy::DotStarSpiTransport::Config']]], + ['clock_5fphase_60',['clock_phase',['../structdaisy_1_1_spi_handle_1_1_config.html#a87e4362d9c238f2401231b0209780415',1,'daisy::SpiHandle::Config::clock_phase'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#a05b61b4da91b34aff7944ccd4e587619',1,'daisy::MultiSlaveSpiHandle::Config::clock_phase']]], + ['clock_5fpolarity_61',['clock_polarity',['../structdaisy_1_1_spi_handle_1_1_config.html#a035f8343e15d67d087f019f6256a0e81',1,'daisy::SpiHandle::Config::clock_polarity'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#a7ad5927e1840e5d75ddd203704056ea0',1,'daisy::MultiSlaveSpiHandle::Config::clock_polarity']]], + ['clock_5fpowersave_62',['clock_powersave',['../structdaisy_1_1_sdmmc_handler_1_1_config.html#a2087cb1829dbf51e1de53e98e653c387',1,'daisy::SdmmcHandler::Config']]], + ['clockphase_63',['ClockPhase',['../structdaisy_1_1_spi_handle_1_1_config.html#a2ecef0d5dcfbdbdf6d2f91296f118a57',1,'daisy::SpiHandle::Config']]], + ['clockpolarity_64',['ClockPolarity',['../structdaisy_1_1_spi_handle_1_1_config.html#a1d8556f306b61df88d6f08ebd6b9ba24',1,'daisy::SpiHandle::Config']]], + ['close_65',['Close',['../classdaisy_1_1_wav_player.html#adc0c84ee0ecc56e734908a8c1384c5c2',1,'daisy::WavPlayer::Close()'],['../classdaisy_1_1_ui_page.html#a39c00309eabce1b4884a5edebcbea88d',1,'daisy::UiPage::Close()']]], + ['closemenuitem_66',['closeMenuItem',['../classdaisy_1_1_abstract_menu.html#a48039035e616d6ecf42cc15561544fada48ac3fbda63e04ce1b58421084736a2e',1,'daisy::AbstractMenu']]], + ['closepage_67',['ClosePage',['../classdaisy_1_1_u_i.html#ad76cd8102183e7567d2b1bde4f394bee',1,'daisy::UI']]], + ['cm_5ftype_68',['cm_type',['../structdaisy_1_1_midi_event.html#a7fd8633bad4e22a3a6855ad7b1857dc8',1,'daisy::MidiEvent']]], + ['codec_69',['codec',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a13a10b18746edeace08d370c5c9f81a3',1,'daisy::patch_sm::DaisyPatchSM']]], + ['codec_70',['CODEC',['../group__codec.html',1,'']]], + ['codec_5fak4556_2eh_71',['codec_ak4556.h',['../codec__ak4556_8h.html',1,'']]], + ['codec_5fpcm3060_2eh_72',['codec_pcm3060.h',['../codec__pcm3060_8h.html',1,'']]], + ['codec_5fwm8731_2eh_73',['codec_wm8731.h',['../codec__wm8731_8h.html',1,'']]], + ['color_74',['Color',['../classdaisy_1_1_neo_pixel.html#a9108cc1982e0238bcb4bc49a53b6fca3',1,'daisy::NeoPixel::Color(uint8_t r, uint8_t g, uint8_t b)'],['../classdaisy_1_1_neo_pixel.html#acd72cdae401cc660cbedde6c0a641504',1,'daisy::NeoPixel::Color(uint8_t r, uint8_t g, uint8_t b, uint8_t w)'],['../classdaisy_1_1_color.html#a6b1f926235cab78e9d4cb75e86c4c2ee',1,'daisy::Color::Color()'],['../classdaisy_1_1_color.html',1,'daisy::Color']]], + ['color_2eh_75',['color.h',['../color_8h.html',1,'']]], + ['color_5fmode_76',['color_mode',['../structdaisy_1_1_apds9960_1_1_config.html#a1f83a8dbf530eac100a9630a7c07e2c1',1,'daisy::Apds9960::Config']]], + ['color_5forder_77',['color_order',['../structdaisy_1_1_dot_star_1_1_config.html#af5587a07223398f34ac700e4f23baf1f',1,'daisy::DotStar::Config']]], + ['colordataready_78',['ColorDataReady',['../classdaisy_1_1_apds9960.html#a7639be829aba496cf74e64464f4da1ce',1,'daisy::Apds9960']]], + ['colororder_79',['ColorOrder',['../structdaisy_1_1_dot_star_1_1_config.html#ac0d32307f8104690f4a6d15dd1943ae9',1,'daisy::DotStar::Config']]], + ['concatresults_80',['ConcatResults',['../classdaisy_1_1_tlv493d.html#abe703bf1282ecef167a6b81ec33cfd3f',1,'daisy::Tlv493d']]], + ['config_81',['Config',['../structdaisy_1_1_neo_trellis_1_1_config.html#a68ff905c87df6e5c2fcf291c60669eb9',1,'daisy::NeoTrellis::Config::Config()'],['../structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a753b56324f7e8d5733a4b56b30779e46',1,'daisy::Apds9960I2CTransport::Config::Config()'],['../structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a60556e52b033f81831b4b8ec43b7d0d9',1,'daisy::NeoTrellisI2CTransport::Config::Config()'],['../structdaisy_1_1_neo_pixel_1_1_config.html#ab14b524c8d0d3379dbacaccfb8afacf0',1,'daisy::NeoPixel::Config::Config()'],['../structdaisy_1_1_neo_pixel_i2_c_transport_1_1_config.html#a46b9918d07bcf6755e0b18dbd3a74e9f',1,'daisy::NeoPixelI2CTransport::Config::Config()'],['../structdaisy_1_1_mpr121_1_1_config.html#aeb8034eea18b68c566a9f6112b52aaaf',1,'daisy::Mpr121::Config::Config()'],['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html#a10ce49ddd1d0f6d1459079bb8fa5eee3',1,'daisy::Mpr121I2CTransport::Config::Config()'],['../structdaisy_1_1_icm20948_1_1_config.html#a513808e37796cedb27b74217c9962c5b',1,'daisy::Icm20948::Config::Config()'],['../structdaisy_1_1_icm20948_spi_transport_1_1_config.html#a287d67a07a3ff84245f8a6a082024107',1,'daisy::Icm20948SpiTransport::Config::Config()'],['../structdaisy_1_1_icm20948_i2_c_transport_1_1_config.html#a9d32f02a442a3e7f951bbb5db79cbd19',1,'daisy::Icm20948I2CTransport::Config::Config()'],['../structdaisy_1_1_dps310_1_1_config.html#ad0c3f249b3990174f74ef33a2b2933c7',1,'daisy::Dps310::Config::Config()'],['../structdaisy_1_1_dps310_spi_transport_1_1_config.html#a2df00cd13d63eca35b0505c6e4ec7b94',1,'daisy::Dps310SpiTransport::Config::Config()'],['../structdaisy_1_1_dps310_i2_c_transport_1_1_config.html#a2754612c7105b68f86d6d4e5886b6e33',1,'daisy::Dps310I2CTransport::Config::Config()'],['../structdaisy_1_1_apds9960_1_1_config.html#a5db9e59b5a046396e2766351ed318ac3',1,'daisy::Apds9960::Config::Config()'],['../structdaisy_1_1_s_s_d130x_i2_c_transport_1_1_config.html#af233d5e1f3dd1d8445a183692e593cfe',1,'daisy::SSD130xI2CTransport::Config::Config()'],['../structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#af2f5c92ac23ceeed040e6f63d880cbaa',1,'daisy::SSD130x4WireSpiTransport::Config::Config()'],['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a0e6385a90de1a3e4ffaa4023b3d9a83b',1,'daisy::SSD130x4WireSoftSpiTransport::Config::Config()'],['../structdaisy_1_1_tlv493d_i2_c_transport_1_1_config.html#a40838aea9f3e1677c74ff98a759cf464',1,'daisy::Tlv493dI2CTransport::Config::Config()'],['../structdaisy_1_1_tlv493d_1_1_config.html#a1fb7d86703e4032e8d33a9a1c74aa835',1,'daisy::Tlv493d::Config::Config()'],['../structdaisy_1_1_audio_handle_1_1_config.html#a2543a29b73eb254e003f33502d88e991',1,'daisy::AudioHandle::Config::Config()'],['../structdaisy_1_1_midi_uart_transport_1_1_config.html#acf3aaf63941621f4dc93aa42026293bf',1,'daisy::MidiUartTransport::Config::Config()'],['../structdaisy_1_1_u_s_b_host_handle_1_1_config.html#af5880d86c7ad0a0a9161c5e72ff88b0c',1,'daisy::USBHostHandle::Config::Config()'],['../structdaisy_1_1_midi_usb_transport_1_1_config.html#acb8a68dec27a0685a753252e0974fd83',1,'daisy::MidiUsbTransport::Config::Config()'],['../structdaisy_1_1_g_p_i_o_1_1_config.html#a94050e7a224dc7620891e53c597fa32a',1,'daisy::GPIO::Config::Config()'],['../structdaisy_1_1_spi_handle_1_1_config.html#ac8f7dcc5214fc0b910e7755deac5e5f5',1,'daisy::SpiHandle::Config::Config()'],['../structdaisy_1_1_timer_handle_1_1_config.html#ab16930ef8452a8b0dc78ff46918a94a5',1,'daisy::TimerHandle::Config::Config()'],['../structdaisy_1_1_uart_handler_1_1_config.html#a8fb7fc98d0066fa010457bbe092d434b',1,'daisy::UartHandler::Config::Config()'],['../structdaisy_1_1_apds9960_1_1_config.html',1,'daisy::Apds9960< Transport >::Config'],['../structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html',1,'daisy::Apds9960I2CTransport::Config'],['../structdaisy_1_1_audio_handle_1_1_config.html',1,'daisy::AudioHandle::Config'],['../structdaisy_1_1_dac_handle_1_1_config.html',1,'daisy::DacHandle::Config'],['../structdaisy_1_1_dot_star_1_1_config.html',1,'daisy::DotStar< Transport >::Config'],['../structdaisy_1_1_dot_star_spi_transport_1_1_config.html',1,'daisy::DotStarSpiTransport::Config'],['../structdaisy_1_1_dps310_1_1_config.html',1,'daisy::Dps310< Transport >::Config'],['../structdaisy_1_1_dps310_i2_c_transport_1_1_config.html',1,'daisy::Dps310I2CTransport::Config'],['../structdaisy_1_1_dps310_spi_transport_1_1_config.html',1,'daisy::Dps310SpiTransport::Config'],['../structdaisy_1_1_fat_f_s_interface_1_1_config.html',1,'daisy::FatFSInterface::Config'],['../structdaisy_1_1_g_p_i_o_1_1_config.html',1,'daisy::GPIO::Config'],['../structdaisy_1_1_i2_c_handle_1_1_config.html',1,'daisy::I2CHandle::Config'],['../structdaisy_1_1_icm20948_1_1_config.html',1,'daisy::Icm20948< Transport >::Config'],['../structdaisy_1_1_icm20948_i2_c_transport_1_1_config.html',1,'daisy::Icm20948I2CTransport::Config'],['../structdaisy_1_1_icm20948_spi_transport_1_1_config.html',1,'daisy::Icm20948SpiTransport::Config'],['../structdaisy_1_1_lcd_h_d44780_1_1_config.html',1,'daisy::LcdHD44780::Config'],['../structdaisy_1_1_m_a_x11300_driver_1_1_config.html',1,'daisy::MAX11300Driver< Transport, num_devices >::Config'],['../structdaisy_1_1_m_a_x11300_multi_slave_spi_transport_1_1_config.html',1,'daisy::MAX11300MultiSlaveSpiTransport::Config< numDevices >'],['../structdaisy_1_1_mcp23017_transport_1_1_config.html',1,'daisy::Mcp23017Transport::Config'],['../structdaisy_1_1_mcp23_x17_1_1_config.html',1,'daisy::Mcp23X17< Transport >::Config'],['../structdaisy_1_1_midi_handler_1_1_config.html',1,'daisy::MidiHandler< Transport >::Config'],['../structdaisy_1_1_midi_uart_transport_1_1_config.html',1,'daisy::MidiUartTransport::Config'],['../structdaisy_1_1_midi_usb_transport_1_1_config.html',1,'daisy::MidiUsbTransport::Config'],['../structdaisy_1_1_mpr121_1_1_config.html',1,'daisy::Mpr121< Transport >::Config'],['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html',1,'daisy::Mpr121I2CTransport::Config'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html',1,'daisy::MultiSlaveSpiHandle::Config'],['../structdaisy_1_1_neo_pixel_1_1_config.html',1,'daisy::NeoPixel< Transport >::Config'],['../structdaisy_1_1_neo_pixel_i2_c_transport_1_1_config.html',1,'daisy::NeoPixelI2CTransport::Config'],['../structdaisy_1_1_neo_trellis_1_1_config.html',1,'daisy::NeoTrellis< Transport >::Config'],['../structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html',1,'daisy::NeoTrellisI2CTransport::Config'],['../structdaisy_1_1_oled_display_1_1_config.html',1,'daisy::OledDisplay< DisplayDriver >::Config'],['../structdaisy_1_1_q_s_p_i_handle_1_1_config.html',1,'daisy::QSPIHandle::Config'],['../structdaisy_1_1_sai_handle_1_1_config.html',1,'daisy::SaiHandle::Config'],['../structdaisy_1_1_sdmmc_handler_1_1_config.html',1,'daisy::SdmmcHandler::Config'],['../structdaisy_1_1_shift_register4021_1_1_config.html',1,'daisy::ShiftRegister4021< num_daisychained, num_parallel >::Config'],['../structdaisy_1_1_spi_handle_1_1_config.html',1,'daisy::SpiHandle::Config'],['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html',1,'daisy::SSD130x4WireSoftSpiTransport::Config'],['../structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html',1,'daisy::SSD130x4WireSpiTransport::Config'],['../structdaisy_1_1_s_s_d130x_driver_1_1_config.html',1,'daisy::SSD130xDriver< width, height, Transport >::Config'],['../structdaisy_1_1_s_s_d130x_i2_c_transport_1_1_config.html',1,'daisy::SSD130xI2CTransport::Config'],['../structdaisy_1_1_system_1_1_config.html',1,'daisy::System::Config'],['../structdaisy_1_1_timer_handle_1_1_config.html',1,'daisy::TimerHandle::Config'],['../structdaisy_1_1_tlv493d_1_1_config.html',1,'daisy::Tlv493d< Transport >::Config'],['../structdaisy_1_1_tlv493d_i2_c_transport_1_1_config.html',1,'daisy::Tlv493dI2CTransport::Config'],['../structdaisy_1_1_uart_handler_1_1_config.html',1,'daisy::UartHandler::Config'],['../structdaisy_1_1_u_s_b_host_handle_1_1_config.html',1,'daisy::USBHostHandle::Config'],['../structdaisy_1_1_wav_writer_1_1_config.html',1,'daisy::WavWriter< transfer_size >::Config'],['../structdaisy_1_1_wm8731_1_1_config.html',1,'daisy::Wm8731::Config']]], + ['configure_82',['Configure',['../classdaisy_1_1_daisy_seed.html#a756338e5ffbd605a56930d1e634d30e6',1,'daisy::DaisySeed']]], + ['configurei2cmaster_83',['ConfigureI2CMaster',['../classdaisy_1_1_icm20948.html#a6f41a4c5e5086c914f8f84d64d3187e0',1,'daisy::Icm20948']]], + ['configurepinasanalogread_84',['ConfigurePinAsAnalogRead',['../classdaisy_1_1_m_a_x11300_driver.html#abe3dab29c45063128f219eaf407ec4f1',1,'daisy::MAX11300Driver']]], + ['configurepinasanalogwrite_85',['ConfigurePinAsAnalogWrite',['../classdaisy_1_1_m_a_x11300_driver.html#a05825f073bad504b2ecfe2b1a170b205',1,'daisy::MAX11300Driver']]], + ['configurepinasdigitalread_86',['ConfigurePinAsDigitalRead',['../classdaisy_1_1_m_a_x11300_driver.html#a23cec4b94e9b68ed3d5786e9070cb72f',1,'daisy::MAX11300Driver']]], + ['configurepinasdigitalwrite_87',['ConfigurePinAsDigitalWrite',['../classdaisy_1_1_m_a_x11300_driver.html#acb180999fb555be6e2c8cdd1c84dcaed',1,'daisy::MAX11300Driver']]], + ['configurepressure_88',['configurePressure',['../classdaisy_1_1_dps310.html#ab5920481cb5356c4662d9b5fb4e9af5f',1,'daisy::Dps310']]], + ['configuretemperature_89',['configureTemperature',['../classdaisy_1_1_dps310.html#ac833a082cdd31fb0e2bf5e342bbbc819',1,'daisy::Dps310']]], + ['connect_5fcallback_90',['connect_callback',['../structdaisy_1_1_u_s_b_host_handle_1_1_config.html#a6fc69f202495d06c0a0d20401b06fa93',1,'daisy::USBHostHandle::Config']]], + ['connectcallback_91',['ConnectCallback',['../classdaisy_1_1_u_s_b_host_handle.html#a271a5fe3869cae850c6422a964c8e005',1,'daisy::USBHostHandle']]], + ['contains_92',['Contains',['../classdaisy_1_1_f_i_f_o_base.html#a1497e2d60259ee224a6c7a9fe48bd35f',1,'daisy::FIFOBase::Contains()'],['../classdaisy_1_1_stack_base.html#ab6bfc4201969c59db5e5365200243d89',1,'daisy::StackBase::Contains()']]], + ['context_93',['context',['../structdaisy_1_1_abstract_menu_1_1_item_config.html#ae7c2d4b97bd035919b52d46bf9cb659e',1,'daisy::AbstractMenu::ItemConfig']]], + ['continue_94',['Continue',['../group__midi__events.html#gga3069be23e98a0299bbfa8f1759754d45a0938e387061dc2b77911c1a128b8ba02',1,'daisy']]], + ['control_5fknob_5fbottom_95',['CONTROL_KNOB_BOTTOM',['../classdaisy_1_1_daisy_legio.html#a1884bab39dcc854aaca65d18e9cecf24a6f013f54749a155c2de2933976e01f58',1,'daisy::DaisyLegio']]], + ['control_5fknob_5ftop_96',['CONTROL_KNOB_TOP',['../classdaisy_1_1_daisy_legio.html#a1884bab39dcc854aaca65d18e9cecf24a765c4b07fe8861cc2f562d794d031094',1,'daisy::DaisyLegio']]], + ['control_5flast_97',['CONTROL_LAST',['../classdaisy_1_1_daisy_legio.html#a1884bab39dcc854aaca65d18e9cecf24afa9eacbaf4dc3e8cdf31c988e19a3ae4',1,'daisy::DaisyLegio']]], + ['control_5fnumber_98',['control_number',['../structdaisy_1_1_control_change_event.html#ac69453ad29a6c7737dd0ca7608f145e3',1,'daisy::ControlChangeEvent']]], + ['control_5fpitch_99',['CONTROL_PITCH',['../classdaisy_1_1_daisy_legio.html#a1884bab39dcc854aaca65d18e9cecf24af616f422a130863786d902dfaf596c46',1,'daisy::DaisyLegio']]], + ['controlchange_100',['ControlChange',['../group__midi__events.html#ggaaf09bb687034c8776ca0c68ed3ed4179a0b1ada1624d07a8111c54257702313df',1,'daisy']]], + ['controlchangeevent_101',['ControlChangeEvent',['../structdaisy_1_1_control_change_event.html',1,'daisy']]], + ['controls_102',['controls',['../classdaisy_1_1_daisy_legio.html#aa94a8317fb80817f05bb327fdca00fdc',1,'daisy::DaisyLegio']]], + ['controls_103',['CONTROLS',['../group__controls.html',1,'']]], + ['controls_104',['controls',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a5e3f7228eab90a777ebd09267bfb9d0b',1,'daisy::patch_sm::DaisyPatchSM::controls'],['../classdaisy_1_1_daisy_patch.html#af2ad231a452402baa2df7a5fdbdf8a5b',1,'daisy::DaisyPatch::controls']]], + ['conversionspeed_105',['ConversionSpeed',['../structdaisy_1_1_adc_channel_config.html#ac61c5abf5459809448682b6862f21c09',1,'daisy::AdcChannelConfig']]], + ['copy_5f_106',['Copy_',['../classdaisy_1_1_fixed_cap_str_base.html#a875f48decd8b2614a029e35687ed0689',1,'daisy::FixedCapStrBase']]], + ['countequalto_107',['CountEqualTo',['../classdaisy_1_1_stack_base.html#af0433fae1f1755fd0346b669045ecf3d',1,'daisy::StackBase::CountEqualTo()'],['../classdaisy_1_1_f_i_f_o_base.html#ae2556c37fc0bb6229426b33125e5344c',1,'daisy::FIFOBase::CountEqualTo()']]], + ['counterdir_108',['CounterDir',['../structdaisy_1_1_timer_handle_1_1_config.html#a0dd9b7de7144428da36ab1e140081e7b',1,'daisy::TimerHandle::Config']]], + ['cpu_5ffreq_109',['cpu_freq',['../structdaisy_1_1_system_1_1_config.html#a09d69139177eac30a39e4df35154dce0',1,'daisy::System::Config']]], + ['cpuloadmeter_110',['CpuLoadMeter',['../classdaisy_1_1_cpu_load_meter.html#a8ecbda9afb469dd98f247a8a059e410f',1,'daisy::CpuLoadMeter::CpuLoadMeter()'],['../classdaisy_1_1_cpu_load_meter.html',1,'daisy::CpuLoadMeter']]], + ['cpuloadmeter_2eh_111',['CpuLoadMeter.h',['../_cpu_load_meter_8h.html',1,'']]], + ['csb_5fpin_5fstate_112',['csb_pin_state',['../structdaisy_1_1_wm8731_1_1_config.html#a6b83d4a8f2c0fc7a247d6071df07834b',1,'daisy::Wm8731::Config']]], + ['cstr_113',['Cstr',['../classdaisy_1_1_fixed_cap_str_base.html#acef622a408730be91ef386a6a2c86049',1,'daisy::FixedCapStrBase']]], + ['ctrl_114',['Ctrl',['../classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3',1,'daisy::DaisyPatch']]], + ['ctrl_2eh_115',['ctrl.h',['../ctrl_8h.html',1,'']]], + ['ctrl_5f1_116',['CTRL_1',['../classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3add5617d9d944ff9734f9f70ba6ef4559',1,'daisy::DaisyPatch']]], + ['ctrl_5f2_117',['CTRL_2',['../classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3a877a1afe40324da5847f486c32a1be93',1,'daisy::DaisyPatch']]], + ['ctrl_5f3_118',['CTRL_3',['../classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3a4ea357339c00d73927aaa0efe10b8a97',1,'daisy::DaisyPatch']]], + ['ctrl_5f4_119',['CTRL_4',['../classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3a97da9bc7e7650022b0109eba62759e5a',1,'daisy::DaisyPatch']]], + ['ctrl_5flast_120',['CTRL_LAST',['../classdaisy_1_1_daisy_patch.html#aefa3638dd587fe20c48bbdfba3cd72b3abd85d3626ac80d244f744f96df92b58a',1,'daisy::DaisyPatch']]], + ['cube_121',['cube',['../group__utility.html#ga6023030167cfeb8bb8e066f8ea455d80',1,'daisy_core.h']]], + ['cube_122',['CUBE',['../classdaisy_1_1_parameter.html#a2fcb1b7095721f0de77594aabb9594daacca2d40b7b85d8f2bd10262152aaca92',1,'daisy::Parameter']]], + ['currentx_123',['CurrentX',['../classdaisy_1_1_one_bit_graphics_display.html#ab877f769f2d9b9f70027beccd9173f50',1,'daisy::OneBitGraphicsDisplay']]], + ['currentx_5f_124',['currentX_',['../classdaisy_1_1_one_bit_graphics_display.html#ae837bd4e0ce7fe11655324303b3a7cfd',1,'daisy::OneBitGraphicsDisplay']]], + ['currenty_125',['CurrentY',['../classdaisy_1_1_one_bit_graphics_display.html#a9087b73bc0d35541ca2d017158d300d4',1,'daisy::OneBitGraphicsDisplay']]], + ['currenty_5f_126',['currentY_',['../classdaisy_1_1_one_bit_graphics_display.html#a1f0c60954f72c6d36d87902145db1fe8',1,'daisy::OneBitGraphicsDisplay']]], + ['cursor_5fblink_127',['cursor_blink',['../structdaisy_1_1_lcd_h_d44780_1_1_config.html#a954080878494e5c11fc00a14d7854b72',1,'daisy::LcdHD44780::Config']]], + ['cursor_5fon_128',['cursor_on',['../structdaisy_1_1_lcd_h_d44780_1_1_config.html#aa4a096ce1b70942784ce46fdd13a369c',1,'daisy::LcdHD44780::Config']]], + ['curve_129',['Curve',['../classdaisy_1_1_parameter.html#a2fcb1b7095721f0de77594aabb9594da',1,'daisy::Parameter']]], + ['customitem_130',['customItem',['../classdaisy_1_1_abstract_menu.html#a48039035e616d6ecf42cc15561544fadaaf1e66e73b1367e969e34cbeb5ced3a2',1,'daisy::AbstractMenu']]], + ['customitem_131',['CustomItem',['../classdaisy_1_1_abstract_menu_1_1_custom_item.html',1,'daisy::AbstractMenu']]], + ['cv_132',['cv',['../classdaisy_1_1_daisy_field.html#a65e6df0f4ecff75bf3156e3438de94a7',1,'daisy::DaisyField']]], + ['cv_5f1_133',['CV_1',['../classdaisy_1_1_daisy_field.html#a81c3bfd2fdf29ccc15bdd81355f1e3d0a36ee3f611c2dea3a995893896774da08',1,'daisy::DaisyField::CV_1'],['../namespacedaisy_1_1patch__sm.html#aaf24993b0ae9c0d2a0b96eecc664097ea359a36104c86f89525732c80c59ee085',1,'daisy::patch_sm::CV_1']]], + ['cv_5f2_134',['CV_2',['../classdaisy_1_1_daisy_field.html#a81c3bfd2fdf29ccc15bdd81355f1e3d0a3508ae751993a839eaee3db60e2c7075',1,'daisy::DaisyField::CV_2'],['../namespacedaisy_1_1patch__sm.html#aaf24993b0ae9c0d2a0b96eecc664097eaf2a7c79098776189ebe26a77b0abe227',1,'daisy::patch_sm::CV_2']]], + ['cv_5f3_135',['CV_3',['../namespacedaisy_1_1patch__sm.html#aaf24993b0ae9c0d2a0b96eecc664097ea864d9b235d708cae7f8c2a850682cff3',1,'daisy::patch_sm::CV_3'],['../classdaisy_1_1_daisy_field.html#a81c3bfd2fdf29ccc15bdd81355f1e3d0ab4b434e696a6a5dd2491caf2c05efeab',1,'daisy::DaisyField::CV_3']]], + ['cv_5f4_136',['CV_4',['../classdaisy_1_1_daisy_field.html#a81c3bfd2fdf29ccc15bdd81355f1e3d0affd7d203194664afb126f733f2930193',1,'daisy::DaisyField::CV_4'],['../namespacedaisy_1_1patch__sm.html#aaf24993b0ae9c0d2a0b96eecc664097ea9f728c19c5ca0ffcb092da7027a2df39',1,'daisy::patch_sm::CV_4']]], + ['cv_5f5_137',['CV_5',['../namespacedaisy_1_1patch__sm.html#aaf24993b0ae9c0d2a0b96eecc664097eabecd3b1bf7cc7deb27d9fb18bea9cb09',1,'daisy::patch_sm']]], + ['cv_5f6_138',['CV_6',['../namespacedaisy_1_1patch__sm.html#aaf24993b0ae9c0d2a0b96eecc664097ea4bcecbdf95a67dfd4f86d2f2f4089951',1,'daisy::patch_sm']]], + ['cv_5f7_139',['CV_7',['../namespacedaisy_1_1patch__sm.html#aaf24993b0ae9c0d2a0b96eecc664097ea4403935418dd47a6953d2274d85e30ec',1,'daisy::patch_sm']]], + ['cv_5f8_140',['CV_8',['../namespacedaisy_1_1patch__sm.html#aaf24993b0ae9c0d2a0b96eecc664097eaf05d539ab5cba030354066d1b19f04bf',1,'daisy::patch_sm']]], + ['cv_5flast_141',['CV_LAST',['../classdaisy_1_1_daisy_field.html#a81c3bfd2fdf29ccc15bdd81355f1e3d0ab3858c1a0f81cae5e7e1a48097110213',1,'daisy::DaisyField']]], + ['cv_5fout_5f1_142',['CV_OUT_1',['../namespacedaisy_1_1patch__sm.html#a6f4e30b5637415dee21e1eaa70ba91c5a0921e7033462937ecac4cd832e58705b',1,'daisy::patch_sm']]], + ['cv_5fout_5f2_143',['CV_OUT_2',['../namespacedaisy_1_1patch__sm.html#a6f4e30b5637415dee21e1eaa70ba91c5ae07a592c381dcace98fd893140f70032',1,'daisy::patch_sm']]], + ['cv_5fout_5fboth_144',['CV_OUT_BOTH',['../namespacedaisy_1_1patch__sm.html#a6f4e30b5637415dee21e1eaa70ba91c5a082a36ff6de6b88ccaa82a6083ba410d',1,'daisy::patch_sm']]], + ['cyan_145',['CYAN',['../classdaisy_1_1_color.html#af93d31d5fc63705c228bf9da407c9a40ae56104f12bd27867c6140cded63e1fad',1,'daisy::Color']]] ]; diff --git a/search/all_4.js b/search/all_4.js index d57b5e896..88fc9d022 100644 --- a/search/all_4.js +++ b/search/all_4.js @@ -67,7 +67,7 @@ var searchData= ['daisyversio_64',['DaisyVersio',['../classdaisy_1_1_daisy_versio.html',1,'daisy::DaisyVersio'],['../classdaisy_1_1_daisy_versio.html#a5cc92fc82054e1bb3c200a03cece4931',1,'daisy::DaisyVersio::DaisyVersio()']]], ['data_65',['data',['../structdaisy_1_1_shift_register4021_1_1_config.html#a72204442078e6c1cc46406ee69ca4c6b',1,'daisy::ShiftRegister4021::Config::data'],['../structdaisy_1_1_midi_event.html#acec5e71c5a91871bdeb46f6e39125670',1,'daisy::MidiEvent::data']]], ['data_66',['Data',['../classdaisy_1_1_fixed_cap_str_base.html#a15e64b7cf54b2b567ceb4a8fa56ef8d6',1,'daisy::FixedCapStrBase::Data() noexcept'],['../classdaisy_1_1_fixed_cap_str_base.html#a528afcc2d2132a7c53007ff8fba80d6d',1,'daisy::FixedCapStrBase::Data() const noexcept']]], - ['data_67',['data',['../structdaisy_1_1_system_exclusive_event.html#a784689ef707c6a80e2b90b7996887e9b',1,'daisy::SystemExclusiveEvent::data'],['../struct_font_def.html#a864722845b4def15a6c53bdc4e94a24a',1,'FontDef::data']]], + ['data_67',['data',['../structdaisy_1_1_system_exclusive_event.html#ab93fc459d6ccd356113d077f67e08109',1,'daisy::SystemExclusiveEvent::data'],['../struct_font_def.html#a864722845b4def15a6c53bdc4e94a24a',1,'FontDef::data']]], ['data_5fpin_68',['data_pin',['../structdaisy_1_1_dot_star_spi_transport_1_1_config.html#a5d4de04e658aeb9c6c8a77223ae49776',1,'daisy::DotStarSpiTransport::Config']]], ['datasize_69',['datasize',['../structdaisy_1_1_spi_handle_1_1_config.html#af67ea87634b7b76240fb970ca98f5f2f',1,'daisy::SpiHandle::Config::datasize'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#af0d046026cab26489faeda2d49aaff16',1,'daisy::MultiSlaveSpiHandle::Config::datasize']]], ['dc_70',['dc',['../structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a0e71fcc1289ae82c2ea9cad6413d21f5',1,'daisy::SSD130x4WireSpiTransport::Config::dc'],['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a9518cb4063728948abcd2e59b878692a',1,'daisy::SSD130x4WireSoftSpiTransport::Config::dc']]], @@ -94,7 +94,7 @@ var searchData= ['device_5flast_91',['DEVICE_LAST',['../structdaisy_1_1_q_s_p_i_handle_1_1_config.html#a0723bf91a7658cc79e54a28a030472e6a6cbb2034856e63698d9c52055b12b4fb',1,'daisy::QSPIHandle::Config']]], ['dir_92',['dir',['../structdaisy_1_1_timer_handle_1_1_config.html#a431b23e53eedab70c3582535ebb866a2',1,'daisy::TimerHandle::Config']]], ['direction_93',['direction',['../structdaisy_1_1_spi_handle_1_1_config.html#aec8328c5e3c8d37b4748937a4296b364',1,'daisy::SpiHandle::Config']]], - ['direction_94',['Direction',['../structdaisy_1_1_spi_handle_1_1_config.html#a1f417015e7ac05b0a67c1a2d9d9079fc',1,'daisy::SpiHandle::Config::Direction'],['../structdaisy_1_1_sai_handle_1_1_config.html#a80ffb7d40b82652f1550e8cf6ca56f81',1,'daisy::SaiHandle::Config::Direction'],['../classdaisy_1_1_i2_c_handle.html#a8f815f7a77948286f0fa0065a1f7c54c',1,'daisy::I2CHandle::Direction']]], + ['direction_94',['Direction',['../structdaisy_1_1_sai_handle_1_1_config.html#a80ffb7d40b82652f1550e8cf6ca56f81',1,'daisy::SaiHandle::Config::Direction'],['../classdaisy_1_1_i2_c_handle.html#a8f815f7a77948286f0fa0065a1f7c54c',1,'daisy::I2CHandle::Direction'],['../structdaisy_1_1_spi_handle_1_1_config.html#a1f417015e7ac05b0a67c1a2d9d9079fc',1,'daisy::SpiHandle::Config::Direction']]], ['direction_95',['direction',['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#a0450bf0421f871419b530a641062a98c',1,'daisy::MultiSlaveSpiHandle::Config']]], ['disabled_96',['DISABLED',['../classdaisy_1_1_dac_handle.html#a30248a4615012854c7271b510ba7803ca055c1a591abb0e8cd86dc969727bcc0b',1,'daisy::DacHandle']]], ['disablepin_97',['DisablePin',['../classdaisy_1_1_m_a_x11300_driver.html#ade8b77085dd9256664bdc9a1f314eaf2',1,'daisy::MAX11300Driver']]], @@ -108,174 +108,176 @@ var searchData= ['dma_5fbuffer_5fmem_5fsection_105',['DMA_BUFFER_MEM_SECTION',['../group__utility.html#ga42cc36a89607437fe4bc26d3f7d57043',1,'daisy_core.h']]], ['dmabuffer_106',['DmaBuffer',['../structdaisy_1_1_m_a_x11300_types_1_1_dma_buffer.html',1,'daisy::MAX11300Types::DmaBuffer'],['../classdaisy_1_1_led_driver_pca9685.html#abc90ef63251f238d16cdd2c6e7a6ed39',1,'daisy::LedDriverPca9685::DmaBuffer']]], ['dmadirection_107',['DmaDirection',['../classdaisy_1_1_spi_handle.html#aa7c484882faf187c7c4153db7cf5e4da',1,'daisy::SpiHandle::DmaDirection'],['../classdaisy_1_1_uart_handler.html#adbdfbf1dfaab99cf76ac7ca36d22cf00',1,'daisy::UartHandler::DmaDirection']]], - ['dmareceive_108',['DmaReceive',['../classdaisy_1_1_uart_handler.html#afd959cfbc7efbc2a0357185da61a4ba6',1,'daisy::UartHandler::DmaReceive()'],['../classdaisy_1_1_spi_handle.html#a31e8c1a9d346d0bed9de92cdeeaef792',1,'daisy::SpiHandle::DmaReceive()'],['../classdaisy_1_1_multi_slave_spi_handle.html#acf833858186cd740fc66a2124a323999',1,'daisy::MultiSlaveSpiHandle::DmaReceive()']]], - ['dmareceivefifo_109',['DmaReceiveFifo',['../classdaisy_1_1_uart_handler.html#a07c27d8f78518caed8bc2485986b456a',1,'daisy::UartHandler']]], - ['dmatransmit_110',['DmaTransmit',['../classdaisy_1_1_spi_handle.html#a196ed2de11f4a57996e3be5f427d7a12',1,'daisy::SpiHandle::DmaTransmit()'],['../classdaisy_1_1_multi_slave_spi_handle.html#af1cbbafeed04cf3683921eb34176603a',1,'daisy::MultiSlaveSpiHandle::DmaTransmit()'],['../classdaisy_1_1_uart_handler.html#a4565d3868c0d92e6955da3416c309cad',1,'daisy::UartHandler::DmaTransmit()']]], - ['dmatransmitandreceive_111',['DmaTransmitAndReceive',['../classdaisy_1_1_multi_slave_spi_handle.html#af4a6d59338d72c69b9f65e79d3333b50',1,'daisy::MultiSlaveSpiHandle::DmaTransmitAndReceive()'],['../classdaisy_1_1_spi_handle.html#a335f8b3b3535880dd1b31eb413ca76c2',1,'daisy::SpiHandle::DmaTransmitAndReceive()']]], - ['dotstar_112',['DotStar',['../classdaisy_1_1_dot_star.html',1,'daisy::DotStar< Transport >'],['../classdaisy_1_1_dot_star.html#a791a6a1041ad7b5fec5b9d1ff04f383a',1,'daisy::DotStar::DotStar()']]], - ['dotstar_2eh_113',['dotstar.h',['../dotstar_8h.html',1,'']]], - ['dotstarspi_114',['DotStarSpi',['../namespacedaisy.html#a7ba187e71b574a77661d01e7fb0cbadd',1,'daisy']]], - ['dotstarspitransport_115',['DotStarSpiTransport',['../classdaisy_1_1_dot_star_spi_transport.html',1,'daisy']]], - ['down_116',['DOWN',['../structdaisy_1_1_timer_handle_1_1_config.html#a0dd9b7de7144428da36ab1e140081e7bac4e0e4e3118472beeb2ae75827450f1f',1,'daisy::TimerHandle::Config']]], - ['down_117',['down',['../group__ui.html#ggac734c565c1dc55cbf6b74ea942f40c1ca74e8333ad11685ff3bdae589c8f6e34d',1,'daisy']]], - ['downbttnid_118',['downBttnId',['../structdaisy_1_1_u_i_1_1_special_control_ids.html#a580ff38d8cdd65fd56a74152f07f019d',1,'daisy::UI::SpecialControlIds']]], - ['dps310_119',['Dps310',['../classdaisy_1_1_dps310.html',1,'daisy::Dps310< Transport >'],['../classdaisy_1_1_dps310.html#a517b62d6784cdd062c6f57966a4f9dc7',1,'daisy::Dps310::Dps310()']]], - ['dps310_2eh_120',['dps310.h',['../dps310_8h.html',1,'']]], - ['dps310_5f128hz_121',['DPS310_128HZ',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381a5da4bf27735a98663df39b9f5c35edc4',1,'daisy::Dps310']]], - ['dps310_5f128samples_122',['DPS310_128SAMPLES',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17acc9f31496ea41e9c03190f5b15465a5b',1,'daisy::Dps310']]], - ['dps310_5f16hz_123',['DPS310_16HZ',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381a1ccb59f08afbf003852ba7c2fd756687',1,'daisy::Dps310']]], - ['dps310_5f16samples_124',['DPS310_16SAMPLES',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17a62169a9325a57ff182b3ab5d1607a510',1,'daisy::Dps310']]], - ['dps310_5f1hz_125',['DPS310_1HZ',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381a86494e9dbd23b8f13b32039e5b88dd98',1,'daisy::Dps310']]], - ['dps310_5f1sample_126',['DPS310_1SAMPLE',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17a8b802f940f7962a69a3b1010878cd1ea',1,'daisy::Dps310']]], - ['dps310_5f2hz_127',['DPS310_2HZ',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381abef169c643b94be8f1ee236cc6bd200c',1,'daisy::Dps310']]], - ['dps310_5f2samples_128',['DPS310_2SAMPLES',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17a665356c830235c147db9b90874c6cb1e',1,'daisy::Dps310']]], - ['dps310_5f32hz_129',['DPS310_32HZ',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381a9e833515ea790b9eccc19d974069c6d8',1,'daisy::Dps310']]], - ['dps310_5f32samples_130',['DPS310_32SAMPLES',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17ad75bc854401a404ed27dde18cd430311',1,'daisy::Dps310']]], - ['dps310_5f4hz_131',['DPS310_4HZ',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381ac9b3d3c30c10d9681ad3f18934c065d8',1,'daisy::Dps310']]], - ['dps310_5f4samples_132',['DPS310_4SAMPLES',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17ad5161786dbd7302e43aa7e28eca59ce7',1,'daisy::Dps310']]], - ['dps310_5f64hz_133',['DPS310_64HZ',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381ad9e7b35a7e43ad546a1eceee260b9fcb',1,'daisy::Dps310']]], - ['dps310_5f64samples_134',['DPS310_64SAMPLES',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17aa3a98617ee0ce3834715dde80e3262da',1,'daisy::Dps310']]], - ['dps310_5f8hz_135',['DPS310_8HZ',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381a73f522f9a088ad2f685dee3f8e081ebf',1,'daisy::Dps310']]], - ['dps310_5f8samples_136',['DPS310_8SAMPLES',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17a975c008a842fe18b77ffcdcd55f2797b',1,'daisy::Dps310']]], - ['dps310_5fcfgreg_137',['DPS310_CFGREG',['../dps310_8h.html#aa49a45adf7e35db7ba1c17f162bcbf25',1,'dps310.h']]], - ['dps310_5fcont_5fpressure_138',['DPS310_CONT_PRESSURE',['../classdaisy_1_1_dps310.html#a2140b92d5832e70e88083ceb0741e17ea47cc6caa4b03c63c0bf53bc1ac1e0a61',1,'daisy::Dps310']]], - ['dps310_5fcont_5fprestemp_139',['DPS310_CONT_PRESTEMP',['../classdaisy_1_1_dps310.html#a2140b92d5832e70e88083ceb0741e17ea88796cdd91d6eb8e6c723931af744fa6',1,'daisy::Dps310']]], - ['dps310_5fcont_5ftemp_140',['DPS310_CONT_TEMP',['../classdaisy_1_1_dps310.html#a2140b92d5832e70e88083ceb0741e17ea0bd246fd48ed1b4a9771da22325a7a4b',1,'daisy::Dps310']]], - ['dps310_5fi2caddr_5fdefault_141',['DPS310_I2CADDR_DEFAULT',['../dps310_8h.html#a549c156d1ddabb6d76af22005be9eb68',1,'dps310.h']]], - ['dps310_5fidle_142',['DPS310_IDLE',['../classdaisy_1_1_dps310.html#a2140b92d5832e70e88083ceb0741e17ea3ccb6945bed5c0b28b890cb892dae29a',1,'daisy::Dps310']]], - ['dps310_5fmeascfg_143',['DPS310_MEASCFG',['../dps310_8h.html#ad58ef8a27661027d9b29d0c018ec5a41',1,'dps310.h']]], - ['dps310_5fmode_5ft_144',['dps310_mode_t',['../classdaisy_1_1_dps310.html#a2140b92d5832e70e88083ceb0741e17e',1,'daisy::Dps310']]], - ['dps310_5fone_5fpressure_145',['DPS310_ONE_PRESSURE',['../classdaisy_1_1_dps310.html#a2140b92d5832e70e88083ceb0741e17ea64b5771ad1bb9ae6e28c549dd508c79b',1,'daisy::Dps310']]], - ['dps310_5fone_5ftemperature_146',['DPS310_ONE_TEMPERATURE',['../classdaisy_1_1_dps310.html#a2140b92d5832e70e88083ceb0741e17eabf504d94b1c847cf9ada927717155daf',1,'daisy::Dps310']]], - ['dps310_5foversample_5ft_147',['dps310_oversample_t',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17',1,'daisy::Dps310']]], - ['dps310_5fprodrevid_148',['DPS310_PRODREVID',['../dps310_8h.html#a38e740a49cae541833da48bf4bf17289',1,'dps310.h']]], - ['dps310_5fprsb2_149',['DPS310_PRSB2',['../dps310_8h.html#a961570e68c108515549f8be206eab7a1',1,'dps310.h']]], - ['dps310_5fprscfg_150',['DPS310_PRSCFG',['../dps310_8h.html#aeebd8a048ab661e5d140f08395dc8243',1,'dps310.h']]], - ['dps310_5frate_5ft_151',['dps310_rate_t',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381',1,'daisy::Dps310']]], - ['dps310_5freset_152',['DPS310_RESET',['../dps310_8h.html#ae1544e373be2830c5cc7a9117fcba88d',1,'dps310.h']]], - ['dps310_5ftmpb2_153',['DPS310_TMPB2',['../dps310_8h.html#a5d29ab58aed1544dfdc29a090f0fd493',1,'dps310.h']]], - ['dps310_5ftmpcfg_154',['DPS310_TMPCFG',['../dps310_8h.html#ac0151332992d110b8290a196f55c49a7',1,'dps310.h']]], - ['dps310_5ftmpcoefsrce_155',['DPS310_TMPCOEFSRCE',['../dps310_8h.html#af0d62aa1d041109b3d762e8e5b50749b',1,'dps310.h']]], - ['dps310i2c_156',['Dps310I2C',['../namespacedaisy.html#a9994aaf433cf88a003f500778c3a8d0b',1,'daisy']]], - ['dps310i2ctransport_157',['Dps310I2CTransport',['../classdaisy_1_1_dps310_i2_c_transport.html',1,'daisy::Dps310I2CTransport'],['../classdaisy_1_1_dps310_i2_c_transport.html#ad434201c752796986a79ed38d5231c01',1,'daisy::Dps310I2CTransport::Dps310I2CTransport()']]], - ['dps310spi_158',['Dps310Spi',['../namespacedaisy.html#aab9c1174c76a1cc25300c457b1d6045a',1,'daisy']]], - ['dps310spitransport_159',['Dps310SpiTransport',['../classdaisy_1_1_dps310_spi_transport.html',1,'daisy::Dps310SpiTransport'],['../classdaisy_1_1_dps310_spi_transport.html#a0ed6dec0b7bac5e7de8861d4426d2c5a',1,'daisy::Dps310SpiTransport::Dps310SpiTransport()']]], - ['draw_160',['Draw',['../classdaisy_1_1_abstract_menu_1_1_custom_item.html#a9b437113b341524afddd8f48cc1a2dac',1,'daisy::AbstractMenu::CustomItem::Draw()'],['../classdaisy_1_1_ui_page.html#a0b2bcaa60892042f99196c68c0cf11c2',1,'daisy::UiPage::Draw()'],['../classdaisy_1_1_full_screen_item_menu.html#a1273d096262ab4e8be04be11afb7c6e3',1,'daisy::FullScreenItemMenu::Draw()']]], - ['drawarc_161',['DrawArc',['../classdaisy_1_1_one_bit_graphics_display_impl.html#ababfa95bfb894280f844982098852c77',1,'daisy::OneBitGraphicsDisplayImpl::DrawArc()'],['../classdaisy_1_1_one_bit_graphics_display.html#a7fa0b22cf59787a5685ead819c42d44f',1,'daisy::OneBitGraphicsDisplay::DrawArc(uint_fast8_t x, uint_fast8_t y, uint_fast8_t radius, int_fast16_t start_angle, int_fast16_t sweep, bool on)=0']]], - ['drawcircle_162',['DrawCircle',['../classdaisy_1_1_one_bit_graphics_display.html#afa0a3190d8bd5aba8d796b3bc8d929f8',1,'daisy::OneBitGraphicsDisplay']]], - ['drawline_163',['DrawLine',['../classdaisy_1_1_one_bit_graphics_display.html#a2f7d2cc00f9f9ffc7b0e96d1e4e56381',1,'daisy::OneBitGraphicsDisplay::DrawLine()'],['../classdaisy_1_1_one_bit_graphics_display_impl.html#ab66752cabb5f46c75d52584d4047bad8',1,'daisy::OneBitGraphicsDisplayImpl::DrawLine()']]], - ['drawpixel_164',['DrawPixel',['../classdaisy_1_1_one_bit_graphics_display.html#a5f639b7391b31f023ac1c81e4e0dc7d0',1,'daisy::OneBitGraphicsDisplay::DrawPixel()'],['../classdaisy_1_1_oled_display.html#acbb5c0e9f3c63b5892c4501361a9268d',1,'daisy::OledDisplay::DrawPixel()'],['../classdaisy_1_1_s_s_d130x_driver.html#aaf41184adec775e3b8340a1d6c2bf3e5',1,'daisy::SSD130xDriver::DrawPixel()']]], - ['drawrect_165',['DrawRect',['../classdaisy_1_1_one_bit_graphics_display.html#a19ffcc402319e8cbdbc009949d0a1965',1,'daisy::OneBitGraphicsDisplay::DrawRect(uint_fast8_t x1, uint_fast8_t y1, uint_fast8_t x2, uint_fast8_t y2, bool on, bool fill=false)=0'],['../classdaisy_1_1_one_bit_graphics_display.html#a787b511df887ba3fa5f466fddd3d1fc2',1,'daisy::OneBitGraphicsDisplay::DrawRect(const Rectangle &rect, bool on, bool fill=false)'],['../classdaisy_1_1_one_bit_graphics_display_impl.html#ad6ade3d06a68bb80d09fc0c894941a8c',1,'daisy::OneBitGraphicsDisplayImpl::DrawRect()']]], - ['driver_5fconfig_166',['driver_config',['../structdaisy_1_1_oled_display_1_1_config.html#aa05c5992eba4992253bd198cdcbc1589',1,'daisy::OledDisplay::Config']]], - ['dsp_167',['DSP',['../structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104ac0dc8df68b79ed124e7c649d1df58fb5',1,'daisy::Wm8731::Config']]], - ['dsy_5fadc_5fh_168',['DSY_ADC_H',['../adc_8h.html#ae71b691f919dda3553b12e9a9ff809aa',1,'adc.h']]], - ['dsy_5fadc_5fmax_5fchannels_169',['DSY_ADC_MAX_CHANNELS',['../adc_8h.html#aa2dfcffc9d37c895d64d45691f6f1389',1,'adc.h']]], - ['dsy_5fapds9960_5fh_170',['DSY_APDS9960_H',['../apds9960_8h.html#a7eb318d9825f4076e8eeb3f4415a66c1',1,'apds9960.h']]], - ['dsy_5faudio_5fh_171',['DSY_AUDIO_H',['../audio_8h.html#ab48d34affa7cd5399e7ec7904c623a33',1,'audio.h']]], - ['dsy_5fbsp_5fsd_5fdiskio_5fh_172',['DSY_BSP_SD_DISKIO_H',['../bsp__sd__diskio_8h.html#a0806d78b68200063870143277728d59b',1,'bsp_sd_diskio.h']]], - ['dsy_5fcodec_5fak4556_5fh_173',['DSY_CODEC_AK4556_H',['../codec__ak4556_8h.html#adc8294fd3d5cb20619380f160bbb4c2c',1,'codec_ak4556.h']]], - ['dsy_5fcodec_5fpcm3060_5fh_174',['DSY_CODEC_PCM3060_H',['../codec__pcm3060_8h.html#ab17786535a397bf2e8ef9c1c98c810e8',1,'codec_pcm3060.h']]], - ['dsy_5fcodec_5fwm8731_5fh_175',['DSY_CODEC_WM8731_H',['../codec__wm8731_8h.html#abf11dbab0b2f44528aacc2406852e41e',1,'codec_wm8731.h']]], - ['dsy_5fcolor_5fh_176',['DSY_COLOR_H',['../color_8h.html#af414ece6b80740c2d6cbbadd8f320f5c',1,'color.h']]], - ['dsy_5fcore_5fhw_5fh_177',['DSY_CORE_HW_H',['../daisy__core_8h.html#ac2cbb8913cec77897020473e8e0651f1',1,'daisy_core.h']]], - ['dsy_5fdac_5fh_178',['DSY_DAC_H',['../dac_8h.html#a3de961c1637e6c51eb074494b3c5026e',1,'dac.h']]], - ['dsy_5fdev_5fsr_5f595_5fh_179',['DSY_DEV_SR_595_H',['../sr__595_8h.html#ae413dfda9d368cf69f689d6c56d33678',1,'sr_595.h']]], - ['dsy_5fdisplay_5fh_180',['DSY_DISPLAY_H',['../display_8h.html#a40d099b915dc3da626b2669d4a037016',1,'display.h']]], - ['dsy_5fdma_5fclear_5fcache_5ffor_5fbuffer_181',['dsy_dma_clear_cache_for_buffer',['../group__system.html#ga925b1db78b1a6747c0eb2862d70040c8',1,'dma.h']]], - ['dsy_5fdma_5fdeinit_182',['dsy_dma_deinit',['../group__system.html#ga5033012e804fa9d1e86601106dd86360',1,'dma.h']]], - ['dsy_5fdma_5finit_183',['dsy_dma_init',['../group__system.html#ga7c62c5b1a9ac157a3752d6dfb296596c',1,'dma.h']]], - ['dsy_5fdma_5finvalidate_5fcache_5ffor_5fbuffer_184',['dsy_dma_invalidate_cache_for_buffer',['../group__system.html#ga0f0b7eae521c107641f2a43b6a9a3fae',1,'dma.h']]], - ['dsy_5fdotstar_5fh_185',['DSY_DOTSTAR_H',['../dotstar_8h.html#afcd58d76b20f548f1482e32f2ed59aa7',1,'dotstar.h']]], - ['dsy_5fdps310_5fh_186',['DSY_DPS310_H',['../dps310_8h.html#a637c00e1b82862344052f34e030eb3c9',1,'dps310.h']]], - ['dsy_5fencoder_5fh_187',['DSY_ENCODER_H',['../encoder_8h.html#a5df295b986ca7bbdfed9c6ebf7e8d94a',1,'encoder.h']]], - ['dsy_5ffield_5fbsp_5fh_188',['DSY_FIELD_BSP_H',['../daisy__field_8h.html#a6c94d8e73e658f273d8256025ce6eb74',1,'daisy_field.h']]], - ['dsy_5fgatein_5fh_189',['DSY_GATEIN_H',['../gatein_8h.html#a864269b4dc4e97b032dfdd9d49eb37f1',1,'gatein.h']]], - ['dsy_5fget_5funique_5fid_190',['dsy_get_unique_id',['../group__utility.html#ga26efbc690d82e90be4ce40161b9e30e5',1,'unique_id.h']]], - ['dsy_5fgpio_191',['dsy_gpio',['../structdsy__gpio.html',1,'']]], - ['dsy_5fgpio_5fdeinit_192',['dsy_gpio_deinit',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga2bba6d53e42b953af6b14a8f29f7807c',1,'gpio.h']]], - ['dsy_5fgpio_5fh_193',['DSY_GPIO_H',['../gpio_8h.html#a6b2452c29cb76513b1d8af8726820bce',1,'gpio.h']]], - ['dsy_5fgpio_5finit_194',['dsy_gpio_init',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga2fa512c8eff950e56bb2206955fc7483',1,'gpio.h']]], - ['dsy_5fgpio_5flast_195',['DSY_GPIO_LAST',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aad7bd66b3a1feeae2ff9934e05dae701d',1,'daisy_core.h']]], - ['dsy_5fgpio_5fmode_196',['dsy_gpio_mode',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga0edc3fcaf729346c5251d263d732666e',1,'gpio.h']]], - ['dsy_5fgpio_5fmode_5fanalog_197',['DSY_GPIO_MODE_ANALOG',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#gga0edc3fcaf729346c5251d263d732666ea50f28049a50a251240cf0717c62ac7ea',1,'gpio.h']]], - ['dsy_5fgpio_5fmode_5finput_198',['DSY_GPIO_MODE_INPUT',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#gga0edc3fcaf729346c5251d263d732666ea03c842726cd9fecfbf1ebe331202f388',1,'gpio.h']]], - ['dsy_5fgpio_5fmode_5flast_199',['DSY_GPIO_MODE_LAST',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#gga0edc3fcaf729346c5251d263d732666eab83a3195896b9bcf74413f5ecbfb93af',1,'gpio.h']]], - ['dsy_5fgpio_5fmode_5foutput_5fod_200',['DSY_GPIO_MODE_OUTPUT_OD',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#gga0edc3fcaf729346c5251d263d732666eaa9ca62b32be355941008039b525aa411',1,'gpio.h']]], - ['dsy_5fgpio_5fmode_5foutput_5fpp_201',['DSY_GPIO_MODE_OUTPUT_PP',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#gga0edc3fcaf729346c5251d263d732666eacc5f2bbce0cc1ad14d973f8480c7f377',1,'gpio.h']]], - ['dsy_5fgpio_5fnopull_202',['DSY_GPIO_NOPULL',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ggad8a85223f8dbcdf2c2cfc9302b3451b8ad6cca2addae616f7f27fee076f7ac9e0',1,'gpio.h']]], - ['dsy_5fgpio_5fpin_203',['dsy_gpio_pin',['../structdsy__gpio__pin.html',1,'']]], - ['dsy_5fgpio_5fport_204',['dsy_gpio_port',['../group__utility.html#ga3f3543798ae410cae1cade28cd0fc14a',1,'daisy_core.h']]], - ['dsy_5fgpio_5fpull_205',['dsy_gpio_pull',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#gad8a85223f8dbcdf2c2cfc9302b3451b8',1,'gpio.h']]], - ['dsy_5fgpio_5fpulldown_206',['DSY_GPIO_PULLDOWN',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ggad8a85223f8dbcdf2c2cfc9302b3451b8a49672a9c2d459cc04ea589a1abb75869',1,'gpio.h']]], - ['dsy_5fgpio_5fpullup_207',['DSY_GPIO_PULLUP',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ggad8a85223f8dbcdf2c2cfc9302b3451b8a6b1d919b0c83ad8baa21569215da91fd',1,'gpio.h']]], - ['dsy_5fgpio_5fread_208',['dsy_gpio_read',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga4ffc8add3d336195e96d111ed56531a9',1,'gpio.h']]], - ['dsy_5fgpio_5ftoggle_209',['dsy_gpio_toggle',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#gaea7ecc4e322ff749af69f9062a01093c',1,'gpio.h']]], - ['dsy_5fgpio_5fwrite_210',['dsy_gpio_write',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga05d023b1e65d46f0d1be16e38d3c6db5',1,'gpio.h']]], - ['dsy_5fgpioa_211',['DSY_GPIOA',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aaa225b0aab0961f0839d6ff8ea39af4a6',1,'daisy_core.h']]], - ['dsy_5fgpiob_212',['DSY_GPIOB',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa028071d4f5a510d6dc1f8fcdf781c38f',1,'daisy_core.h']]], - ['dsy_5fgpioc_213',['DSY_GPIOC',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aaa5890f5f6a99f51b66e24ef5cb398858',1,'daisy_core.h']]], - ['dsy_5fgpiod_214',['DSY_GPIOD',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa2eb525aedc5dda252650d97972c02967',1,'daisy_core.h']]], - ['dsy_5fgpioe_215',['DSY_GPIOE',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa96887f09952afaf07c0e767ece0fc0c2',1,'daisy_core.h']]], - ['dsy_5fgpiof_216',['DSY_GPIOF',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa69539a5f3c760b69f0c78afcf5699cc8',1,'daisy_core.h']]], - ['dsy_5fgpiog_217',['DSY_GPIOG',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa11d96326270225e04d7ea3153fd7343d',1,'daisy_core.h']]], - ['dsy_5fgpioh_218',['DSY_GPIOH',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa3b8b0747c1cf089fe715cbe7b4c4da5c',1,'daisy_core.h']]], - ['dsy_5fgpioi_219',['DSY_GPIOI',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa10fced70f53bdc64ed8dfeb7fabb1848',1,'daisy_core.h']]], - ['dsy_5fgpioj_220',['DSY_GPIOJ',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa13a0ac1b8ea35939c28ecf7a1d0b80a0',1,'daisy_core.h']]], - ['dsy_5fgpiok_221',['DSY_GPIOK',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa1c0c703541fdb07600ee67cd3e1e9c01',1,'daisy_core.h']]], - ['dsy_5fgpiox_222',['DSY_GPIOX',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa3d2ec507d8852037514f5ac644f20d5a',1,'daisy_core.h']]], - ['dsy_5fhal_5fmap_5fget_5fpin_223',['dsy_hal_map_get_pin',['../group__utility.html#gae70dbeafb6bd918ef4c8159f32fb3c4a',1,'hal_map.h']]], - ['dsy_5fhal_5fmap_5fget_5fport_224',['dsy_hal_map_get_port',['../group__utility.html#ga12684781d7d5d2b8353ab77bcaf951e9',1,'hal_map.h']]], - ['dsy_5fhal_5fmap_5fgpio_5fclk_5fenable_225',['dsy_hal_map_gpio_clk_enable',['../group__utility.html#ga1a26e0c495987189e763471d0d86f9a1',1,'hal_map.h']]], - ['dsy_5fhal_5fmap_5fh_226',['DSY_HAL_MAP_H',['../hal__map_8h.html#a46b126bda8960e864217f3031cb1f9d2',1,'hal_map.h']]], - ['dsy_5fhid_5fusb_5fh_227',['DSY_HID_USB_H',['../usb_8h.html#ab75cd7fb3578c30514f87c4a08d18ff4',1,'usb.h']]], - ['dsy_5fi2c_5fglobal_5finit_228',['dsy_i2c_global_init',['../namespacedaisy.html#ae0b19c7433a9a4943496c1223cd410b2',1,'daisy']]], - ['dsy_5ficm20948_5fh_229',['DSY_ICM20948_H',['../icm20948_8h.html#adc89e47d3f6f02b9fb1f4616a441d3c9',1,'icm20948.h']]], - ['dsy_5fknob_5fh_230',['DSY_KNOB_H',['../ctrl_8h.html#a41f1fb394caff4d050058ad3ea36900c',1,'ctrl.h']]], - ['dsy_5flcd_5fhd44780_5fh_231',['DSY_LCD_HD44780_H',['../lcd__hd44780_8h.html#a850b9bc1ba2360f9edfdfb122c93c24b',1,'lcd_hd44780.h']]], - ['dsy_5fled_5fh_232',['DSY_LED_H',['../led_8h.html#a791eda55b9e09c8eba409e19125d7743',1,'led.h']]], - ['dsy_5fmax11300_5fh_233',['DSY_MAX11300_H',['../max11300_8h.html#ab9dfd45f397163e28f9d664a18940756',1,'max11300.h']]], - ['dsy_5fmidi_5fh_234',['DSY_MIDI_H',['../midi_8h.html#a1e52176e4f92572132c9ea700e70ad9d',1,'midi.h']]], - ['dsy_5fmpr121_5fh_235',['DSY_MPR121_H',['../mpr121_8h.html#aaea9014025c29eab9f6db770fa6b33d8',1,'mpr121.h']]], - ['dsy_5fneo_5fpixel_5fh_236',['DSY_NEO_PIXEL_H',['../neopixel_8h.html#acb7c87d0d6d2f577c2b03f732e8f9625',1,'neopixel.h']]], - ['dsy_5fneo_5ftrellis_5fh_237',['DSY_NEO_TRELLIS_H',['../neotrellis_8h.html#adb30115430182d1d82cac436e4df341c',1,'neotrellis.h']]], - ['dsy_5foled_5fdisplay_5fh_238',['DSY_OLED_DISPLAY_H',['../oled__display_8h.html#a17ac7515457b57899f133df8f905f485',1,'oled_display.h']]], - ['dsy_5foled_5ffonts_5fh_239',['DSY_OLED_FONTS_H',['../oled__fonts_8h.html#acd5a968545c0bd71b20fa678de249e0e',1,'oled_fonts.h']]], - ['dsy_5fpatch_5fbsp_5fh_240',['DSY_PATCH_BSP_H',['../daisy__patch_8h.html#ac77d9177808a2c9647cdfe9b306b63a6',1,'daisy_patch.h']]], - ['dsy_5fpetal_5fh_241',['DSY_PETAL_H',['../daisy__petal_8h.html#a00fb0ff0e4ad518d03b40bbd7ce25bae',1,'daisy_petal.h']]], - ['dsy_5fpin_242',['dsy_pin',['../group__utility.html#gad7373cbfc19efe2d0e1477997bcf3636',1,'daisy_core.h']]], - ['dsy_5fpin_5fcmp_243',['dsy_pin_cmp',['../group__utility.html#ga89ddc0dd121b51c448840b2c56b23d3d',1,'daisy_core.h']]], - ['dsy_5fpod_5fbsp_5fh_244',['DSY_POD_BSP_H',['../daisy__pod_8h.html#a304b33982f5bbc5eae87a498f159299f',1,'daisy_pod.h']]], - ['dsy_5fqspi_245',['DSY_QSPI',['../qspi_8h.html#ae6d4ba284e88afd6885030e4385eb7c7',1,'qspi.h']]], - ['dsy_5fqspi_5fbss_246',['DSY_QSPI_BSS',['../qspi_8h.html#a60e1f5f509302b4539a5153c90880d68',1,'qspi.h']]], - ['dsy_5fqspi_5fdata_247',['DSY_QSPI_DATA',['../qspi_8h.html#adf221bedb8997d5c1ae2b218a817d417',1,'qspi.h']]], - ['dsy_5fqspi_5ftext_248',['DSY_QSPI_TEXT',['../qspi_8h.html#a3cccb1f07e68606c30c396e4344b2a22',1,'qspi.h']]], - ['dsy_5frgb_5fled_5fh_249',['DSY_RGB_LED_H',['../rgb__led_8h.html#a0a7587c33027dddf5cba9430263876a0',1,'rgb_led.h']]], - ['dsy_5fringbuffer_5fh_250',['DSY_RINGBUFFER_H',['../ringbuffer_8h.html#a34eee6c4d4db12db17fd2036cc3c7d3b',1,'ringbuffer.h']]], - ['dsy_5fsai_5fh_251',['DSY_SAI_H',['../sai_8h.html#a7f3786a46694133b154eca4c53cf0be4',1,'sai.h']]], - ['dsy_5fsd_5fcardinfotypedef_252',['DSY_SD_CardInfoTypeDef',['../struct_d_s_y___s_d___card_info_type_def.html',1,'']]], - ['dsy_5fsd_5fdiskio_5fh_253',['DSY_SD_DISKIO_H',['../sd__diskio_8h.html#a95a56d32055604724b4d8649669d04d0',1,'sd_diskio.h']]], - ['dsy_5fsdmmc_5fh_254',['DSY_SDMMC_H',['../sdmmc_8h.html#a3cc3409b86d5c9046cce9bf27d88bcc3',1,'sdmmc.h']]], - ['dsy_5fsdram_5fbss_255',['DSY_SDRAM_BSS',['../group__sdram.html#gaf0d907706b8822fa9d7dafcd174806fe',1,'sdram.h']]], - ['dsy_5fsdram_5fdata_256',['DSY_SDRAM_DATA',['../group__sdram.html#ga0831abc67d320a781d1eb0ed4dc98671',1,'sdram.h']]], - ['dsy_5fseed_5fh_257',['DSY_SEED_H',['../daisy__seed_8h.html#aa67c132c8b8f311867d70b4343aadba6',1,'daisy_seed.h']]], - ['dsy_5fspi_5fglobal_5finit_258',['dsy_spi_global_init',['../group__serial.html#ga6d59bd4c60c6568d42ded1cbad96d8fd',1,'daisy']]], - ['dsy_5fspi_5fh_259',['DSY_SPI_H',['../spi_8h.html#afb09f1033e41308643e77a556c6f593c',1,'spi.h']]], - ['dsy_5fspi_5fmultislave_5fh_260',['DSY_SPI_MULTISLAVE_H',['../spi_multislave_8h.html#a5ba744eaa49250dad9ceded21604855f',1,'spiMultislave.h']]], - ['dsy_5fswitch_5fh_261',['DSY_SWITCH_H',['../switch_8h.html#af3c6f18531c9746e156c796b6d7da082',1,'switch.h']]], - ['dsy_5ftim_5fh_262',['DSY_TIM_H',['../tim_8h.html#a092becb63941b910af5079ed3275eb11',1,'tim.h']]], - ['dsy_5ftlv493d_5fh_263',['DSY_TLV493D_H',['../tlv493d_8h.html#a8e57b025cf76217b1e2ba4121fbf7748',1,'tlv493d.h']]], - ['dsy_5fuart_5fglobal_5finit_264',['dsy_uart_global_init',['../group__serial.html#ga37eef21ee03ddb02591affa3708f28b1',1,'daisy']]], - ['dsy_5fuart_5fh_265',['DSY_UART_H',['../uart_8h.html#ae95c00416c4aaa293e062b8aaed79909',1,'uart.h']]], - ['dsy_5futil_5funique_5fid_5fh_266',['DSY_UTIL_UNIQUE_ID_H',['../unique__id_8h.html#a2140d8723a0ad66047c1b04bb4319b0b',1,'unique_id.h']]], - ['dsy_5fversion_5fh_267',['DSY_VERSION_H',['../version_8h.html#a9234b53a2198452930f6bd1cc113c49e',1,'version.h']]], - ['dsy_5fwav_5fformat_5fh_268',['DSY_WAV_FORMAT_H',['../wav__format_8h.html#ab9fb82face7890d0821ddc69926311ea',1,'wav_format.h']]], - ['dsy_5fwavplayer_5fh_269',['DSY_WAVPLAYER_H',['../wavplayer_8h.html#ad384c43689d53e261578fa4dcb9dd00a',1,'wavplayer.h']]], - ['dtcm_5fmem_5fsection_270',['DTCM_MEM_SECTION',['../group__utility.html#gaaf0e22ddbb535a314fdf30825b0620a2',1,'daisy_core.h']]], - ['dtcmram_271',['DTCMRAM',['../classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669acb5c0093d737a657615442a569fad20a',1,'daisy::System']]], - ['dual_5finout_5ffast_5fread_5fcmd_272',['DUAL_INOUT_FAST_READ_CMD',['../group__flash.html#ga7d41c156bf7cc13fbefd7ab284cc37e6',1,'DUAL_INOUT_FAST_READ_CMD: flash_IS25LP064A.h'],['../group__flash.html#ga7d41c156bf7cc13fbefd7ab284cc37e6',1,'DUAL_INOUT_FAST_READ_CMD: flash_IS25LP080D.h']]], - ['dual_5finout_5ffast_5fread_5fdtr_5fcmd_273',['DUAL_INOUT_FAST_READ_DTR_CMD',['../group__flash.html#gaa2a65174af18ed764c6d1c3db1c849b6',1,'DUAL_INOUT_FAST_READ_DTR_CMD: flash_IS25LP064A.h'],['../group__flash.html#gaa2a65174af18ed764c6d1c3db1c849b6',1,'DUAL_INOUT_FAST_READ_DTR_CMD: flash_IS25LP080D.h']]], - ['dual_5fout_5ffast_5fread_5fcmd_274',['DUAL_OUT_FAST_READ_CMD',['../group__flash.html#ga73c9113cb75af5967e7293a9b796fc32',1,'DUAL_OUT_FAST_READ_CMD: flash_IS25LP064A.h'],['../group__flash.html#ga73c9113cb75af5967e7293a9b796fc32',1,'DUAL_OUT_FAST_READ_CMD: flash_IS25LP080D.h']]], - ['max11300types_275',['MAX11300Types',['../namespacedaisy_1_1_m_a_x11300_types.html',1,'daisy']]], - ['patch_5fsm_276',['patch_sm',['../namespacedaisy_1_1patch__sm.html',1,'daisy']]], - ['seed_277',['seed',['../namespacedaisy_1_1seed.html',1,'daisy']]] + ['dmalistenstart_108',['DmaListenStart',['../classdaisy_1_1_uart_handler.html#a4dc3e5abdb8cd03db80eaef2b2332876',1,'daisy::UartHandler']]], + ['dmalistenstop_109',['DmaListenStop',['../classdaisy_1_1_uart_handler.html#ab46af079191f4ece2c046ac9b9eded4a',1,'daisy::UartHandler']]], + ['dmareceive_110',['DmaReceive',['../classdaisy_1_1_spi_handle.html#a31e8c1a9d346d0bed9de92cdeeaef792',1,'daisy::SpiHandle::DmaReceive()'],['../classdaisy_1_1_multi_slave_spi_handle.html#acf833858186cd740fc66a2124a323999',1,'daisy::MultiSlaveSpiHandle::DmaReceive()'],['../classdaisy_1_1_uart_handler.html#afd959cfbc7efbc2a0357185da61a4ba6',1,'daisy::UartHandler::DmaReceive()']]], + ['dmatransmit_111',['DmaTransmit',['../classdaisy_1_1_spi_handle.html#a196ed2de11f4a57996e3be5f427d7a12',1,'daisy::SpiHandle::DmaTransmit()'],['../classdaisy_1_1_multi_slave_spi_handle.html#af1cbbafeed04cf3683921eb34176603a',1,'daisy::MultiSlaveSpiHandle::DmaTransmit()'],['../classdaisy_1_1_uart_handler.html#a4565d3868c0d92e6955da3416c309cad',1,'daisy::UartHandler::DmaTransmit()']]], + ['dmatransmitandreceive_112',['DmaTransmitAndReceive',['../classdaisy_1_1_multi_slave_spi_handle.html#af4a6d59338d72c69b9f65e79d3333b50',1,'daisy::MultiSlaveSpiHandle::DmaTransmitAndReceive()'],['../classdaisy_1_1_spi_handle.html#a335f8b3b3535880dd1b31eb413ca76c2',1,'daisy::SpiHandle::DmaTransmitAndReceive()']]], + ['dotstar_113',['DotStar',['../classdaisy_1_1_dot_star.html',1,'daisy::DotStar< Transport >'],['../classdaisy_1_1_dot_star.html#a791a6a1041ad7b5fec5b9d1ff04f383a',1,'daisy::DotStar::DotStar()']]], + ['dotstar_2eh_114',['dotstar.h',['../dotstar_8h.html',1,'']]], + ['dotstarspi_115',['DotStarSpi',['../namespacedaisy.html#a7ba187e71b574a77661d01e7fb0cbadd',1,'daisy']]], + ['dotstarspitransport_116',['DotStarSpiTransport',['../classdaisy_1_1_dot_star_spi_transport.html',1,'daisy']]], + ['down_117',['DOWN',['../structdaisy_1_1_timer_handle_1_1_config.html#a0dd9b7de7144428da36ab1e140081e7bac4e0e4e3118472beeb2ae75827450f1f',1,'daisy::TimerHandle::Config']]], + ['down_118',['down',['../group__ui.html#ggac734c565c1dc55cbf6b74ea942f40c1ca74e8333ad11685ff3bdae589c8f6e34d',1,'daisy']]], + ['downbttnid_119',['downBttnId',['../structdaisy_1_1_u_i_1_1_special_control_ids.html#a580ff38d8cdd65fd56a74152f07f019d',1,'daisy::UI::SpecialControlIds']]], + ['dps310_120',['Dps310',['../classdaisy_1_1_dps310.html',1,'daisy::Dps310< Transport >'],['../classdaisy_1_1_dps310.html#a517b62d6784cdd062c6f57966a4f9dc7',1,'daisy::Dps310::Dps310()']]], + ['dps310_2eh_121',['dps310.h',['../dps310_8h.html',1,'']]], + ['dps310_5f128hz_122',['DPS310_128HZ',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381a5da4bf27735a98663df39b9f5c35edc4',1,'daisy::Dps310']]], + ['dps310_5f128samples_123',['DPS310_128SAMPLES',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17acc9f31496ea41e9c03190f5b15465a5b',1,'daisy::Dps310']]], + ['dps310_5f16hz_124',['DPS310_16HZ',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381a1ccb59f08afbf003852ba7c2fd756687',1,'daisy::Dps310']]], + ['dps310_5f16samples_125',['DPS310_16SAMPLES',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17a62169a9325a57ff182b3ab5d1607a510',1,'daisy::Dps310']]], + ['dps310_5f1hz_126',['DPS310_1HZ',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381a86494e9dbd23b8f13b32039e5b88dd98',1,'daisy::Dps310']]], + ['dps310_5f1sample_127',['DPS310_1SAMPLE',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17a8b802f940f7962a69a3b1010878cd1ea',1,'daisy::Dps310']]], + ['dps310_5f2hz_128',['DPS310_2HZ',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381abef169c643b94be8f1ee236cc6bd200c',1,'daisy::Dps310']]], + ['dps310_5f2samples_129',['DPS310_2SAMPLES',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17a665356c830235c147db9b90874c6cb1e',1,'daisy::Dps310']]], + ['dps310_5f32hz_130',['DPS310_32HZ',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381a9e833515ea790b9eccc19d974069c6d8',1,'daisy::Dps310']]], + ['dps310_5f32samples_131',['DPS310_32SAMPLES',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17ad75bc854401a404ed27dde18cd430311',1,'daisy::Dps310']]], + ['dps310_5f4hz_132',['DPS310_4HZ',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381ac9b3d3c30c10d9681ad3f18934c065d8',1,'daisy::Dps310']]], + ['dps310_5f4samples_133',['DPS310_4SAMPLES',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17ad5161786dbd7302e43aa7e28eca59ce7',1,'daisy::Dps310']]], + ['dps310_5f64hz_134',['DPS310_64HZ',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381ad9e7b35a7e43ad546a1eceee260b9fcb',1,'daisy::Dps310']]], + ['dps310_5f64samples_135',['DPS310_64SAMPLES',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17aa3a98617ee0ce3834715dde80e3262da',1,'daisy::Dps310']]], + ['dps310_5f8hz_136',['DPS310_8HZ',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381a73f522f9a088ad2f685dee3f8e081ebf',1,'daisy::Dps310']]], + ['dps310_5f8samples_137',['DPS310_8SAMPLES',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17a975c008a842fe18b77ffcdcd55f2797b',1,'daisy::Dps310']]], + ['dps310_5fcfgreg_138',['DPS310_CFGREG',['../dps310_8h.html#aa49a45adf7e35db7ba1c17f162bcbf25',1,'dps310.h']]], + ['dps310_5fcont_5fpressure_139',['DPS310_CONT_PRESSURE',['../classdaisy_1_1_dps310.html#a2140b92d5832e70e88083ceb0741e17ea47cc6caa4b03c63c0bf53bc1ac1e0a61',1,'daisy::Dps310']]], + ['dps310_5fcont_5fprestemp_140',['DPS310_CONT_PRESTEMP',['../classdaisy_1_1_dps310.html#a2140b92d5832e70e88083ceb0741e17ea88796cdd91d6eb8e6c723931af744fa6',1,'daisy::Dps310']]], + ['dps310_5fcont_5ftemp_141',['DPS310_CONT_TEMP',['../classdaisy_1_1_dps310.html#a2140b92d5832e70e88083ceb0741e17ea0bd246fd48ed1b4a9771da22325a7a4b',1,'daisy::Dps310']]], + ['dps310_5fi2caddr_5fdefault_142',['DPS310_I2CADDR_DEFAULT',['../dps310_8h.html#a549c156d1ddabb6d76af22005be9eb68',1,'dps310.h']]], + ['dps310_5fidle_143',['DPS310_IDLE',['../classdaisy_1_1_dps310.html#a2140b92d5832e70e88083ceb0741e17ea3ccb6945bed5c0b28b890cb892dae29a',1,'daisy::Dps310']]], + ['dps310_5fmeascfg_144',['DPS310_MEASCFG',['../dps310_8h.html#ad58ef8a27661027d9b29d0c018ec5a41',1,'dps310.h']]], + ['dps310_5fmode_5ft_145',['dps310_mode_t',['../classdaisy_1_1_dps310.html#a2140b92d5832e70e88083ceb0741e17e',1,'daisy::Dps310']]], + ['dps310_5fone_5fpressure_146',['DPS310_ONE_PRESSURE',['../classdaisy_1_1_dps310.html#a2140b92d5832e70e88083ceb0741e17ea64b5771ad1bb9ae6e28c549dd508c79b',1,'daisy::Dps310']]], + ['dps310_5fone_5ftemperature_147',['DPS310_ONE_TEMPERATURE',['../classdaisy_1_1_dps310.html#a2140b92d5832e70e88083ceb0741e17eabf504d94b1c847cf9ada927717155daf',1,'daisy::Dps310']]], + ['dps310_5foversample_5ft_148',['dps310_oversample_t',['../classdaisy_1_1_dps310.html#a53754a137aae86b8069d6f1ffa54ee17',1,'daisy::Dps310']]], + ['dps310_5fprodrevid_149',['DPS310_PRODREVID',['../dps310_8h.html#a38e740a49cae541833da48bf4bf17289',1,'dps310.h']]], + ['dps310_5fprsb2_150',['DPS310_PRSB2',['../dps310_8h.html#a961570e68c108515549f8be206eab7a1',1,'dps310.h']]], + ['dps310_5fprscfg_151',['DPS310_PRSCFG',['../dps310_8h.html#aeebd8a048ab661e5d140f08395dc8243',1,'dps310.h']]], + ['dps310_5frate_5ft_152',['dps310_rate_t',['../classdaisy_1_1_dps310.html#aad02aa9cfdd2f5b8bad883448537e381',1,'daisy::Dps310']]], + ['dps310_5freset_153',['DPS310_RESET',['../dps310_8h.html#ae1544e373be2830c5cc7a9117fcba88d',1,'dps310.h']]], + ['dps310_5ftmpb2_154',['DPS310_TMPB2',['../dps310_8h.html#a5d29ab58aed1544dfdc29a090f0fd493',1,'dps310.h']]], + ['dps310_5ftmpcfg_155',['DPS310_TMPCFG',['../dps310_8h.html#ac0151332992d110b8290a196f55c49a7',1,'dps310.h']]], + ['dps310_5ftmpcoefsrce_156',['DPS310_TMPCOEFSRCE',['../dps310_8h.html#af0d62aa1d041109b3d762e8e5b50749b',1,'dps310.h']]], + ['dps310i2c_157',['Dps310I2C',['../namespacedaisy.html#a9994aaf433cf88a003f500778c3a8d0b',1,'daisy']]], + ['dps310i2ctransport_158',['Dps310I2CTransport',['../classdaisy_1_1_dps310_i2_c_transport.html',1,'daisy::Dps310I2CTransport'],['../classdaisy_1_1_dps310_i2_c_transport.html#ad434201c752796986a79ed38d5231c01',1,'daisy::Dps310I2CTransport::Dps310I2CTransport()']]], + ['dps310spi_159',['Dps310Spi',['../namespacedaisy.html#aab9c1174c76a1cc25300c457b1d6045a',1,'daisy']]], + ['dps310spitransport_160',['Dps310SpiTransport',['../classdaisy_1_1_dps310_spi_transport.html',1,'daisy::Dps310SpiTransport'],['../classdaisy_1_1_dps310_spi_transport.html#a0ed6dec0b7bac5e7de8861d4426d2c5a',1,'daisy::Dps310SpiTransport::Dps310SpiTransport()']]], + ['draw_161',['Draw',['../classdaisy_1_1_abstract_menu_1_1_custom_item.html#a9b437113b341524afddd8f48cc1a2dac',1,'daisy::AbstractMenu::CustomItem::Draw()'],['../classdaisy_1_1_ui_page.html#a0b2bcaa60892042f99196c68c0cf11c2',1,'daisy::UiPage::Draw()'],['../classdaisy_1_1_full_screen_item_menu.html#a1273d096262ab4e8be04be11afb7c6e3',1,'daisy::FullScreenItemMenu::Draw()']]], + ['drawarc_162',['DrawArc',['../classdaisy_1_1_one_bit_graphics_display_impl.html#ababfa95bfb894280f844982098852c77',1,'daisy::OneBitGraphicsDisplayImpl::DrawArc()'],['../classdaisy_1_1_one_bit_graphics_display.html#a7fa0b22cf59787a5685ead819c42d44f',1,'daisy::OneBitGraphicsDisplay::DrawArc(uint_fast8_t x, uint_fast8_t y, uint_fast8_t radius, int_fast16_t start_angle, int_fast16_t sweep, bool on)=0']]], + ['drawcircle_163',['DrawCircle',['../classdaisy_1_1_one_bit_graphics_display.html#afa0a3190d8bd5aba8d796b3bc8d929f8',1,'daisy::OneBitGraphicsDisplay']]], + ['drawline_164',['DrawLine',['../classdaisy_1_1_one_bit_graphics_display.html#a2f7d2cc00f9f9ffc7b0e96d1e4e56381',1,'daisy::OneBitGraphicsDisplay::DrawLine()'],['../classdaisy_1_1_one_bit_graphics_display_impl.html#ab66752cabb5f46c75d52584d4047bad8',1,'daisy::OneBitGraphicsDisplayImpl::DrawLine()']]], + ['drawpixel_165',['DrawPixel',['../classdaisy_1_1_one_bit_graphics_display.html#a5f639b7391b31f023ac1c81e4e0dc7d0',1,'daisy::OneBitGraphicsDisplay::DrawPixel()'],['../classdaisy_1_1_oled_display.html#acbb5c0e9f3c63b5892c4501361a9268d',1,'daisy::OledDisplay::DrawPixel()'],['../classdaisy_1_1_s_s_d130x_driver.html#aaf41184adec775e3b8340a1d6c2bf3e5',1,'daisy::SSD130xDriver::DrawPixel()']]], + ['drawrect_166',['DrawRect',['../classdaisy_1_1_one_bit_graphics_display.html#a19ffcc402319e8cbdbc009949d0a1965',1,'daisy::OneBitGraphicsDisplay::DrawRect(uint_fast8_t x1, uint_fast8_t y1, uint_fast8_t x2, uint_fast8_t y2, bool on, bool fill=false)=0'],['../classdaisy_1_1_one_bit_graphics_display.html#a787b511df887ba3fa5f466fddd3d1fc2',1,'daisy::OneBitGraphicsDisplay::DrawRect(const Rectangle &rect, bool on, bool fill=false)'],['../classdaisy_1_1_one_bit_graphics_display_impl.html#ad6ade3d06a68bb80d09fc0c894941a8c',1,'daisy::OneBitGraphicsDisplayImpl::DrawRect()']]], + ['driver_5fconfig_167',['driver_config',['../structdaisy_1_1_oled_display_1_1_config.html#aa05c5992eba4992253bd198cdcbc1589',1,'daisy::OledDisplay::Config']]], + ['dsp_168',['DSP',['../structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104ac0dc8df68b79ed124e7c649d1df58fb5',1,'daisy::Wm8731::Config']]], + ['dsy_5fadc_5fh_169',['DSY_ADC_H',['../adc_8h.html#ae71b691f919dda3553b12e9a9ff809aa',1,'adc.h']]], + ['dsy_5fadc_5fmax_5fchannels_170',['DSY_ADC_MAX_CHANNELS',['../adc_8h.html#aa2dfcffc9d37c895d64d45691f6f1389',1,'adc.h']]], + ['dsy_5fapds9960_5fh_171',['DSY_APDS9960_H',['../apds9960_8h.html#a7eb318d9825f4076e8eeb3f4415a66c1',1,'apds9960.h']]], + ['dsy_5faudio_5fh_172',['DSY_AUDIO_H',['../audio_8h.html#ab48d34affa7cd5399e7ec7904c623a33',1,'audio.h']]], + ['dsy_5fbsp_5fsd_5fdiskio_5fh_173',['DSY_BSP_SD_DISKIO_H',['../bsp__sd__diskio_8h.html#a0806d78b68200063870143277728d59b',1,'bsp_sd_diskio.h']]], + ['dsy_5fcodec_5fak4556_5fh_174',['DSY_CODEC_AK4556_H',['../codec__ak4556_8h.html#adc8294fd3d5cb20619380f160bbb4c2c',1,'codec_ak4556.h']]], + ['dsy_5fcodec_5fpcm3060_5fh_175',['DSY_CODEC_PCM3060_H',['../codec__pcm3060_8h.html#ab17786535a397bf2e8ef9c1c98c810e8',1,'codec_pcm3060.h']]], + ['dsy_5fcodec_5fwm8731_5fh_176',['DSY_CODEC_WM8731_H',['../codec__wm8731_8h.html#abf11dbab0b2f44528aacc2406852e41e',1,'codec_wm8731.h']]], + ['dsy_5fcolor_5fh_177',['DSY_COLOR_H',['../color_8h.html#af414ece6b80740c2d6cbbadd8f320f5c',1,'color.h']]], + ['dsy_5fcore_5fhw_5fh_178',['DSY_CORE_HW_H',['../daisy__core_8h.html#ac2cbb8913cec77897020473e8e0651f1',1,'daisy_core.h']]], + ['dsy_5fdac_5fh_179',['DSY_DAC_H',['../dac_8h.html#a3de961c1637e6c51eb074494b3c5026e',1,'dac.h']]], + ['dsy_5fdev_5fsr_5f595_5fh_180',['DSY_DEV_SR_595_H',['../sr__595_8h.html#ae413dfda9d368cf69f689d6c56d33678',1,'sr_595.h']]], + ['dsy_5fdisplay_5fh_181',['DSY_DISPLAY_H',['../display_8h.html#a40d099b915dc3da626b2669d4a037016',1,'display.h']]], + ['dsy_5fdma_5fclear_5fcache_5ffor_5fbuffer_182',['dsy_dma_clear_cache_for_buffer',['../group__system.html#ga925b1db78b1a6747c0eb2862d70040c8',1,'dma.h']]], + ['dsy_5fdma_5fdeinit_183',['dsy_dma_deinit',['../group__system.html#ga5033012e804fa9d1e86601106dd86360',1,'dma.h']]], + ['dsy_5fdma_5finit_184',['dsy_dma_init',['../group__system.html#ga7c62c5b1a9ac157a3752d6dfb296596c',1,'dma.h']]], + ['dsy_5fdma_5finvalidate_5fcache_5ffor_5fbuffer_185',['dsy_dma_invalidate_cache_for_buffer',['../group__system.html#ga0f0b7eae521c107641f2a43b6a9a3fae',1,'dma.h']]], + ['dsy_5fdotstar_5fh_186',['DSY_DOTSTAR_H',['../dotstar_8h.html#afcd58d76b20f548f1482e32f2ed59aa7',1,'dotstar.h']]], + ['dsy_5fdps310_5fh_187',['DSY_DPS310_H',['../dps310_8h.html#a637c00e1b82862344052f34e030eb3c9',1,'dps310.h']]], + ['dsy_5fencoder_5fh_188',['DSY_ENCODER_H',['../encoder_8h.html#a5df295b986ca7bbdfed9c6ebf7e8d94a',1,'encoder.h']]], + ['dsy_5ffield_5fbsp_5fh_189',['DSY_FIELD_BSP_H',['../daisy__field_8h.html#a6c94d8e73e658f273d8256025ce6eb74',1,'daisy_field.h']]], + ['dsy_5fgatein_5fh_190',['DSY_GATEIN_H',['../gatein_8h.html#a864269b4dc4e97b032dfdd9d49eb37f1',1,'gatein.h']]], + ['dsy_5fget_5funique_5fid_191',['dsy_get_unique_id',['../group__utility.html#ga26efbc690d82e90be4ce40161b9e30e5',1,'unique_id.h']]], + ['dsy_5fgpio_192',['dsy_gpio',['../structdsy__gpio.html',1,'']]], + ['dsy_5fgpio_5fdeinit_193',['dsy_gpio_deinit',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga2bba6d53e42b953af6b14a8f29f7807c',1,'gpio.h']]], + ['dsy_5fgpio_5fh_194',['DSY_GPIO_H',['../gpio_8h.html#a6b2452c29cb76513b1d8af8726820bce',1,'gpio.h']]], + ['dsy_5fgpio_5finit_195',['dsy_gpio_init',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga2fa512c8eff950e56bb2206955fc7483',1,'gpio.h']]], + ['dsy_5fgpio_5flast_196',['DSY_GPIO_LAST',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aad7bd66b3a1feeae2ff9934e05dae701d',1,'daisy_core.h']]], + ['dsy_5fgpio_5fmode_197',['dsy_gpio_mode',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga0edc3fcaf729346c5251d263d732666e',1,'gpio.h']]], + ['dsy_5fgpio_5fmode_5fanalog_198',['DSY_GPIO_MODE_ANALOG',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#gga0edc3fcaf729346c5251d263d732666ea50f28049a50a251240cf0717c62ac7ea',1,'gpio.h']]], + ['dsy_5fgpio_5fmode_5finput_199',['DSY_GPIO_MODE_INPUT',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#gga0edc3fcaf729346c5251d263d732666ea03c842726cd9fecfbf1ebe331202f388',1,'gpio.h']]], + ['dsy_5fgpio_5fmode_5flast_200',['DSY_GPIO_MODE_LAST',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#gga0edc3fcaf729346c5251d263d732666eab83a3195896b9bcf74413f5ecbfb93af',1,'gpio.h']]], + ['dsy_5fgpio_5fmode_5foutput_5fod_201',['DSY_GPIO_MODE_OUTPUT_OD',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#gga0edc3fcaf729346c5251d263d732666eaa9ca62b32be355941008039b525aa411',1,'gpio.h']]], + ['dsy_5fgpio_5fmode_5foutput_5fpp_202',['DSY_GPIO_MODE_OUTPUT_PP',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#gga0edc3fcaf729346c5251d263d732666eacc5f2bbce0cc1ad14d973f8480c7f377',1,'gpio.h']]], + ['dsy_5fgpio_5fnopull_203',['DSY_GPIO_NOPULL',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ggad8a85223f8dbcdf2c2cfc9302b3451b8ad6cca2addae616f7f27fee076f7ac9e0',1,'gpio.h']]], + ['dsy_5fgpio_5fpin_204',['dsy_gpio_pin',['../structdsy__gpio__pin.html',1,'']]], + ['dsy_5fgpio_5fport_205',['dsy_gpio_port',['../group__utility.html#ga3f3543798ae410cae1cade28cd0fc14a',1,'daisy_core.h']]], + ['dsy_5fgpio_5fpull_206',['dsy_gpio_pull',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#gad8a85223f8dbcdf2c2cfc9302b3451b8',1,'gpio.h']]], + ['dsy_5fgpio_5fpulldown_207',['DSY_GPIO_PULLDOWN',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ggad8a85223f8dbcdf2c2cfc9302b3451b8a49672a9c2d459cc04ea589a1abb75869',1,'gpio.h']]], + ['dsy_5fgpio_5fpullup_208',['DSY_GPIO_PULLUP',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ggad8a85223f8dbcdf2c2cfc9302b3451b8a6b1d919b0c83ad8baa21569215da91fd',1,'gpio.h']]], + ['dsy_5fgpio_5fread_209',['dsy_gpio_read',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga4ffc8add3d336195e96d111ed56531a9',1,'gpio.h']]], + ['dsy_5fgpio_5ftoggle_210',['dsy_gpio_toggle',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#gaea7ecc4e322ff749af69f9062a01093c',1,'gpio.h']]], + ['dsy_5fgpio_5fwrite_211',['dsy_gpio_write',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga05d023b1e65d46f0d1be16e38d3c6db5',1,'gpio.h']]], + ['dsy_5fgpioa_212',['DSY_GPIOA',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aaa225b0aab0961f0839d6ff8ea39af4a6',1,'daisy_core.h']]], + ['dsy_5fgpiob_213',['DSY_GPIOB',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa028071d4f5a510d6dc1f8fcdf781c38f',1,'daisy_core.h']]], + ['dsy_5fgpioc_214',['DSY_GPIOC',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aaa5890f5f6a99f51b66e24ef5cb398858',1,'daisy_core.h']]], + ['dsy_5fgpiod_215',['DSY_GPIOD',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa2eb525aedc5dda252650d97972c02967',1,'daisy_core.h']]], + ['dsy_5fgpioe_216',['DSY_GPIOE',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa96887f09952afaf07c0e767ece0fc0c2',1,'daisy_core.h']]], + ['dsy_5fgpiof_217',['DSY_GPIOF',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa69539a5f3c760b69f0c78afcf5699cc8',1,'daisy_core.h']]], + ['dsy_5fgpiog_218',['DSY_GPIOG',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa11d96326270225e04d7ea3153fd7343d',1,'daisy_core.h']]], + ['dsy_5fgpioh_219',['DSY_GPIOH',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa3b8b0747c1cf089fe715cbe7b4c4da5c',1,'daisy_core.h']]], + ['dsy_5fgpioi_220',['DSY_GPIOI',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa10fced70f53bdc64ed8dfeb7fabb1848',1,'daisy_core.h']]], + ['dsy_5fgpioj_221',['DSY_GPIOJ',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa13a0ac1b8ea35939c28ecf7a1d0b80a0',1,'daisy_core.h']]], + ['dsy_5fgpiok_222',['DSY_GPIOK',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa1c0c703541fdb07600ee67cd3e1e9c01',1,'daisy_core.h']]], + ['dsy_5fgpiox_223',['DSY_GPIOX',['../group__utility.html#gga3f3543798ae410cae1cade28cd0fc14aa3d2ec507d8852037514f5ac644f20d5a',1,'daisy_core.h']]], + ['dsy_5fhal_5fmap_5fget_5fpin_224',['dsy_hal_map_get_pin',['../group__utility.html#gae70dbeafb6bd918ef4c8159f32fb3c4a',1,'hal_map.h']]], + ['dsy_5fhal_5fmap_5fget_5fport_225',['dsy_hal_map_get_port',['../group__utility.html#ga12684781d7d5d2b8353ab77bcaf951e9',1,'hal_map.h']]], + ['dsy_5fhal_5fmap_5fgpio_5fclk_5fenable_226',['dsy_hal_map_gpio_clk_enable',['../group__utility.html#ga1a26e0c495987189e763471d0d86f9a1',1,'hal_map.h']]], + ['dsy_5fhal_5fmap_5fh_227',['DSY_HAL_MAP_H',['../hal__map_8h.html#a46b126bda8960e864217f3031cb1f9d2',1,'hal_map.h']]], + ['dsy_5fhid_5fusb_5fh_228',['DSY_HID_USB_H',['../usb_8h.html#ab75cd7fb3578c30514f87c4a08d18ff4',1,'usb.h']]], + ['dsy_5fi2c_5fglobal_5finit_229',['dsy_i2c_global_init',['../namespacedaisy.html#ae0b19c7433a9a4943496c1223cd410b2',1,'daisy']]], + ['dsy_5ficm20948_5fh_230',['DSY_ICM20948_H',['../icm20948_8h.html#adc89e47d3f6f02b9fb1f4616a441d3c9',1,'icm20948.h']]], + ['dsy_5fknob_5fh_231',['DSY_KNOB_H',['../ctrl_8h.html#a41f1fb394caff4d050058ad3ea36900c',1,'ctrl.h']]], + ['dsy_5flcd_5fhd44780_5fh_232',['DSY_LCD_HD44780_H',['../lcd__hd44780_8h.html#a850b9bc1ba2360f9edfdfb122c93c24b',1,'lcd_hd44780.h']]], + ['dsy_5fled_5fh_233',['DSY_LED_H',['../led_8h.html#a791eda55b9e09c8eba409e19125d7743',1,'led.h']]], + ['dsy_5fmax11300_5fh_234',['DSY_MAX11300_H',['../max11300_8h.html#ab9dfd45f397163e28f9d664a18940756',1,'max11300.h']]], + ['dsy_5fmidi_5fh_235',['DSY_MIDI_H',['../midi_8h.html#a1e52176e4f92572132c9ea700e70ad9d',1,'midi.h']]], + ['dsy_5fmidi_5fparser_5fh_236',['DSY_MIDI_PARSER_H',['../midi__parser_8h.html#a162408cf7d1cf060cf5f7c1d5f31f7a2',1,'midi_parser.h']]], + ['dsy_5fmpr121_5fh_237',['DSY_MPR121_H',['../mpr121_8h.html#aaea9014025c29eab9f6db770fa6b33d8',1,'mpr121.h']]], + ['dsy_5fneo_5fpixel_5fh_238',['DSY_NEO_PIXEL_H',['../neopixel_8h.html#acb7c87d0d6d2f577c2b03f732e8f9625',1,'neopixel.h']]], + ['dsy_5fneo_5ftrellis_5fh_239',['DSY_NEO_TRELLIS_H',['../neotrellis_8h.html#adb30115430182d1d82cac436e4df341c',1,'neotrellis.h']]], + ['dsy_5foled_5fdisplay_5fh_240',['DSY_OLED_DISPLAY_H',['../oled__display_8h.html#a17ac7515457b57899f133df8f905f485',1,'oled_display.h']]], + ['dsy_5foled_5ffonts_5fh_241',['DSY_OLED_FONTS_H',['../oled__fonts_8h.html#acd5a968545c0bd71b20fa678de249e0e',1,'oled_fonts.h']]], + ['dsy_5fpatch_5fbsp_5fh_242',['DSY_PATCH_BSP_H',['../daisy__patch_8h.html#ac77d9177808a2c9647cdfe9b306b63a6',1,'daisy_patch.h']]], + ['dsy_5fpetal_5fh_243',['DSY_PETAL_H',['../daisy__petal_8h.html#a00fb0ff0e4ad518d03b40bbd7ce25bae',1,'daisy_petal.h']]], + ['dsy_5fpin_244',['dsy_pin',['../group__utility.html#gad7373cbfc19efe2d0e1477997bcf3636',1,'daisy_core.h']]], + ['dsy_5fpin_5fcmp_245',['dsy_pin_cmp',['../group__utility.html#ga89ddc0dd121b51c448840b2c56b23d3d',1,'daisy_core.h']]], + ['dsy_5fpod_5fbsp_5fh_246',['DSY_POD_BSP_H',['../daisy__pod_8h.html#a304b33982f5bbc5eae87a498f159299f',1,'daisy_pod.h']]], + ['dsy_5fqspi_247',['DSY_QSPI',['../qspi_8h.html#ae6d4ba284e88afd6885030e4385eb7c7',1,'qspi.h']]], + ['dsy_5fqspi_5fbss_248',['DSY_QSPI_BSS',['../qspi_8h.html#a60e1f5f509302b4539a5153c90880d68',1,'qspi.h']]], + ['dsy_5fqspi_5fdata_249',['DSY_QSPI_DATA',['../qspi_8h.html#adf221bedb8997d5c1ae2b218a817d417',1,'qspi.h']]], + ['dsy_5fqspi_5ftext_250',['DSY_QSPI_TEXT',['../qspi_8h.html#a3cccb1f07e68606c30c396e4344b2a22',1,'qspi.h']]], + ['dsy_5frgb_5fled_5fh_251',['DSY_RGB_LED_H',['../rgb__led_8h.html#a0a7587c33027dddf5cba9430263876a0',1,'rgb_led.h']]], + ['dsy_5fringbuffer_5fh_252',['DSY_RINGBUFFER_H',['../ringbuffer_8h.html#a34eee6c4d4db12db17fd2036cc3c7d3b',1,'ringbuffer.h']]], + ['dsy_5fsai_5fh_253',['DSY_SAI_H',['../sai_8h.html#a7f3786a46694133b154eca4c53cf0be4',1,'sai.h']]], + ['dsy_5fsd_5fcardinfotypedef_254',['DSY_SD_CardInfoTypeDef',['../struct_d_s_y___s_d___card_info_type_def.html',1,'']]], + ['dsy_5fsd_5fdiskio_5fh_255',['DSY_SD_DISKIO_H',['../sd__diskio_8h.html#a95a56d32055604724b4d8649669d04d0',1,'sd_diskio.h']]], + ['dsy_5fsdmmc_5fh_256',['DSY_SDMMC_H',['../sdmmc_8h.html#a3cc3409b86d5c9046cce9bf27d88bcc3',1,'sdmmc.h']]], + ['dsy_5fsdram_5fbss_257',['DSY_SDRAM_BSS',['../group__sdram.html#gaf0d907706b8822fa9d7dafcd174806fe',1,'sdram.h']]], + ['dsy_5fsdram_5fdata_258',['DSY_SDRAM_DATA',['../group__sdram.html#ga0831abc67d320a781d1eb0ed4dc98671',1,'sdram.h']]], + ['dsy_5fseed_5fh_259',['DSY_SEED_H',['../daisy__seed_8h.html#aa67c132c8b8f311867d70b4343aadba6',1,'daisy_seed.h']]], + ['dsy_5fspi_5fglobal_5finit_260',['dsy_spi_global_init',['../group__serial.html#ga6d59bd4c60c6568d42ded1cbad96d8fd',1,'daisy']]], + ['dsy_5fspi_5fh_261',['DSY_SPI_H',['../spi_8h.html#afb09f1033e41308643e77a556c6f593c',1,'spi.h']]], + ['dsy_5fspi_5fmultislave_5fh_262',['DSY_SPI_MULTISLAVE_H',['../spi_multislave_8h.html#a5ba744eaa49250dad9ceded21604855f',1,'spiMultislave.h']]], + ['dsy_5fswitch_5fh_263',['DSY_SWITCH_H',['../switch_8h.html#af3c6f18531c9746e156c796b6d7da082',1,'switch.h']]], + ['dsy_5ftim_5fh_264',['DSY_TIM_H',['../tim_8h.html#a092becb63941b910af5079ed3275eb11',1,'tim.h']]], + ['dsy_5ftlv493d_5fh_265',['DSY_TLV493D_H',['../tlv493d_8h.html#a8e57b025cf76217b1e2ba4121fbf7748',1,'tlv493d.h']]], + ['dsy_5fuart_5fglobal_5finit_266',['dsy_uart_global_init',['../group__serial.html#ga37eef21ee03ddb02591affa3708f28b1',1,'daisy']]], + ['dsy_5fuart_5fh_267',['DSY_UART_H',['../uart_8h.html#ae95c00416c4aaa293e062b8aaed79909',1,'uart.h']]], + ['dsy_5futil_5funique_5fid_5fh_268',['DSY_UTIL_UNIQUE_ID_H',['../unique__id_8h.html#a2140d8723a0ad66047c1b04bb4319b0b',1,'unique_id.h']]], + ['dsy_5fversion_5fh_269',['DSY_VERSION_H',['../version_8h.html#a9234b53a2198452930f6bd1cc113c49e',1,'version.h']]], + ['dsy_5fwav_5fformat_5fh_270',['DSY_WAV_FORMAT_H',['../wav__format_8h.html#ab9fb82face7890d0821ddc69926311ea',1,'wav_format.h']]], + ['dsy_5fwavplayer_5fh_271',['DSY_WAVPLAYER_H',['../wavplayer_8h.html#ad384c43689d53e261578fa4dcb9dd00a',1,'wavplayer.h']]], + ['dtcm_5fmem_5fsection_272',['DTCM_MEM_SECTION',['../group__utility.html#gaaf0e22ddbb535a314fdf30825b0620a2',1,'daisy_core.h']]], + ['dtcmram_273',['DTCMRAM',['../classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669acb5c0093d737a657615442a569fad20a',1,'daisy::System']]], + ['dual_5finout_5ffast_5fread_5fcmd_274',['DUAL_INOUT_FAST_READ_CMD',['../group__flash.html#ga7d41c156bf7cc13fbefd7ab284cc37e6',1,'DUAL_INOUT_FAST_READ_CMD: flash_IS25LP064A.h'],['../group__flash.html#ga7d41c156bf7cc13fbefd7ab284cc37e6',1,'DUAL_INOUT_FAST_READ_CMD: flash_IS25LP080D.h']]], + ['dual_5finout_5ffast_5fread_5fdtr_5fcmd_275',['DUAL_INOUT_FAST_READ_DTR_CMD',['../group__flash.html#gaa2a65174af18ed764c6d1c3db1c849b6',1,'DUAL_INOUT_FAST_READ_DTR_CMD: flash_IS25LP064A.h'],['../group__flash.html#gaa2a65174af18ed764c6d1c3db1c849b6',1,'DUAL_INOUT_FAST_READ_DTR_CMD: flash_IS25LP080D.h']]], + ['dual_5fout_5ffast_5fread_5fcmd_276',['DUAL_OUT_FAST_READ_CMD',['../group__flash.html#ga73c9113cb75af5967e7293a9b796fc32',1,'DUAL_OUT_FAST_READ_CMD: flash_IS25LP064A.h'],['../group__flash.html#ga73c9113cb75af5967e7293a9b796fc32',1,'DUAL_OUT_FAST_READ_CMD: flash_IS25LP080D.h']]], + ['max11300types_277',['MAX11300Types',['../namespacedaisy_1_1_m_a_x11300_types.html',1,'daisy']]], + ['patch_5fsm_278',['patch_sm',['../namespacedaisy_1_1patch__sm.html',1,'daisy']]], + ['seed_279',['seed',['../namespacedaisy_1_1seed.html',1,'daisy']]] ]; diff --git a/search/all_6.js b/search/all_6.js index e8a67e3d8..755409c5a 100644 --- a/search/all_6.js +++ b/search/all_6.js @@ -14,10 +14,10 @@ var searchData= ['fail_11',['FAIL',['../classdaisy_1_1_u_s_b_host_handle.html#a52910b035d1149aebb0bef2054b20113ac2759effffc94bb9acc71d69fe3e8a1f',1,'daisy::USBHostHandle']]], ['falling_12',['FALLING',['../classdaisy_1_1_neo_trellis.html#a08d0cfd62e053922653a0b9e78ed29c0abfe713a40082eedd9c5f3a885974d254',1,'daisy::NeoTrellis']]], ['fallingedge_13',['FallingEdge',['../classdaisy_1_1_switch.html#ad41940a1ce698fd80fedb01ceaa240fa',1,'daisy::Switch::FallingEdge()'],['../classdaisy_1_1_encoder.html#aaf89f3fee67ab4866b08be0616bba978',1,'daisy::Encoder::FallingEdge()']]], - ['fast_14',['fast',['../structdaisy_1_1_tlv493d_1_1_access_mode__t.html#a8dac34f8a040726e0ec04759165cff8f',1,'daisy::Tlv493d::AccessMode_t']]], - ['fast_15',['FAST',['../classdaisy_1_1_sdmmc_handler.html#a78a654b5e915c05224fb64f0dfbe6bceadca6e617f6fb54033deb311e7e7c93cc',1,'daisy::SdmmcHandler']]], - ['fast_5fread_5fcmd_16',['FAST_READ_CMD',['../group__flash.html#gad86cd5806516fb265953d7131f4d09ad',1,'FAST_READ_CMD: flash_IS25LP080D.h'],['../group__flash.html#gad86cd5806516fb265953d7131f4d09ad',1,'FAST_READ_CMD: flash_IS25LP064A.h']]], - ['fast_5fread_5fdtr_5fcmd_17',['FAST_READ_DTR_CMD',['../group__flash.html#ga78e830179f6aee3be8ccc8bd5d2aff67',1,'FAST_READ_DTR_CMD: flash_IS25LP080D.h'],['../group__flash.html#ga78e830179f6aee3be8ccc8bd5d2aff67',1,'FAST_READ_DTR_CMD: flash_IS25LP064A.h']]], + ['fast_14',['FAST',['../classdaisy_1_1_sdmmc_handler.html#a78a654b5e915c05224fb64f0dfbe6bceadca6e617f6fb54033deb311e7e7c93cc',1,'daisy::SdmmcHandler']]], + ['fast_15',['fast',['../structdaisy_1_1_tlv493d_1_1_access_mode__t.html#a8dac34f8a040726e0ec04759165cff8f',1,'daisy::Tlv493d::AccessMode_t']]], + ['fast_5fread_5fcmd_16',['FAST_READ_CMD',['../group__flash.html#gad86cd5806516fb265953d7131f4d09ad',1,'FAST_READ_CMD: flash_IS25LP064A.h'],['../group__flash.html#gad86cd5806516fb265953d7131f4d09ad',1,'FAST_READ_CMD: flash_IS25LP080D.h']]], + ['fast_5fread_5fdtr_5fcmd_17',['FAST_READ_DTR_CMD',['../group__flash.html#ga78e830179f6aee3be8ccc8bd5d2aff67',1,'FAST_READ_DTR_CMD: flash_IS25LP064A.h'],['../group__flash.html#ga78e830179f6aee3be8ccc8bd5d2aff67',1,'FAST_READ_DTR_CMD: flash_IS25LP080D.h']]], ['fastmode_18',['FASTMODE',['../classdaisy_1_1_tlv493d.html#a4e647f10dce86b4de6e6f0d641e2ede6a4bed5f55fbe620410869919603eb60c4',1,'daisy::Tlv493d']]], ['fatfs_2eh_19',['fatfs.h',['../fatfs_8h.html',1,'']]], ['fatfsinterface_20',['FatFSInterface',['../classdaisy_1_1_fat_f_s_interface.html',1,'daisy::FatFSInterface'],['../classdaisy_1_1_fat_f_s_interface.html#a1673c32a1bcafae738bac24ecd84ce6f',1,'daisy::FatFSInterface::FatFSInterface()']]], @@ -29,55 +29,56 @@ var searchData= ['ffconf_2eh_26',['ffconf.h',['../ffconf_8h.html',1,'']]], ['fifo_27',['FIFO',['../classdaisy_1_1_f_i_f_o.html',1,'daisy::FIFO< T, capacity >'],['../classdaisy_1_1_f_i_f_o.html#af02fdb6d56dae4ef8de0ba8f1ff3bc71',1,'daisy::FIFO::FIFO()'],['../classdaisy_1_1_f_i_f_o.html#a428593b46aa68e2287a7745c862964e3',1,'daisy::FIFO::FIFO(std::initializer_list< T > valuesToAdd)'],['../classdaisy_1_1_f_i_f_o.html#ab02e80bb6e315895eb2861600f32d244',1,'daisy::FIFO::FIFO(const FIFO< T, otherCapacity > &other)']]], ['fifo_2eh_28',['FIFO.h',['../_f_i_f_o_8h.html',1,'']]], - ['fifo_3c_20event_2c_20256_20_3e_29',['FIFO< Event, 256 >',['../classdaisy_1_1_f_i_f_o.html',1,'daisy']]], - ['fifobase_30',['FIFOBase',['../classdaisy_1_1_f_i_f_o_base.html',1,'daisy::FIFOBase< T >'],['../classdaisy_1_1_f_i_f_o_base.html#a15637244c53a116c8e6805d2481744fe',1,'daisy::FIFOBase::FIFOBase(T *buffer, size_t bufferSize)'],['../classdaisy_1_1_f_i_f_o_base.html#ac7249ea0264e9bdfee1d7cca393a7400',1,'daisy::FIFOBase::FIFOBase(T *buffer, size_t bufferSize, std::initializer_list< T > valuesToAdd)']]], - ['fifobase_3c_20event_20_3e_31',['FIFOBase< Event >',['../classdaisy_1_1_f_i_f_o_base.html',1,'daisy']]], - ['fileformat_32',['FileFormat',['../structdaisy_1_1_w_a_v___format_type_def.html#a68590b48ece3d4984edd6514a17ed5e6',1,'daisy::WAV_FormatTypeDef']]], - ['filesize_33',['FileSize',['../structdaisy_1_1_w_a_v___format_type_def.html#ada338826e889f5ba97407e2f0654ee5e',1,'daisy::WAV_FormatTypeDef']]], - ['fill_34',['Fill',['../classdaisy_1_1_dot_star.html#afcd4a0fae4f53f1824c79e9c851ba81e',1,'daisy::DotStar::Fill(const Color &color)'],['../classdaisy_1_1_dot_star.html#ab05eb4bcdbfccdef250373242400bd05',1,'daisy::DotStar::Fill(uint32_t color)'],['../classdaisy_1_1_oled_display.html#a0502509e0a15e5546131121e6ef38819',1,'daisy::OledDisplay::Fill()'],['../classdaisy_1_1_one_bit_graphics_display.html#a0d2a8bb3bebc78ea794180803cbf7089',1,'daisy::OneBitGraphicsDisplay::Fill()'],['../classdaisy_1_1_dot_star.html#acabff3c34a6549b249de5249f4515f7d',1,'daisy::DotStar::Fill()'],['../classdaisy_1_1_s_s_d130x_driver.html#a1abfa4aa65a905e9b1d97669bde5057b',1,'daisy::SSD130xDriver::Fill()']]], - ['filtereddata_35',['FilteredData',['../classdaisy_1_1_mpr121.html#a5dd0cbce7221b3a46f8fe0ecd5d07663',1,'daisy::Mpr121']]], - ['fixedcapstr_36',['FixedCapStr',['../classdaisy_1_1_fixed_cap_str.html',1,'daisy::FixedCapStr< capacity, CharType >'],['../classdaisy_1_1_fixed_cap_str.html#a757091c8cc8dc86bca3a28279157c324',1,'daisy::FixedCapStr::FixedCapStr(const CharType *str, std::size_t length) noexcept'],['../classdaisy_1_1_fixed_cap_str.html#a636a964eaa715b220bade86d0fc0252c',1,'daisy::FixedCapStr::FixedCapStr(const CharType *str) noexcept'],['../classdaisy_1_1_fixed_cap_str.html#a63751c4ed40c4bc143398ced0b332faf',1,'daisy::FixedCapStr::FixedCapStr(const FixedCapStr< otherSize > &str) noexcept'],['../classdaisy_1_1_fixed_cap_str.html#a4a196b00b2ef38d5515618826cb3c816',1,'daisy::FixedCapStr::FixedCapStr(const FixedCapStr &str) noexcept'],['../classdaisy_1_1_fixed_cap_str.html#aa2ac5582f63ce3425677a64eb0b78679',1,'daisy::FixedCapStr::FixedCapStr() noexcept']]], - ['fixedcapstr_2eh_37',['FixedCapStr.h',['../_fixed_cap_str_8h.html',1,'']]], - ['fixedcapstrbase_38',['FixedCapStrBase',['../classdaisy_1_1_fixed_cap_str_base.html',1,'daisy::FixedCapStrBase< CharType >'],['../classdaisy_1_1_fixed_cap_str_base.html#a485d917f9739b946862f8815ad277c21',1,'daisy::FixedCapStrBase::FixedCapStrBase(CharType *buffer, size_t capacity)'],['../classdaisy_1_1_fixed_cap_str_base.html#a5269ed4939c9fcac41d254f17c06d1e6',1,'daisy::FixedCapStrBase::FixedCapStrBase(const FixedCapStrBase &other)=delete']]], - ['fixedcapstrbase_3c_20char_20_3e_39',['FixedCapStrBase< char >',['../classdaisy_1_1_fixed_cap_str_base.html',1,'daisy']]], - ['flash_40',['FLASH',['../group__flash.html',1,'']]], - ['flash_5fis25lp064a_2eh_41',['flash_IS25LP064A.h',['../flash___i_s25_l_p064_a_8h.html',1,'']]], - ['flash_5fis25lp080d_2eh_42',['flash_IS25LP080D.h',['../flash___i_s25_l_p080_d_8h.html',1,'']]], - ['flt_5ffmt_43',['FLT_FMT',['../group__logging__macros.html#ga3817e299d9635796e3fd69adaa0d6823',1,'logger.h']]], - ['flt_5ffmt3_44',['FLT_FMT3',['../group__logging__macros.html#gaa7cc11426d24168f3430b4b070291e7c',1,'logger.h']]], - ['flt_5fvar_45',['FLT_VAR',['../group__logging__macros.html#gad4da30407c6778ebdea4c0002df9daab',1,'logger.h']]], - ['flt_5fvar3_46',['FLT_VAR3',['../group__logging__macros.html#ga5aa9dc2e89ac7abbcaaffca896ce8d7c',1,'logger.h']]], - ['flush_47',['Flush',['../classdaisy_1_1_ring_buffer.html#a672e1f1325d26d51186622204c1ea669',1,'daisy::RingBuffer::Flush()'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#aba6d429d965956722e32388f8348befc',1,'daisy::RingBuffer< T, 0 >::Flush()']]], - ['flush0_48',['FLUSH0',['../classdaisy_1_1_wav_writer.html#a17e4799ade3a78bfb8cab25ac90f04eba226e2d358eca88a86c0950704e2d2260',1,'daisy::WavWriter']]], - ['flush1_49',['FLUSH1',['../classdaisy_1_1_wav_writer.html#a17e4799ade3a78bfb8cab25ac90f04ebaec1f1224f328e7c60687d3ca97e5b4a9',1,'daisy::WavWriter']]], - ['flushfifo_50',['FlushFifo',['../classdaisy_1_1_uart_handler.html#a4e2b04c72be034995175ec3d1229815d',1,'daisy::UartHandler']]], - ['flushfuncptr_51',['FlushFuncPtr',['../structdaisy_1_1_ui_canvas_descriptor.html#a500ad5fdd90fbedadb0761d86f0d0d2e',1,'daisy::UiCanvasDescriptor']]], - ['flushfunction_5f_52',['flushFunction_',['../structdaisy_1_1_ui_canvas_descriptor.html#aa0127385910ed8190d328b30c8bd90ae',1,'daisy::UiCanvasDescriptor']]], - ['flushrx_53',['FlushRx',['../classdaisy_1_1_midi_usb_transport.html#a4509734f8dee64bc260a1a5e940b4b9c',1,'daisy::MidiUsbTransport::FlushRx()'],['../classdaisy_1_1_uart_handler.html#a8282a20746be60a208cde90a8eea1529',1,'daisy::UartHandler::FlushRx()'],['../classdaisy_1_1_midi_uart_transport.html#a7e498cbcb29bc447db934b96252a547f',1,'daisy::MidiUartTransport::FlushRx()']]], - ['fmt_54',['fmt',['../structdaisy_1_1_wm8731_1_1_config.html#a91edb01dd260a86a27fc80705a627435',1,'daisy::Wm8731::Config']]], - ['font_5f11x18_55',['Font_11x18',['../group__utility.html#gaa94e4e49025255db7783b4295468aedd',1,'oled_fonts.h']]], - ['font_5f16x26_56',['Font_16x26',['../group__utility.html#ga72e53d9ac78461af8cae3a529842ea09',1,'oled_fonts.h']]], - ['font_5f6x8_57',['Font_6x8',['../group__utility.html#ga4c55469540dd07f566c5a07d77495ad0',1,'oled_fonts.h']]], - ['font_5f7x10_58',['Font_7x10',['../group__utility.html#gaf57a14b2dd6417892e306d9eb31a8470',1,'oled_fonts.h']]], - ['fontdef_59',['FontDef',['../struct_font_def.html',1,'']]], - ['fontheight_60',['FontHeight',['../struct_font_def.html#a4e3e31a3a441bc010a432564e5da887d',1,'FontDef']]], - ['fontwidth_61',['FontWidth',['../struct_font_def.html#a9e22d0bdbc21eadba6155f31d742f85f',1,'FontDef']]], - ['footswitch_5fled_62',['footswitch_led',['../classdaisy_1_1_daisy_petal.html#a0adb82d937f3b214214aa2370b12f75e',1,'daisy::DaisyPetal']]], - ['footswitch_5fled_5f1_63',['FOOTSWITCH_LED_1',['../classdaisy_1_1_daisy_petal.html#ad833e85c076a9fc4c3ad16cb8f09b06da9998ede7b134a8aa58a7950fa0376a93',1,'daisy::DaisyPetal']]], - ['footswitch_5fled_5f2_64',['FOOTSWITCH_LED_2',['../classdaisy_1_1_daisy_petal.html#ad833e85c076a9fc4c3ad16cb8f09b06dab6791167fd4edbc562b7036887b1d22c',1,'daisy::DaisyPetal']]], - ['footswitch_5fled_5f3_65',['FOOTSWITCH_LED_3',['../classdaisy_1_1_daisy_petal.html#ad833e85c076a9fc4c3ad16cb8f09b06dadf2bb51be67f76a0274832195e683c84',1,'daisy::DaisyPetal']]], - ['footswitch_5fled_5f4_66',['FOOTSWITCH_LED_4',['../classdaisy_1_1_daisy_petal.html#ad833e85c076a9fc4c3ad16cb8f09b06da022fb2467f37f92677503a481d9300a6',1,'daisy::DaisyPetal']]], - ['footswitch_5fled_5flast_67',['FOOTSWITCH_LED_LAST',['../classdaisy_1_1_daisy_petal.html#ad833e85c076a9fc4c3ad16cb8f09b06dad18fc6823313df604a7825d42bec02b9',1,'daisy::DaisyPetal']]], - ['footswitchled_68',['FootswitchLed',['../classdaisy_1_1_daisy_petal.html#ad833e85c076a9fc4c3ad16cb8f09b06d',1,'daisy::DaisyPetal']]], - ['format_69',['Format',['../structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104',1,'daisy::Wm8731::Config']]], - ['freq_5f400mhz_70',['FREQ_400MHZ',['../structdaisy_1_1_system_1_1_config.html#a100d6b1e0b41cf2bf17ecffe28fabfa7aea5a523143788a5fea61d12e01018daf',1,'daisy::System::Config']]], - ['freq_5f480mhz_71',['FREQ_480MHZ',['../structdaisy_1_1_system_1_1_config.html#a100d6b1e0b41cf2bf17ecffe28fabfa7a312f419b9d3802380ef1ba781585f516',1,'daisy::System::Config']]], - ['front_72',['Front',['../classdaisy_1_1_f_i_f_o_base.html#a1574a70a644e265fe1a07d68d2ae3a31',1,'daisy::FIFOBase::Front() const'],['../classdaisy_1_1_f_i_f_o_base.html#a000168a5fe90823b7c671a1eeaa03d4a',1,'daisy::FIFOBase::Front()']]], - ['fs_73',['fs',['../structdaisy_1_1_sai_handle_1_1_config.html#aff0746f3a8ff80d4ad7763e5d4994b67',1,'daisy::SaiHandle::Config']]], - ['fs_5fboth_74',['FS_BOTH',['../class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4a7926eaf0841374d9b4afa7965a75127b',1,'UsbHandle']]], - ['fs_5fexternal_75',['FS_EXTERNAL',['../class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4a26ab786f68f31edaf520641878d210b4',1,'UsbHandle']]], - ['fs_5finternal_76',['FS_INTERNAL',['../class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4afa4206af38c6c3fcb6a7c33d7cf6b665',1,'UsbHandle']]], - ['fullscreenitemmenu_77',['FullScreenItemMenu',['../classdaisy_1_1_full_screen_item_menu.html',1,'daisy']]], - ['fullscreenitemmenu_2eh_78',['FullScreenItemMenu.h',['../_full_screen_item_menu_8h.html',1,'']]], - ['funcbttnid_79',['funcBttnId',['../structdaisy_1_1_u_i_1_1_special_control_ids.html#a7c847ff1dd0f5557428fa2c949af3872',1,'daisy::UI::SpecialControlIds']]] + ['fifo_3c_20daisy_3a_3amidievent_2c_20256_20_3e_29',['FIFO< daisy::MidiEvent, 256 >',['../classdaisy_1_1_f_i_f_o.html',1,'daisy']]], + ['fifo_3c_20event_2c_20256_20_3e_30',['FIFO< Event, 256 >',['../classdaisy_1_1_f_i_f_o.html',1,'daisy']]], + ['fifobase_31',['FIFOBase',['../classdaisy_1_1_f_i_f_o_base.html',1,'daisy::FIFOBase< T >'],['../classdaisy_1_1_f_i_f_o_base.html#a15637244c53a116c8e6805d2481744fe',1,'daisy::FIFOBase::FIFOBase(T *buffer, size_t bufferSize)'],['../classdaisy_1_1_f_i_f_o_base.html#ac7249ea0264e9bdfee1d7cca393a7400',1,'daisy::FIFOBase::FIFOBase(T *buffer, size_t bufferSize, std::initializer_list< T > valuesToAdd)']]], + ['fifobase_3c_20daisy_3a_3amidievent_20_3e_32',['FIFOBase< daisy::MidiEvent >',['../classdaisy_1_1_f_i_f_o_base.html',1,'daisy']]], + ['fifobase_3c_20event_20_3e_33',['FIFOBase< Event >',['../classdaisy_1_1_f_i_f_o_base.html',1,'daisy']]], + ['fileformat_34',['FileFormat',['../structdaisy_1_1_w_a_v___format_type_def.html#a68590b48ece3d4984edd6514a17ed5e6',1,'daisy::WAV_FormatTypeDef']]], + ['filesize_35',['FileSize',['../structdaisy_1_1_w_a_v___format_type_def.html#ada338826e889f5ba97407e2f0654ee5e',1,'daisy::WAV_FormatTypeDef']]], + ['fill_36',['Fill',['../classdaisy_1_1_dot_star.html#afcd4a0fae4f53f1824c79e9c851ba81e',1,'daisy::DotStar::Fill(const Color &color)'],['../classdaisy_1_1_dot_star.html#ab05eb4bcdbfccdef250373242400bd05',1,'daisy::DotStar::Fill(uint32_t color)'],['../classdaisy_1_1_oled_display.html#a0502509e0a15e5546131121e6ef38819',1,'daisy::OledDisplay::Fill()'],['../classdaisy_1_1_one_bit_graphics_display.html#a0d2a8bb3bebc78ea794180803cbf7089',1,'daisy::OneBitGraphicsDisplay::Fill()'],['../classdaisy_1_1_s_s_d130x_driver.html#a1abfa4aa65a905e9b1d97669bde5057b',1,'daisy::SSD130xDriver::Fill()'],['../classdaisy_1_1_dot_star.html#acabff3c34a6549b249de5249f4515f7d',1,'daisy::DotStar::Fill()']]], + ['filtereddata_37',['FilteredData',['../classdaisy_1_1_mpr121.html#a5dd0cbce7221b3a46f8fe0ecd5d07663',1,'daisy::Mpr121']]], + ['fixedcapstr_38',['FixedCapStr',['../classdaisy_1_1_fixed_cap_str.html',1,'daisy::FixedCapStr< capacity, CharType >'],['../classdaisy_1_1_fixed_cap_str.html#a636a964eaa715b220bade86d0fc0252c',1,'daisy::FixedCapStr::FixedCapStr(const CharType *str) noexcept'],['../classdaisy_1_1_fixed_cap_str.html#aa2ac5582f63ce3425677a64eb0b78679',1,'daisy::FixedCapStr::FixedCapStr() noexcept'],['../classdaisy_1_1_fixed_cap_str.html#a4a196b00b2ef38d5515618826cb3c816',1,'daisy::FixedCapStr::FixedCapStr(const FixedCapStr &str) noexcept'],['../classdaisy_1_1_fixed_cap_str.html#a757091c8cc8dc86bca3a28279157c324',1,'daisy::FixedCapStr::FixedCapStr(const CharType *str, std::size_t length) noexcept'],['../classdaisy_1_1_fixed_cap_str.html#a63751c4ed40c4bc143398ced0b332faf',1,'daisy::FixedCapStr::FixedCapStr(const FixedCapStr< otherSize > &str) noexcept']]], + ['fixedcapstr_2eh_39',['FixedCapStr.h',['../_fixed_cap_str_8h.html',1,'']]], + ['fixedcapstrbase_40',['FixedCapStrBase',['../classdaisy_1_1_fixed_cap_str_base.html',1,'daisy::FixedCapStrBase< CharType >'],['../classdaisy_1_1_fixed_cap_str_base.html#a5269ed4939c9fcac41d254f17c06d1e6',1,'daisy::FixedCapStrBase::FixedCapStrBase(const FixedCapStrBase &other)=delete'],['../classdaisy_1_1_fixed_cap_str_base.html#a485d917f9739b946862f8815ad277c21',1,'daisy::FixedCapStrBase::FixedCapStrBase(CharType *buffer, size_t capacity)']]], + ['fixedcapstrbase_3c_20char_20_3e_41',['FixedCapStrBase< char >',['../classdaisy_1_1_fixed_cap_str_base.html',1,'daisy']]], + ['flash_42',['FLASH',['../group__flash.html',1,'']]], + ['flash_5fis25lp064a_2eh_43',['flash_IS25LP064A.h',['../flash___i_s25_l_p064_a_8h.html',1,'']]], + ['flash_5fis25lp080d_2eh_44',['flash_IS25LP080D.h',['../flash___i_s25_l_p080_d_8h.html',1,'']]], + ['flt_5ffmt_45',['FLT_FMT',['../group__logging__macros.html#ga3817e299d9635796e3fd69adaa0d6823',1,'logger.h']]], + ['flt_5ffmt3_46',['FLT_FMT3',['../group__logging__macros.html#gaa7cc11426d24168f3430b4b070291e7c',1,'logger.h']]], + ['flt_5fvar_47',['FLT_VAR',['../group__logging__macros.html#gad4da30407c6778ebdea4c0002df9daab',1,'logger.h']]], + ['flt_5fvar3_48',['FLT_VAR3',['../group__logging__macros.html#ga5aa9dc2e89ac7abbcaaffca896ce8d7c',1,'logger.h']]], + ['flush_49',['Flush',['../classdaisy_1_1_ring_buffer.html#a672e1f1325d26d51186622204c1ea669',1,'daisy::RingBuffer::Flush()'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#aba6d429d965956722e32388f8348befc',1,'daisy::RingBuffer< T, 0 >::Flush()']]], + ['flush0_50',['FLUSH0',['../classdaisy_1_1_wav_writer.html#a17e4799ade3a78bfb8cab25ac90f04eba226e2d358eca88a86c0950704e2d2260',1,'daisy::WavWriter']]], + ['flush1_51',['FLUSH1',['../classdaisy_1_1_wav_writer.html#a17e4799ade3a78bfb8cab25ac90f04ebaec1f1224f328e7c60687d3ca97e5b4a9',1,'daisy::WavWriter']]], + ['flushfuncptr_52',['FlushFuncPtr',['../structdaisy_1_1_ui_canvas_descriptor.html#a500ad5fdd90fbedadb0761d86f0d0d2e',1,'daisy::UiCanvasDescriptor']]], + ['flushfunction_5f_53',['flushFunction_',['../structdaisy_1_1_ui_canvas_descriptor.html#aa0127385910ed8190d328b30c8bd90ae',1,'daisy::UiCanvasDescriptor']]], + ['flushrx_54',['FlushRx',['../classdaisy_1_1_midi_usb_transport.html#a4509734f8dee64bc260a1a5e940b4b9c',1,'daisy::MidiUsbTransport::FlushRx()'],['../classdaisy_1_1_midi_uart_transport.html#a7e498cbcb29bc447db934b96252a547f',1,'daisy::MidiUartTransport::FlushRx()']]], + ['fmt_55',['fmt',['../structdaisy_1_1_wm8731_1_1_config.html#a91edb01dd260a86a27fc80705a627435',1,'daisy::Wm8731::Config']]], + ['font_5f11x18_56',['Font_11x18',['../group__utility.html#gaa94e4e49025255db7783b4295468aedd',1,'oled_fonts.h']]], + ['font_5f16x26_57',['Font_16x26',['../group__utility.html#ga72e53d9ac78461af8cae3a529842ea09',1,'oled_fonts.h']]], + ['font_5f6x8_58',['Font_6x8',['../group__utility.html#ga4c55469540dd07f566c5a07d77495ad0',1,'oled_fonts.h']]], + ['font_5f7x10_59',['Font_7x10',['../group__utility.html#gaf57a14b2dd6417892e306d9eb31a8470',1,'oled_fonts.h']]], + ['fontdef_60',['FontDef',['../struct_font_def.html',1,'']]], + ['fontheight_61',['FontHeight',['../struct_font_def.html#a4e3e31a3a441bc010a432564e5da887d',1,'FontDef']]], + ['fontwidth_62',['FontWidth',['../struct_font_def.html#a9e22d0bdbc21eadba6155f31d742f85f',1,'FontDef']]], + ['footswitch_5fled_63',['footswitch_led',['../classdaisy_1_1_daisy_petal.html#a0adb82d937f3b214214aa2370b12f75e',1,'daisy::DaisyPetal']]], + ['footswitch_5fled_5f1_64',['FOOTSWITCH_LED_1',['../classdaisy_1_1_daisy_petal.html#ad833e85c076a9fc4c3ad16cb8f09b06da9998ede7b134a8aa58a7950fa0376a93',1,'daisy::DaisyPetal']]], + ['footswitch_5fled_5f2_65',['FOOTSWITCH_LED_2',['../classdaisy_1_1_daisy_petal.html#ad833e85c076a9fc4c3ad16cb8f09b06dab6791167fd4edbc562b7036887b1d22c',1,'daisy::DaisyPetal']]], + ['footswitch_5fled_5f3_66',['FOOTSWITCH_LED_3',['../classdaisy_1_1_daisy_petal.html#ad833e85c076a9fc4c3ad16cb8f09b06dadf2bb51be67f76a0274832195e683c84',1,'daisy::DaisyPetal']]], + ['footswitch_5fled_5f4_67',['FOOTSWITCH_LED_4',['../classdaisy_1_1_daisy_petal.html#ad833e85c076a9fc4c3ad16cb8f09b06da022fb2467f37f92677503a481d9300a6',1,'daisy::DaisyPetal']]], + ['footswitch_5fled_5flast_68',['FOOTSWITCH_LED_LAST',['../classdaisy_1_1_daisy_petal.html#ad833e85c076a9fc4c3ad16cb8f09b06dad18fc6823313df604a7825d42bec02b9',1,'daisy::DaisyPetal']]], + ['footswitchled_69',['FootswitchLed',['../classdaisy_1_1_daisy_petal.html#ad833e85c076a9fc4c3ad16cb8f09b06d',1,'daisy::DaisyPetal']]], + ['format_70',['Format',['../structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104',1,'daisy::Wm8731::Config']]], + ['freq_5f400mhz_71',['FREQ_400MHZ',['../structdaisy_1_1_system_1_1_config.html#a100d6b1e0b41cf2bf17ecffe28fabfa7aea5a523143788a5fea61d12e01018daf',1,'daisy::System::Config']]], + ['freq_5f480mhz_72',['FREQ_480MHZ',['../structdaisy_1_1_system_1_1_config.html#a100d6b1e0b41cf2bf17ecffe28fabfa7a312f419b9d3802380ef1ba781585f516',1,'daisy::System::Config']]], + ['front_73',['Front',['../classdaisy_1_1_f_i_f_o_base.html#a1574a70a644e265fe1a07d68d2ae3a31',1,'daisy::FIFOBase::Front() const'],['../classdaisy_1_1_f_i_f_o_base.html#a000168a5fe90823b7c671a1eeaa03d4a',1,'daisy::FIFOBase::Front()']]], + ['fs_74',['fs',['../structdaisy_1_1_sai_handle_1_1_config.html#aff0746f3a8ff80d4ad7763e5d4994b67',1,'daisy::SaiHandle::Config']]], + ['fs_5fboth_75',['FS_BOTH',['../class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4a7926eaf0841374d9b4afa7965a75127b',1,'UsbHandle']]], + ['fs_5fexternal_76',['FS_EXTERNAL',['../class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4a26ab786f68f31edaf520641878d210b4',1,'UsbHandle']]], + ['fs_5finternal_77',['FS_INTERNAL',['../class_usb_handle.html#a782f2982a91520188f2be5a80c9febb4afa4206af38c6c3fcb6a7c33d7cf6b665',1,'UsbHandle']]], + ['fullscreenitemmenu_78',['FullScreenItemMenu',['../classdaisy_1_1_full_screen_item_menu.html',1,'daisy']]], + ['fullscreenitemmenu_2eh_79',['FullScreenItemMenu.h',['../_full_screen_item_menu_8h.html',1,'']]], + ['funcbttnid_80',['funcBttnId',['../structdaisy_1_1_u_i_1_1_special_control_ids.html#a7c847ff1dd0f5557428fa2c949af3872',1,'daisy::UI::SpecialControlIds']]] ]; diff --git a/search/all_9.js b/search/all_9.js index 115d7673a..3f5630736 100644 --- a/search/all_9.js +++ b/search/all_9.js @@ -68,7 +68,7 @@ var searchData= ['icm20x_5fb3_5fi2c_5fslv4_5freg_65',['ICM20X_B3_I2C_SLV4_REG',['../icm20948_8h.html#a4c17a7c4b62c72a89010776bde65b230',1,'icm20948.h']]], ['id_5f_66',['id_',['../structdaisy_1_1_ui_canvas_descriptor.html#a320db46cd7de450d1201f33c6a3b5300',1,'daisy::UiCanvasDescriptor']]], ['idle_67',['IDLE',['../classdaisy_1_1_wav_writer.html#a17e4799ade3a78bfb8cab25ac90f04ebaa5daf7f2ebbba4975d61dab1c40188c7',1,'daisy::WavWriter']]], - ['immediateread_68',['ImmediateRead',['../classdaisy_1_1_ring_buffer.html#a0dd518872cd6b113549a93223f3b1ec7',1,'daisy::RingBuffer::ImmediateRead()'],['../classdaisy_1_1_ring_buffer.html#ae77037eb83533028e4abcdd3a649ecfa',1,'daisy::RingBuffer::ImmediateRead(T *destination, size_t num_elements)'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#a253d509d65e4898723b20e9110e9ba4b',1,'daisy::RingBuffer< T, 0 >::ImmediateRead()'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#ac5f5954e54efc54d1fedbd8d1526fae8',1,'daisy::RingBuffer< T, 0 >::ImmediateRead(T *destination, size_t num_elements)']]], + ['immediateread_68',['ImmediateRead',['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#ac5f5954e54efc54d1fedbd8d1526fae8',1,'daisy::RingBuffer< T, 0 >::ImmediateRead(T *destination, size_t num_elements)'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#a253d509d65e4898723b20e9110e9ba4b',1,'daisy::RingBuffer< T, 0 >::ImmediateRead()'],['../classdaisy_1_1_ring_buffer.html#ae77037eb83533028e4abcdd3a649ecfa',1,'daisy::RingBuffer::ImmediateRead(T *destination, size_t num_elements)'],['../classdaisy_1_1_ring_buffer.html#a0dd518872cd6b113549a93223f3b1ec7',1,'daisy::RingBuffer::ImmediateRead()']]], ['impl_5f_69',['impl_',['../group__logger__statics.html#ga40f66abb6093e8358937fdcf184eda5d',1,'daisy::Logger']]], ['import_70',['Import',['../classdaisy_1_1_wave_table_loader.html#a95b0b8da2b594e99193bcd197b80bde6',1,'daisy::WaveTableLoader']]], ['in_5fl_71',['IN_L',['../group__utility.html#ga824977c3659d58fcc4e3d774901976de',1,'daisy_core.h']]], @@ -76,18 +76,18 @@ var searchData= ['increment_73',['Increment',['../classdaisy_1_1_encoder.html#ae0f2d9d22a006a45daa1ac9cbcba4050',1,'daisy::Encoder']]], ['index_2eh_74',['index.h',['../index_8h.html',1,'']]], ['indirect_5fpolling_75',['INDIRECT_POLLING',['../structdaisy_1_1_q_s_p_i_handle_1_1_config.html#a9641ed459b3ef3baca74ad0d49d78a83ae71fbe684d08ffd2e5b0e21b4a2fd74f',1,'daisy::QSPIHandle::Config']]], - ['info_5frow_5ferase_5fcmd_76',['INFO_ROW_ERASE_CMD',['../group__flash.html#gab562e9766cb9e5e49a57c57a370db9a4',1,'INFO_ROW_ERASE_CMD: flash_IS25LP080D.h'],['../group__flash.html#gab562e9766cb9e5e49a57c57a370db9a4',1,'INFO_ROW_ERASE_CMD: flash_IS25LP064A.h']]], + ['info_5frow_5ferase_5fcmd_76',['INFO_ROW_ERASE_CMD',['../group__flash.html#gab562e9766cb9e5e49a57c57a370db9a4',1,'INFO_ROW_ERASE_CMD: flash_IS25LP064A.h'],['../group__flash.html#gab562e9766cb9e5e49a57c57a370db9a4',1,'INFO_ROW_ERASE_CMD: flash_IS25LP080D.h']]], ['info_5frow_5fprogram_5fcmd_77',['INFO_ROW_PROGRAM_CMD',['../group__flash.html#gaac90026cd6e74bd4149b109c1e22712f',1,'INFO_ROW_PROGRAM_CMD: flash_IS25LP080D.h'],['../group__flash.html#gaac90026cd6e74bd4149b109c1e22712f',1,'INFO_ROW_PROGRAM_CMD: flash_IS25LP064A.h']]], ['info_5frow_5fread_5fcmd_78',['INFO_ROW_READ_CMD',['../group__flash.html#gaefbd95c0b0666f56e742bab7f6d5cf55',1,'INFO_ROW_READ_CMD: flash_IS25LP080D.h'],['../group__flash.html#gaefbd95c0b0666f56e742bab7f6d5cf55',1,'INFO_ROW_READ_CMD: flash_IS25LP064A.h']]], - ['init_79',['Init',['../classdaisy_1_1_button_monitor.html#a560eafea070347241b536948a6992180',1,'daisy::ButtonMonitor::Init()'],['../classdaisy_1_1_cpu_load_meter.html#a79ef32518b6eaa259c76690e0d956cc4',1,'daisy::CpuLoadMeter::Init()'],['../classdaisy_1_1_color.html#a44cd04ee19a41442be79ec47711a2bf5',1,'daisy::Color::Init(float red, float green, float blue)'],['../classdaisy_1_1_color.html#a0ebd169976dd93434e4523697b16559b',1,'daisy::Color::Init(PresetColor c)'],['../classdaisy_1_1_u_i.html#a45d45bd85253906cae5dc7e113c73c89',1,'daisy::UI::Init()'],['../classdaisy_1_1_pot_monitor.html#a3100de81d603dbac5914a1d4cfa26f5f',1,'daisy::PotMonitor::Init()'],['../classdaisy_1_1_full_screen_item_menu.html#a523e9103e7529a297021e45071c34d16',1,'daisy::FullScreenItemMenu::Init()'],['../classdaisy_1_1_wave_table_loader.html#ab68b6dd9b098a3bbce0128c1da53d6ea',1,'daisy::WaveTableLoader::Init()'],['../classdaisy_1_1_abstract_menu.html#a4bfab9891a3376162118e5d955033977',1,'daisy::AbstractMenu::Init()'],['../classdaisy_1_1_system.html#a17ca63fdd1043c8509e467073b5fd497',1,'daisy::System::Init(const Config &config)'],['../classdaisy_1_1_system.html#a191c10f3ac6b471cce23aa46623c72fa',1,'daisy::System::Init()'],['../classdaisy_1_1_fat_f_s_interface.html#a8e32ecdd5525abf348353bfbc81f989b',1,'daisy::FatFSInterface::Init(const uint8_t media)'],['../classdaisy_1_1_fat_f_s_interface.html#a9c3f879208f63d8901f0651790c55171',1,'daisy::FatFSInterface::Init(const Config &cfg)'],['../classdaisy_1_1_uart_handler.html#aa25c871d2fb9d382ef779ba92b4d2ada',1,'daisy::UartHandler::Init()'],['../classdaisy_1_1_timer_handle.html#ace505f2c685767f7e9dbb39172646c4e',1,'daisy::TimerHandle::Init()'],['../classdaisy_1_1_multi_slave_spi_handle.html#a0ddc3024b08b9a934dbb80b7594b4bc7',1,'daisy::MultiSlaveSpiHandle::Init()'],['../classdaisy_1_1_spi_handle.html#a9bec410bfc0d743be479be9856560c71',1,'daisy::SpiHandle::Init()'],['../classdaisy_1_1_sdmmc_handler.html#a5df27501002b728908d18bcc279cb6df',1,'daisy::SdmmcHandler::Init()'],['../classdaisy_1_1_daisy_legio.html#a760bdefd4cc75e4e566987c8f8045001',1,'daisy::DaisyLegio::Init()'],['../classdaisy_1_1_apds9960.html#a3f4e889772c6170099623fc62b04dce6',1,'daisy::Apds9960::Init()'],['../classdaisy_1_1_apds9960_i2_c_transport.html#a4b1d6f0db098b9f5c94575dfac6e5ca4',1,'daisy::Apds9960I2CTransport::Init()'],['../classdaisy_1_1_daisy_versio.html#ad50e0740d75a92c6c5117a2c1ec68f40',1,'daisy::DaisyVersio::Init()'],['../classdaisy_1_1_daisy_seed.html#a218cbf64aa64572a1b5bbc57fd00c895',1,'daisy::DaisySeed::Init()'],['../classdaisy_1_1_daisy_pod.html#aac199ade5be95744d134f0fa48ba929b',1,'daisy::DaisyPod::Init()'],['../classdaisy_1_1_daisy_petal.html#ad015b70ff11f86c745bf180466c67cac',1,'daisy::DaisyPetal::Init()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a19435eb6b6785544317a436846790374',1,'daisy::patch_sm::DaisyPatchSM::Init()'],['../classdaisy_1_1_daisy_patch.html#aedb7ece87c5d7d85d68e22d142b55518',1,'daisy::DaisyPatch::Init()'],['../classdaisy_1_1_persistent_storage.html#a250a8352eb62ed2db360d89c06d4aa17',1,'daisy::PersistentStorage::Init()'],['../classdaisy_1_1_daisy_field.html#a30e655b910f9e844917a82359c7f4c2f',1,'daisy::DaisyField::Init()'],['../classdaisy_1_1_dot_star_spi_transport.html#ac39572f5fe669f1da402046be2e832f4',1,'daisy::DotStarSpiTransport::Init()'],['../classdaisy_1_1_pcm3060.html#a40f95112173ba827d160e69215a7cde6',1,'daisy::Pcm3060::Init()'],['../classdaisy_1_1_wav_writer.html#aea2d493b6d04b6d395eea6acc7e60055',1,'daisy::WavWriter::Init()'],['../classdaisy_1_1_ak4556.html#ac92bd71a03cb93ce380533f9775c16da',1,'daisy::Ak4556::Init()'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#a1ff2978078c3d5e92dbeb72892668b68',1,'daisy::RingBuffer< T, 0 >::Init()'],['../classdaisy_1_1_ring_buffer.html#a4b4d3a025463e06d6a62a1ede1491401',1,'daisy::RingBuffer::Init()'],['../classdaisy_1_1_sai_handle.html#ae81d7a93aa5f48f643ac157f612c21cd',1,'daisy::SaiHandle::Init()'],['../classdaisy_1_1_analog_control.html#a516499f0788d7405024eff550386a59e',1,'daisy::AnalogControl::Init()'],['../classdaisy_1_1_oled_display.html#a20febfc6699586dcde5fff70f81b6d6c',1,'daisy::OledDisplay::Init()'],['../classdaisy_1_1_encoder.html#aebee661fcf4faf8ca2bc6550bcffee68',1,'daisy::Encoder::Init()'],['../classdaisy_1_1_gate_in.html#a965077b2d1bffa4d103b4d497e64a7b6',1,'daisy::GateIn::Init(Pin pin, bool invert=true)'],['../classdaisy_1_1_gate_in.html#af9c75a81b23b1b268ca2eeeadd004c0c',1,'daisy::GateIn::Init(dsy_gpio_pin *pin_cfg, bool invert=true)'],['../classdaisy_1_1_led.html#a0af3ce433660d9f21e94368d5d84fe6e',1,'daisy::Led::Init()'],['../classdaisy_1_1_logger_impl.html#a2e574776282ceda67942634a283cf51d',1,'daisy::LoggerImpl::Init()'],['../classdaisy_1_1_logger_impl_3_01_l_o_g_g_e_r___i_n_t_e_r_n_a_l_01_4.html#a06c48eeab0904a078889b535d8c62ec8',1,'daisy::LoggerImpl< LOGGER_INTERNAL >::Init()'],['../classdaisy_1_1_audio_handle.html#af4e61088880609884a50b830c2a50af6',1,'daisy::AudioHandle::Init()'],['../classdaisy_1_1_mcp23_x17.html#ac21c01342949be85f73eb38168c216ab',1,'daisy::Mcp23X17::Init()'],['../classdaisy_1_1_mcp23017_transport.html#a5c95f1b6faa873d56861c27328720cf4',1,'daisy::Mcp23017Transport::Init(const Config &config)'],['../classdaisy_1_1_mcp23017_transport.html#a973912314bf828734554ce9a61d4e450',1,'daisy::Mcp23017Transport::Init()'],['../classdaisy_1_1_logger_impl_3_01_l_o_g_g_e_r___e_x_t_e_r_n_a_l_01_4.html#a95532c749fa4e876d9d577f77d075a78',1,'daisy::LoggerImpl< LOGGER_EXTERNAL >::Init()'],['../classdaisy_1_1_m_a_x11300_driver.html#aa25a33ae08e18604aea0d3ab4af5a156',1,'daisy::MAX11300Driver::Init()'],['../classdaisy_1_1_m_a_x11300_multi_slave_spi_transport.html#a4511d39640b3cb149cf97fc5f206638c',1,'daisy::MAX11300MultiSlaveSpiTransport::Init()'],['../classdaisy_1_1_led_driver_pca9685.html#a468206d813cff0033a50e7ce613ad8cb',1,'daisy::LedDriverPca9685::Init()'],['../classdaisy_1_1_icm20948.html#a0ea987e535b4f5bcc0c0d06877ddda74',1,'daisy::Icm20948::Init()'],['../classdaisy_1_1_s_s_d130x4_wire_spi_transport.html#adfdf96d17c5754ea048e74a179ead274',1,'daisy::SSD130x4WireSpiTransport::Init()'],['../classdaisy_1_1_mcp23_x17.html#a8887330312af7951a8a45912b6de8a82',1,'daisy::Mcp23X17::Init()'],['../classdaisy_1_1_mpr121_i2_c_transport.html#a4038e5bc1ba98d6a0968f43dc5c8259b',1,'daisy::Mpr121I2CTransport::Init()'],['../classdaisy_1_1_mpr121.html#ac99982dd29c485b9af192ff20f8048fe',1,'daisy::Mpr121::Init()'],['../classdaisy_1_1_neo_pixel_i2_c_transport.html#a8c9aa0f692fbef7a313877fb4ea3d453',1,'daisy::NeoPixelI2CTransport::Init()'],['../classdaisy_1_1_neo_pixel.html#a597e94d940bb0746d15b0c1669eff2ae',1,'daisy::NeoPixel::Init()'],['../classdaisy_1_1_neo_trellis_i2_c_transport.html#a5c82812bec22d8ef70df345f7d5b853f',1,'daisy::NeoTrellisI2CTransport::Init()'],['../classdaisy_1_1_neo_trellis.html#a3b1d59ec7eb519021b9f210d68ceb376',1,'daisy::NeoTrellis::Init()'],['../classdaisy_1_1_s_s_d130x_i2_c_transport.html#aa9b9a2f7fae4b790ac84a53ba7aefd13',1,'daisy::SSD130xI2CTransport::Init()'],['../classdaisy_1_1_lcd_h_d44780.html#a559e0af82ce6958d0c8b7a62fd19647d',1,'daisy::LcdHD44780::Init()'],['../classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html#ac1e762aa00be0d04972c51853b5caa33',1,'daisy::SSD130x4WireSoftSpiTransport::Init()'],['../classdaisy_1_1_s_s_d130x_driver.html#a47cb4fe280876881fc1f2eb7e3ae8809',1,'daisy::SSD130xDriver::Init()'],['../class_sdram_handle.html#abe37a0af8d94b9745942385f2299792e',1,'SdramHandle::Init()'],['../classdaisy_1_1_shift_register4021.html#a8f6d648bed2d03b56c9b833f45b077d7',1,'daisy::ShiftRegister4021::Init()'],['../class_shift_register595.html#acc9e7d74069edd4b2711a9de01e9617c',1,'ShiftRegister595::Init()'],['../classdaisy_1_1_tlv493d_i2_c_transport.html#af72585ffc69c5aadefe327ea424309b0',1,'daisy::Tlv493dI2CTransport::Init()'],['../classdaisy_1_1_tlv493d.html#ab32b6b2d1d32ce7d50f7e3210003f10b',1,'daisy::Tlv493d::Init()'],['../classdaisy_1_1_audio_handle.html#ac949d6b1ffbb916da8386afbdde5fd8f',1,'daisy::AudioHandle::Init()'],['../classdaisy_1_1_midi_usb_transport.html#a11cf837f61be46669ced0fe3345d9625',1,'daisy::MidiUsbTransport::Init()'],['../classdaisy_1_1_midi_handler.html#ae449f82ffeae9ef7f71d725349fdffef',1,'daisy::MidiHandler::Init()'],['../classdaisy_1_1_parameter.html#a0dc0293e425569511a73c311bfa54f48',1,'daisy::Parameter::Init()'],['../classdaisy_1_1_rgb_led.html#aff3dc6ce4e2415a32ad09c41f003b7fe',1,'daisy::RgbLed::Init()'],['../classdaisy_1_1_switch.html#a8ca509a85dbe09f1d27bcc4ae03fc17a',1,'daisy::Switch::Init(dsy_gpio_pin pin, float update_rate, Type t, Polarity pol, Pull pu)'],['../classdaisy_1_1_switch.html#a40c083b0e9e30e878723cd985bc4ec2a',1,'daisy::Switch::Init(dsy_gpio_pin pin, float update_rate=0.f)'],['../classdaisy_1_1_switch3.html#a7d1b5b64a03773fae37ed0de0e861aa3',1,'daisy::Switch3::Init()'],['../class_usb_handle.html#a0e30c290afb4d303ecf3b0c83d71f24d',1,'UsbHandle::Init(UsbPeriph dev)'],['../class_usb_handle.html#a0e30c290afb4d303ecf3b0c83d71f24d',1,'UsbHandle::Init(UsbPeriph dev)'],['../classdaisy_1_1_u_s_b_host_handle.html#aaf6e11074b3f982dc723bb014ceb1390',1,'daisy::USBHostHandle::Init()'],['../classdaisy_1_1_midi_uart_transport.html#affbd429d68f111dd01161591f2736012',1,'daisy::MidiUartTransport::Init()'],['../classdaisy_1_1_wav_player.html#a098078377eb545263538e56c53b56e4e',1,'daisy::WavPlayer::Init()'],['../classdaisy_1_1_adc_handle.html#ab93340170ed44feced69fcdafc6c13ed',1,'daisy::AdcHandle::Init()'],['../classdaisy_1_1_dac_handle.html#acc45a993a9a43ba443e07ba4dd15ed57',1,'daisy::DacHandle::Init()'],['../classdaisy_1_1_g_p_i_o.html#a56572310bb54b2c847d2129dc293693b',1,'daisy::GPIO::Init(const Config &cfg)'],['../classdaisy_1_1_g_p_i_o.html#a18443f33a5e5346f522908ad555b54dc',1,'daisy::GPIO::Init(Pin p, const Config &cfg)'],['../classdaisy_1_1_g_p_i_o.html#ad1ccf2f88576b9f86467db1cea61bbde',1,'daisy::GPIO::Init(Pin p, Mode m=Mode::INPUT, Pull pu=Pull::NOPULL, Speed sp=Speed::LOW)'],['../classdaisy_1_1_i2_c_handle.html#a3010881bcac1d32f6f974edc9bbc6c0d',1,'daisy::I2CHandle::Init()'],['../classdaisy_1_1_q_s_p_i_handle.html#a835072d362f51e74c2e2c842bded97f0',1,'daisy::QSPIHandle::Init()'],['../classdaisy_1_1_random.html#a3e4df2eab7bd06b463ca681552b17abd',1,'daisy::Random::Init()'],['../classdaisy_1_1_logger_impl_3_01_l_o_g_g_e_r___s_e_m_i_h_o_s_t_01_4.html#af1ab65a3d6517da68ab13eafefe6d5fe',1,'daisy::LoggerImpl< LOGGER_SEMIHOST >::Init()'],['../classdaisy_1_1_icm20948_i2_c_transport.html#ab749f713a91ac603b958080205c36181',1,'daisy::Icm20948I2CTransport::Init()'],['../classdaisy_1_1_dps310.html#a8037a8a10e239c5cca75b9e6f380771f',1,'daisy::Dps310::Init()'],['../classdaisy_1_1_dps310_spi_transport.html#a66b0440313b267da0a87b98d816d02fe',1,'daisy::Dps310SpiTransport::Init()'],['../classdaisy_1_1_dps310_i2_c_transport.html#af085d9eaba116b7dc287e8925d3da9c4',1,'daisy::Dps310I2CTransport::Init()'],['../classdaisy_1_1_dot_star.html#a5c82a302c01a806ec7c0e5ba4e8b4731',1,'daisy::DotStar::Init()'],['../classdaisy_1_1_wm8731.html#a42f8e6070918905a6aa317ed3fb20627',1,'daisy::Wm8731::Init()'],['../classdaisy_1_1_icm20948_spi_transport.html#aeda45856d48ca16e80df40e6eee8d5d4',1,'daisy::Icm20948SpiTransport::Init()']]], + ['init_79',['Init',['../classdaisy_1_1_color.html#a44cd04ee19a41442be79ec47711a2bf5',1,'daisy::Color::Init()'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#a1ff2978078c3d5e92dbeb72892668b68',1,'daisy::RingBuffer< T, 0 >::Init()'],['../classdaisy_1_1_color.html#a0ebd169976dd93434e4523697b16559b',1,'daisy::Color::Init()'],['../classdaisy_1_1_u_i.html#a45d45bd85253906cae5dc7e113c73c89',1,'daisy::UI::Init()'],['../classdaisy_1_1_pot_monitor.html#a3100de81d603dbac5914a1d4cfa26f5f',1,'daisy::PotMonitor::Init()'],['../classdaisy_1_1_full_screen_item_menu.html#a523e9103e7529a297021e45071c34d16',1,'daisy::FullScreenItemMenu::Init()'],['../classdaisy_1_1_button_monitor.html#a560eafea070347241b536948a6992180',1,'daisy::ButtonMonitor::Init()'],['../classdaisy_1_1_abstract_menu.html#a4bfab9891a3376162118e5d955033977',1,'daisy::AbstractMenu::Init()'],['../classdaisy_1_1_system.html#a17ca63fdd1043c8509e467073b5fd497',1,'daisy::System::Init(const Config &config)'],['../classdaisy_1_1_system.html#a191c10f3ac6b471cce23aa46623c72fa',1,'daisy::System::Init()'],['../classdaisy_1_1_fat_f_s_interface.html#a8e32ecdd5525abf348353bfbc81f989b',1,'daisy::FatFSInterface::Init(const uint8_t media)'],['../classdaisy_1_1_fat_f_s_interface.html#a9c3f879208f63d8901f0651790c55171',1,'daisy::FatFSInterface::Init(const Config &cfg)'],['../classdaisy_1_1_uart_handler.html#aa25c871d2fb9d382ef779ba92b4d2ada',1,'daisy::UartHandler::Init()'],['../classdaisy_1_1_timer_handle.html#ace505f2c685767f7e9dbb39172646c4e',1,'daisy::TimerHandle::Init()'],['../classdaisy_1_1_multi_slave_spi_handle.html#a0ddc3024b08b9a934dbb80b7594b4bc7',1,'daisy::MultiSlaveSpiHandle::Init()'],['../classdaisy_1_1_spi_handle.html#a9bec410bfc0d743be479be9856560c71',1,'daisy::SpiHandle::Init()'],['../classdaisy_1_1_sdmmc_handler.html#a5df27501002b728908d18bcc279cb6df',1,'daisy::SdmmcHandler::Init()'],['../classdaisy_1_1_sai_handle.html#ae81d7a93aa5f48f643ac157f612c21cd',1,'daisy::SaiHandle::Init()'],['../classdaisy_1_1_daisy_field.html#a30e655b910f9e844917a82359c7f4c2f',1,'daisy::DaisyField::Init()'],['../classdaisy_1_1_apds9960_i2_c_transport.html#a4b1d6f0db098b9f5c94575dfac6e5ca4',1,'daisy::Apds9960I2CTransport::Init()'],['../classdaisy_1_1_daisy_versio.html#ad50e0740d75a92c6c5117a2c1ec68f40',1,'daisy::DaisyVersio::Init()'],['../classdaisy_1_1_daisy_seed.html#a218cbf64aa64572a1b5bbc57fd00c895',1,'daisy::DaisySeed::Init()'],['../classdaisy_1_1_daisy_pod.html#aac199ade5be95744d134f0fa48ba929b',1,'daisy::DaisyPod::Init()'],['../classdaisy_1_1_daisy_petal.html#ad015b70ff11f86c745bf180466c67cac',1,'daisy::DaisyPetal::Init()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a19435eb6b6785544317a436846790374',1,'daisy::patch_sm::DaisyPatchSM::Init()'],['../classdaisy_1_1_daisy_patch.html#aedb7ece87c5d7d85d68e22d142b55518',1,'daisy::DaisyPatch::Init()'],['../classdaisy_1_1_daisy_legio.html#a760bdefd4cc75e4e566987c8f8045001',1,'daisy::DaisyLegio::Init()'],['../classdaisy_1_1_cpu_load_meter.html#a79ef32518b6eaa259c76690e0d956cc4',1,'daisy::CpuLoadMeter::Init()'],['../classdaisy_1_1_wm8731.html#a42f8e6070918905a6aa317ed3fb20627',1,'daisy::Wm8731::Init()'],['../classdaisy_1_1_ak4556.html#ac92bd71a03cb93ce380533f9775c16da',1,'daisy::Ak4556::Init()'],['../classdaisy_1_1_wav_writer.html#aea2d493b6d04b6d395eea6acc7e60055',1,'daisy::WavWriter::Init()'],['../classdaisy_1_1_wave_table_loader.html#ab68b6dd9b098a3bbce0128c1da53d6ea',1,'daisy::WaveTableLoader::Init()'],['../classdaisy_1_1_apds9960.html#a3f4e889772c6170099623fc62b04dce6',1,'daisy::Apds9960::Init()'],['../classdaisy_1_1_ring_buffer.html#a4b4d3a025463e06d6a62a1ede1491401',1,'daisy::RingBuffer::Init()'],['../classdaisy_1_1_persistent_storage.html#a250a8352eb62ed2db360d89c06d4aa17',1,'daisy::PersistentStorage::Init()'],['../classdaisy_1_1_mcp23017_transport.html#a5c95f1b6faa873d56861c27328720cf4',1,'daisy::Mcp23017Transport::Init()'],['../classdaisy_1_1_audio_handle.html#af4e61088880609884a50b830c2a50af6',1,'daisy::AudioHandle::Init()'],['../classdaisy_1_1_analog_control.html#a516499f0788d7405024eff550386a59e',1,'daisy::AnalogControl::Init()'],['../classdaisy_1_1_oled_display.html#a20febfc6699586dcde5fff70f81b6d6c',1,'daisy::OledDisplay::Init()'],['../classdaisy_1_1_encoder.html#aebee661fcf4faf8ca2bc6550bcffee68',1,'daisy::Encoder::Init()'],['../classdaisy_1_1_gate_in.html#a965077b2d1bffa4d103b4d497e64a7b6',1,'daisy::GateIn::Init(Pin pin, bool invert=true)'],['../classdaisy_1_1_gate_in.html#af9c75a81b23b1b268ca2eeeadd004c0c',1,'daisy::GateIn::Init(dsy_gpio_pin *pin_cfg, bool invert=true)'],['../classdaisy_1_1_led.html#a0af3ce433660d9f21e94368d5d84fe6e',1,'daisy::Led::Init()'],['../classdaisy_1_1_logger_impl.html#a2e574776282ceda67942634a283cf51d',1,'daisy::LoggerImpl::Init()'],['../classdaisy_1_1_random.html#a3e4df2eab7bd06b463ca681552b17abd',1,'daisy::Random::Init()'],['../classdaisy_1_1_audio_handle.html#ac949d6b1ffbb916da8386afbdde5fd8f',1,'daisy::AudioHandle::Init()'],['../classdaisy_1_1_mcp23017_transport.html#a973912314bf828734554ce9a61d4e450',1,'daisy::Mcp23017Transport::Init()'],['../classdaisy_1_1_m_a_x11300_driver.html#aa25a33ae08e18604aea0d3ab4af5a156',1,'daisy::MAX11300Driver::Init()'],['../classdaisy_1_1_logger_impl_3_01_l_o_g_g_e_r___i_n_t_e_r_n_a_l_01_4.html#a06c48eeab0904a078889b535d8c62ec8',1,'daisy::LoggerImpl< LOGGER_INTERNAL >::Init()'],['../classdaisy_1_1_m_a_x11300_multi_slave_spi_transport.html#a4511d39640b3cb149cf97fc5f206638c',1,'daisy::MAX11300MultiSlaveSpiTransport::Init()'],['../classdaisy_1_1_led_driver_pca9685.html#a468206d813cff0033a50e7ce613ad8cb',1,'daisy::LedDriverPca9685::Init()'],['../classdaisy_1_1_lcd_h_d44780.html#a559e0af82ce6958d0c8b7a62fd19647d',1,'daisy::LcdHD44780::Init()'],['../classdaisy_1_1_icm20948.html#a0ea987e535b4f5bcc0c0d06877ddda74',1,'daisy::Icm20948::Init()'],['../classdaisy_1_1_icm20948_i2_c_transport.html#ab749f713a91ac603b958080205c36181',1,'daisy::Icm20948I2CTransport::Init()'],['../classdaisy_1_1_s_s_d130x_i2_c_transport.html#aa9b9a2f7fae4b790ac84a53ba7aefd13',1,'daisy::SSD130xI2CTransport::Init()'],['../classdaisy_1_1_mcp23_x17.html#ac21c01342949be85f73eb38168c216ab',1,'daisy::Mcp23X17::Init()'],['../classdaisy_1_1_mcp23_x17.html#a8887330312af7951a8a45912b6de8a82',1,'daisy::Mcp23X17::Init(const Config &config)'],['../classdaisy_1_1_mpr121_i2_c_transport.html#a4038e5bc1ba98d6a0968f43dc5c8259b',1,'daisy::Mpr121I2CTransport::Init()'],['../classdaisy_1_1_mpr121.html#ac99982dd29c485b9af192ff20f8048fe',1,'daisy::Mpr121::Init()'],['../classdaisy_1_1_neo_pixel_i2_c_transport.html#a8c9aa0f692fbef7a313877fb4ea3d453',1,'daisy::NeoPixelI2CTransport::Init()'],['../classdaisy_1_1_neo_pixel.html#a597e94d940bb0746d15b0c1669eff2ae',1,'daisy::NeoPixel::Init()'],['../classdaisy_1_1_neo_trellis_i2_c_transport.html#a5c82812bec22d8ef70df345f7d5b853f',1,'daisy::NeoTrellisI2CTransport::Init()'],['../classdaisy_1_1_neo_trellis.html#a3b1d59ec7eb519021b9f210d68ceb376',1,'daisy::NeoTrellis::Init()'],['../classdaisy_1_1_icm20948_spi_transport.html#aeda45856d48ca16e80df40e6eee8d5d4',1,'daisy::Icm20948SpiTransport::Init()'],['../classdaisy_1_1_s_s_d130x4_wire_spi_transport.html#adfdf96d17c5754ea048e74a179ead274',1,'daisy::SSD130x4WireSpiTransport::Init()'],['../classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html#ac1e762aa00be0d04972c51853b5caa33',1,'daisy::SSD130x4WireSoftSpiTransport::Init()'],['../classdaisy_1_1_s_s_d130x_driver.html#a47cb4fe280876881fc1f2eb7e3ae8809',1,'daisy::SSD130xDriver::Init()'],['../class_sdram_handle.html#abe37a0af8d94b9745942385f2299792e',1,'SdramHandle::Init()'],['../classdaisy_1_1_shift_register4021.html#a8f6d648bed2d03b56c9b833f45b077d7',1,'daisy::ShiftRegister4021::Init()'],['../class_shift_register595.html#acc9e7d74069edd4b2711a9de01e9617c',1,'ShiftRegister595::Init()'],['../classdaisy_1_1_tlv493d_i2_c_transport.html#af72585ffc69c5aadefe327ea424309b0',1,'daisy::Tlv493dI2CTransport::Init()'],['../classdaisy_1_1_tlv493d.html#ab32b6b2d1d32ce7d50f7e3210003f10b',1,'daisy::Tlv493d::Init()'],['../classdaisy_1_1_u_s_b_host_handle.html#aaf6e11074b3f982dc723bb014ceb1390',1,'daisy::USBHostHandle::Init()'],['../classdaisy_1_1_midi_handler.html#ae449f82ffeae9ef7f71d725349fdffef',1,'daisy::MidiHandler::Init()'],['../classdaisy_1_1_midi_parser.html#adddae08eba63035e5d7d49fb3de201f8',1,'daisy::MidiParser::Init()'],['../classdaisy_1_1_parameter.html#a0dc0293e425569511a73c311bfa54f48',1,'daisy::Parameter::Init()'],['../classdaisy_1_1_rgb_led.html#aff3dc6ce4e2415a32ad09c41f003b7fe',1,'daisy::RgbLed::Init()'],['../classdaisy_1_1_switch.html#a8ca509a85dbe09f1d27bcc4ae03fc17a',1,'daisy::Switch::Init(dsy_gpio_pin pin, float update_rate, Type t, Polarity pol, Pull pu)'],['../classdaisy_1_1_switch.html#a40c083b0e9e30e878723cd985bc4ec2a',1,'daisy::Switch::Init(dsy_gpio_pin pin, float update_rate=0.f)'],['../classdaisy_1_1_switch3.html#a7d1b5b64a03773fae37ed0de0e861aa3',1,'daisy::Switch3::Init()'],['../class_usb_handle.html#a0e30c290afb4d303ecf3b0c83d71f24d',1,'UsbHandle::Init(UsbPeriph dev)'],['../class_usb_handle.html#a0e30c290afb4d303ecf3b0c83d71f24d',1,'UsbHandle::Init(UsbPeriph dev)'],['../classdaisy_1_1_midi_uart_transport.html#affbd429d68f111dd01161591f2736012',1,'daisy::MidiUartTransport::Init()'],['../classdaisy_1_1_midi_usb_transport.html#a11cf837f61be46669ced0fe3345d9625',1,'daisy::MidiUsbTransport::Init()'],['../classdaisy_1_1_wav_player.html#a098078377eb545263538e56c53b56e4e',1,'daisy::WavPlayer::Init()'],['../classdaisy_1_1_adc_handle.html#ab93340170ed44feced69fcdafc6c13ed',1,'daisy::AdcHandle::Init()'],['../classdaisy_1_1_dac_handle.html#acc45a993a9a43ba443e07ba4dd15ed57',1,'daisy::DacHandle::Init()'],['../classdaisy_1_1_g_p_i_o.html#a56572310bb54b2c847d2129dc293693b',1,'daisy::GPIO::Init(const Config &cfg)'],['../classdaisy_1_1_g_p_i_o.html#a18443f33a5e5346f522908ad555b54dc',1,'daisy::GPIO::Init(Pin p, const Config &cfg)'],['../classdaisy_1_1_g_p_i_o.html#ad1ccf2f88576b9f86467db1cea61bbde',1,'daisy::GPIO::Init(Pin p, Mode m=Mode::INPUT, Pull pu=Pull::NOPULL, Speed sp=Speed::LOW)'],['../classdaisy_1_1_i2_c_handle.html#a3010881bcac1d32f6f974edc9bbc6c0d',1,'daisy::I2CHandle::Init()'],['../classdaisy_1_1_q_s_p_i_handle.html#a835072d362f51e74c2e2c842bded97f0',1,'daisy::QSPIHandle::Init()'],['../classdaisy_1_1_logger_impl_3_01_l_o_g_g_e_r___s_e_m_i_h_o_s_t_01_4.html#af1ab65a3d6517da68ab13eafefe6d5fe',1,'daisy::LoggerImpl< LOGGER_SEMIHOST >::Init()'],['../classdaisy_1_1_logger_impl_3_01_l_o_g_g_e_r___e_x_t_e_r_n_a_l_01_4.html#a95532c749fa4e876d9d577f77d075a78',1,'daisy::LoggerImpl< LOGGER_EXTERNAL >::Init()'],['../classdaisy_1_1_dps310_spi_transport.html#a66b0440313b267da0a87b98d816d02fe',1,'daisy::Dps310SpiTransport::Init()'],['../classdaisy_1_1_dps310_i2_c_transport.html#af085d9eaba116b7dc287e8925d3da9c4',1,'daisy::Dps310I2CTransport::Init()'],['../classdaisy_1_1_dot_star.html#a5c82a302c01a806ec7c0e5ba4e8b4731',1,'daisy::DotStar::Init()'],['../classdaisy_1_1_dps310.html#a8037a8a10e239c5cca75b9e6f380771f',1,'daisy::Dps310::Init()'],['../classdaisy_1_1_dot_star_spi_transport.html#ac39572f5fe669f1da402046be2e832f4',1,'daisy::DotStarSpiTransport::Init()'],['../classdaisy_1_1_pcm3060.html#a40f95112173ba827d160e69215a7cde6',1,'daisy::Pcm3060::Init()']]], ['initbipolarcv_80',['InitBipolarCv',['../classdaisy_1_1_analog_control.html#aec736f5848fc9badbec878a48a7cd7c5',1,'daisy::AnalogControl']]], ['initialized_81',['Initialized',['../classdaisy_1_1_fat_f_s_interface.html#a54f915d84ddae48e28d75573f8b0a655',1,'daisy::FatFSInterface']]], ['initmux_82',['InitMux',['../structdaisy_1_1_adc_channel_config.html#a253f14fa84c6996b5238827608bc85f2',1,'daisy::AdcChannelConfig']]], ['initsingle_83',['InitSingle',['../structdaisy_1_1_adc_channel_config.html#ab0e0e90dbe85b179b09f384b9895123d',1,'daisy::AdcChannelConfig']]], - ['input_84',['INPUT',['../namespacedaisy.html#a58f4604034b789f798c3872963c10f50aa84cc046d48610b05c21fd3670d0c829',1,'daisy::INPUT'],['../classdaisy_1_1_g_p_i_o.html#af853f20a7e4f4d4f337c30fe1d6f1827aa84cc046d48610b05c21fd3670d0c829',1,'daisy::GPIO::INPUT']]], + ['input_84',['INPUT',['../classdaisy_1_1_g_p_i_o.html#af853f20a7e4f4d4f337c30fe1d6f1827aa84cc046d48610b05c21fd3670d0c829',1,'daisy::GPIO::INPUT'],['../namespacedaisy.html#a58f4604034b789f798c3872963c10f50aa84cc046d48610b05c21fd3670d0c829',1,'daisy::INPUT']]], ['input_5fpullup_85',['INPUT_PULLUP',['../namespacedaisy.html#a58f4604034b789f798c3872963c10f50ace9c2fb3e41547f8dfb11145f7485786',1,'daisy']]], ['inputbuffer_86',['InputBuffer',['../classdaisy_1_1_audio_handle.html#ac7317ab5e51e18172be03af8bfb194f6',1,'daisy::AudioHandle']]], - ['insert_87',['Insert',['../classdaisy_1_1_f_i_f_o_base.html#a682a813929a55d7fcc24a7aee662fef0',1,'daisy::FIFOBase::Insert()'],['../classdaisy_1_1_stack_base.html#a5e8792111c7bf05b6bc6249bda302951',1,'daisy::StackBase::Insert()']]], + ['insert_87',['Insert',['../classdaisy_1_1_stack_base.html#a5e8792111c7bf05b6bc6249bda302951',1,'daisy::StackBase::Insert()'],['../classdaisy_1_1_f_i_f_o_base.html#a682a813929a55d7fcc24a7aee662fef0',1,'daisy::FIFOBase::Insert()']]], ['intcap_5fa_88',['INTCAP_A',['../namespacedaisy.html#a8f8fe174eb9db8e8a38e8c08155f1f46a5f5d8895c5e7c818cd46e3bab503fd29',1,'daisy']]], ['intcap_5fb_89',['INTCAP_B',['../namespacedaisy.html#a8f8fe174eb9db8e8a38e8c08155f1f46afaf749c30bc70064eac7a489bdb663de',1,'daisy']]], ['intcon_5fa_90',['INTCON_A',['../namespacedaisy.html#a8f8fe174eb9db8e8a38e8c08155f1f46aae939399633a19df2d5168a9aa02502e',1,'daisy']]], @@ -207,20 +207,21 @@ var searchData= ['isactive_204',['IsActive',['../classdaisy_1_1_ui_page.html#adf73666aa856dc693ea3322f945afe40',1,'daisy::UiPage']]], ['isbuttonpressed_205',['IsButtonPressed',['../classdaisy_1_1_button_monitor.html#a2bd6ee32dff40b4c583fb93d23373964',1,'daisy::ButtonMonitor']]], ['isediting_5f_206',['isEditing_',['../classdaisy_1_1_abstract_menu.html#a264a9039249f855c38406f12f11e3266',1,'daisy::AbstractMenu']]], - ['isempty_207',['IsEmpty',['../classdaisy_1_1_rectangle.html#a975458f91d73cc015139b310e92954b8',1,'daisy::Rectangle::IsEmpty()'],['../classdaisy_1_1_f_i_f_o_base.html#af648b72bde5a8beda3d360862f4ec54b',1,'daisy::FIFOBase::IsEmpty()'],['../classdaisy_1_1_stack_base.html#ab0bd440696640c163ab14e28165454c9',1,'daisy::StackBase::IsEmpty()']]], - ['isempty_208',['isEmpty',['../classdaisy_1_1_ring_buffer.html#a36c20746c8c375782ddfb113d3ff96aa',1,'daisy::RingBuffer']]], + ['isempty_207',['isEmpty',['../classdaisy_1_1_ring_buffer.html#a36c20746c8c375782ddfb113d3ff96aa',1,'daisy::RingBuffer']]], + ['isempty_208',['IsEmpty',['../classdaisy_1_1_rectangle.html#a975458f91d73cc015139b310e92954b8',1,'daisy::Rectangle::IsEmpty()'],['../classdaisy_1_1_f_i_f_o_base.html#af648b72bde5a8beda3d360862f4ec54b',1,'daisy::FIFOBase::IsEmpty()'],['../classdaisy_1_1_stack_base.html#ab0bd440696640c163ab14e28165454c9',1,'daisy::StackBase::IsEmpty()']]], ['isfull_209',['IsFull',['../classdaisy_1_1_f_i_f_o_base.html#addd7b5bd7a4e9147ec439d02dacdddad',1,'daisy::FIFOBase::IsFull()'],['../classdaisy_1_1_stack_base.html#aff76243c27fd8bdfb0f768d0ad1ae0ed',1,'daisy::StackBase::IsFull()']]], ['isfunctionbuttondown_210',['IsFunctionButtonDown',['../classdaisy_1_1_abstract_menu.html#aeff946df401f00f02eb9af1dd81801f4',1,'daisy::AbstractMenu']]], ['isinitialized_211',['IsInitialized',['../classdaisy_1_1_sai_handle.html#abf1bb17119fb207c3681d02a66e32291',1,'daisy::SaiHandle']]], - ['ismoving_212',['IsMoving',['../classdaisy_1_1_pot_monitor.html#a20c68cced121ad6151799c95be06c15e',1,'daisy::PotMonitor']]], - ['isopaque_213',['IsOpaque',['../classdaisy_1_1_ui_page.html#a2af031d1b92672e255e106168a477dad',1,'daisy::UiPage']]], - ['isqueueempty_214',['IsQueueEmpty',['../classdaisy_1_1_ui_event_queue.html#a9fe4f90f267c39d57a068ee676eae18e',1,'daisy::UiEventQueue']]], - ['isready_215',['IsReady',['../classdaisy_1_1_random.html#a6292d9bf55a0b294d427a36efb7c39a4',1,'daisy::Random']]], - ['isrecording_216',['IsRecording',['../classdaisy_1_1_wav_writer.html#a245c0a0bda80385bc3c293f301c468de',1,'daisy::WavWriter']]], - ['isvalid_217',['IsValid',['../structdaisy_1_1_pin.html#ac72ec3d38c8a42f047a3bead1b2c5ee7',1,'daisy::Pin']]], - ['itcmram_218',['ITCMRAM',['../classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669ab703959029aeef3bb2207b6d2dc3cc87',1,'daisy::System']]], - ['itemconfig_219',['ItemConfig',['../structdaisy_1_1_abstract_menu_1_1_item_config.html',1,'daisy::AbstractMenu']]], - ['itemobject_220',['itemObject',['../structdaisy_1_1_abstract_menu_1_1_item_config.html#a99f29482e671fe3d1193123dc1f4bdc9',1,'daisy::AbstractMenu::ItemConfig']]], - ['items_5f_221',['items_',['../classdaisy_1_1_abstract_menu.html#a9839d364073c994a77f6948db2feaf61',1,'daisy::AbstractMenu']]], - ['itemtype_222',['ItemType',['../classdaisy_1_1_abstract_menu.html#a48039035e616d6ecf42cc15561544fad',1,'daisy::AbstractMenu']]] + ['islistening_212',['IsListening',['../classdaisy_1_1_uart_handler.html#a47f395c1ae6530b8b497c8fd76cb6d59',1,'daisy::UartHandler']]], + ['ismoving_213',['IsMoving',['../classdaisy_1_1_pot_monitor.html#a20c68cced121ad6151799c95be06c15e',1,'daisy::PotMonitor']]], + ['isopaque_214',['IsOpaque',['../classdaisy_1_1_ui_page.html#a2af031d1b92672e255e106168a477dad',1,'daisy::UiPage']]], + ['isqueueempty_215',['IsQueueEmpty',['../classdaisy_1_1_ui_event_queue.html#a9fe4f90f267c39d57a068ee676eae18e',1,'daisy::UiEventQueue']]], + ['isready_216',['IsReady',['../classdaisy_1_1_random.html#a6292d9bf55a0b294d427a36efb7c39a4',1,'daisy::Random']]], + ['isrecording_217',['IsRecording',['../classdaisy_1_1_wav_writer.html#a245c0a0bda80385bc3c293f301c468de',1,'daisy::WavWriter']]], + ['isvalid_218',['IsValid',['../structdaisy_1_1_pin.html#ac72ec3d38c8a42f047a3bead1b2c5ee7',1,'daisy::Pin']]], + ['itcmram_219',['ITCMRAM',['../classdaisy_1_1_system.html#aa40158e5b80587e80153b16ae22c6669ab703959029aeef3bb2207b6d2dc3cc87',1,'daisy::System']]], + ['itemconfig_220',['ItemConfig',['../structdaisy_1_1_abstract_menu_1_1_item_config.html',1,'daisy::AbstractMenu']]], + ['itemobject_221',['itemObject',['../structdaisy_1_1_abstract_menu_1_1_item_config.html#a99f29482e671fe3d1193123dc1f4bdc9',1,'daisy::AbstractMenu::ItemConfig']]], + ['items_5f_222',['items_',['../classdaisy_1_1_abstract_menu.html#a9839d364073c994a77f6948db2feaf61',1,'daisy::AbstractMenu']]], + ['itemtype_223',['ItemType',['../classdaisy_1_1_abstract_menu.html#a48039035e616d6ecf42cc15561544fad',1,'daisy::AbstractMenu']]] ]; diff --git a/search/all_d.js b/search/all_d.js index 0743c3096..84175ce19 100644 --- a/search/all_d.js +++ b/search/all_d.js @@ -31,8 +31,8 @@ var searchData= ['mcpregister_28',['MCPRegister',['../namespacedaisy.html#a8f8fe174eb9db8e8a38e8c08155f1f46',1,'daisy']]], ['mcu_5fis_5fmaster_29',['mcu_is_master',['../structdaisy_1_1_wm8731_1_1_config.html#a34027e7604b8cfc9649d4eb972665f99',1,'daisy::Wm8731::Config']]], ['measurementtime_30',['measurementTime',['../structdaisy_1_1_tlv493d_1_1_access_mode__t.html#a7899f7a1fc68175e24d947a47e089a46',1,'daisy::Tlv493d::AccessMode_t']]], - ['media_31',['Media',['../structdaisy_1_1_fat_f_s_interface_1_1_config.html#aa749d7b2739147217cfbc38c99462334',1,'daisy::FatFSInterface::Config']]], - ['media_32',['media',['../structdaisy_1_1_fat_f_s_interface_1_1_config.html#aa78b8109de982c0b958d44d875a91588',1,'daisy::FatFSInterface::Config']]], + ['media_31',['media',['../structdaisy_1_1_fat_f_s_interface_1_1_config.html#aa78b8109de982c0b958d44d875a91588',1,'daisy::FatFSInterface::Config']]], + ['media_32',['Media',['../structdaisy_1_1_fat_f_s_interface_1_1_config.html#aa749d7b2739147217cfbc38c99462334',1,'daisy::FatFSInterface::Config']]], ['media_5fsd_33',['MEDIA_SD',['../structdaisy_1_1_fat_f_s_interface_1_1_config.html#aa749d7b2739147217cfbc38c99462334a2ced0a5aac16ae040d7f6b032525fd5f',1,'daisy::FatFSInterface::Config']]], ['media_5fusb_34',['MEDIA_USB',['../structdaisy_1_1_fat_f_s_interface_1_1_config.html#aa749d7b2739147217cfbc38c99462334a9fd09442cf8e39f248d0984128076185',1,'daisy::FatFSInterface::Config']]], ['medium_35',['MEDIUM',['../classdaisy_1_1_g_p_i_o.html#ab46ae5f22fd6af1e941fa05252a832f3ac87f3be66ffc3c0d4249f1c2cc5f3cce',1,'daisy::GPIO']]], @@ -42,88 +42,91 @@ var searchData= ['menuencoderid_39',['menuEncoderId',['../structdaisy_1_1_u_i_1_1_special_control_ids.html#acd6212fa0072616b591c9b6093ea70b6',1,'daisy::UI::SpecialControlIds']]], ['message_5ftype_40',['message_type',['../structdaisy_1_1_m_t_c_quarter_frame_event.html#a31b934d70fcc769db539a0e282a98340',1,'daisy::MTCQuarterFrameEvent']]], ['messagelast_41',['MessageLast',['../group__midi__events.html#ggaaf09bb687034c8776ca0c68ed3ed4179a462782a09a7554ea61fcf5a901b745e1',1,'daisy']]], - ['midi_42',['midi',['../classdaisy_1_1_daisy_patch.html#ab0f8c32d52ff82c8e42123eef88fc3ee',1,'daisy::DaisyPatch::midi'],['../classdaisy_1_1_daisy_pod.html#acee1a11a60ea323c0e4efbef7507ab9b',1,'daisy::DaisyPod::midi'],['../classdaisy_1_1_daisy_field.html#a544c71eb979b41a2e827d38a598943f6',1,'daisy::DaisyField::midi']]], + ['midi_42',['midi',['../classdaisy_1_1_daisy_field.html#a544c71eb979b41a2e827d38a598943f6',1,'daisy::DaisyField::midi'],['../classdaisy_1_1_daisy_patch.html#ab0f8c32d52ff82c8e42123eef88fc3ee',1,'daisy::DaisyPatch::midi'],['../classdaisy_1_1_daisy_pod.html#acee1a11a60ea323c0e4efbef7507ab9b',1,'daisy::DaisyPod::midi']]], ['midi_43',['MIDI',['../group__midi.html',1,'']]], ['midi_2eh_44',['midi.h',['../midi_8h.html',1,'']]], ['midi_5fevents_45',['MIDI_EVENTS',['../group__midi__events.html',1,'']]], - ['midievent_46',['MidiEvent',['../structdaisy_1_1_midi_event.html',1,'daisy']]], - ['midievent_2eh_47',['MidiEvent.h',['../_midi_event_8h.html',1,'']]], - ['midihandler_48',['MidiHandler',['../classdaisy_1_1_midi_handler.html',1,'daisy::MidiHandler< Transport >'],['../classdaisy_1_1_midi_handler.html#a7194c67c1ac71934581b37ebafb0fc0a',1,'daisy::MidiHandler::MidiHandler()']]], - ['midihandler_3c_20midiuarttransport_20_3e_49',['MidiHandler< MidiUartTransport >',['../classdaisy_1_1_midi_handler.html',1,'daisy']]], - ['midimessagetype_50',['MidiMessageType',['../group__midi__events.html#gaaf09bb687034c8776ca0c68ed3ed4179',1,'daisy']]], - ['midiuarthandler_51',['MidiUartHandler',['../group__midi.html#gaaa674dd8cc356904785b384ed493b201',1,'daisy']]], - ['midiuarttransport_52',['MidiUartTransport',['../classdaisy_1_1_midi_uart_transport.html',1,'daisy::MidiUartTransport'],['../classdaisy_1_1_midi_uart_transport.html#add8bebc579df1cdbe95f66660b2b412d',1,'daisy::MidiUartTransport::MidiUartTransport()']]], - ['midiusbhandler_53',['MidiUsbHandler',['../group__midi.html#gaae7397a71c41654e7d4236b47185ced1',1,'daisy']]], - ['midiusbtransport_54',['MidiUsbTransport',['../classdaisy_1_1_midi_usb_transport.html',1,'daisy::MidiUsbTransport'],['../classdaisy_1_1_midi_usb_transport.html#ace2a362aa40470215a9c77994937352f',1,'daisy::MidiUsbTransport::MidiUsbTransport(const MidiUsbTransport &other)=default'],['../classdaisy_1_1_midi_usb_transport.html#a7f04168895972a3bb8d98670ca9ca6b0',1,'daisy::MidiUsbTransport::MidiUsbTransport()']]], - ['miso_55',['miso',['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#ae5ab6c8fdd8a01bed98b1fb6e172da22',1,'daisy::MultiSlaveSpiHandle::Config::miso'],['../structdaisy_1_1_spi_handle_1_1_config.html#ac3cb9b26b974ca55a47f5b4c807b9a78',1,'daisy::SpiHandle::Config::miso'],['../structdaisy_1_1_m_a_x11300_multi_slave_spi_transport_1_1_config_1_1_pin_config.html#a9f72f602761d1007cea1df04c588c7bd',1,'daisy::MAX11300MultiSlaveSpiTransport::Config::PinConfig::miso'],['../structdaisy_1_1_icm20948_spi_transport_1_1_config.html#a0970eb6a982a799564185a87aef6be58',1,'daisy::Icm20948SpiTransport::Config::miso'],['../structdaisy_1_1_dps310_spi_transport_1_1_config.html#a6b3bf0ec156dc7daf52adf6f09f47776',1,'daisy::Dps310SpiTransport::Config::miso']]], - ['modaddreg_56',['ModAddReg',['../classdaisy_1_1_neo_pixel.html#aa85935e2b18e71704d67c5cdda2df878',1,'daisy::NeoPixel']]], - ['modbaseadd_57',['ModBaseAdd',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3bef',1,'daisy::NeoPixel']]], - ['mode_58',['mode',['../structdaisy_1_1_dac_handle_1_1_config.html#a58000f241de440fb4ea83384aa84b370',1,'daisy::DacHandle::Config']]], - ['mode_59',['Mode',['../classdaisy_1_1_dac_handle.html#af1ab441190983a26ed15a26b77028082',1,'daisy::DacHandle::Mode'],['../classdaisy_1_1_g_p_i_o.html#af853f20a7e4f4d4f337c30fe1d6f1827',1,'daisy::GPIO::Mode'],['../structdaisy_1_1_i2_c_handle_1_1_config.html#a0732725b29fd620342cc5779911faf99',1,'daisy::I2CHandle::Config::Mode'],['../structdaisy_1_1_q_s_p_i_handle_1_1_config.html#a9641ed459b3ef3baca74ad0d49d78a83',1,'daisy::QSPIHandle::Config::Mode'],['../structdaisy_1_1_spi_handle_1_1_config.html#a00488576b0a4c1364cb2fd09164a30f7',1,'daisy::SpiHandle::Config::Mode'],['../structdaisy_1_1_uart_handler_1_1_config.html#ae0a7cc8284cbbe42f1d95797b5862084',1,'daisy::UartHandler::Config::Mode']]], - ['mode_60',['mode',['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html#a129251f16ded292d06ea40ed3b33ccfc',1,'daisy::Mpr121I2CTransport::Config::mode'],['../structdaisy_1_1_g_p_i_o_1_1_config.html#a414f899ea1b2f25a0bc6acee81488a83',1,'daisy::GPIO::Config::mode'],['../structdsy__gpio.html#a12e4d73b334e9caedb135224bd288384',1,'dsy_gpio::mode'],['../structdaisy_1_1_i2_c_handle_1_1_config.html#a4ea7f774e5aaf99e868cd341ac8183c3',1,'daisy::I2CHandle::Config::mode'],['../structdaisy_1_1_q_s_p_i_handle_1_1_config.html#afdc7da23330ec0d348b5cb365e574c08',1,'daisy::QSPIHandle::Config::mode'],['../structdaisy_1_1_spi_handle_1_1_config.html#a3b5162776d4041f88248fa439c6076a8',1,'daisy::SpiHandle::Config::mode'],['../structdaisy_1_1_uart_handler_1_1_config.html#a3b30e6ff02efbb4829b888f7d93091ea',1,'daisy::UartHandler::Config::mode']]], - ['mode_5flast_61',['MODE_LAST',['../structdaisy_1_1_q_s_p_i_handle_1_1_config.html#a9641ed459b3ef3baca74ad0d49d78a83af6416a9325a39c0dff69c011c44eee4e',1,'daisy::QSPIHandle::Config']]], - ['modifyvalue_62',['ModifyValue',['../classdaisy_1_1_abstract_menu_1_1_custom_item.html#a73315232a9ac1809623de3bd4c57aca6',1,'daisy::AbstractMenu::CustomItem::ModifyValue(float valueSliderPosition0To1, bool isFunctionButtonPressed)'],['../classdaisy_1_1_abstract_menu_1_1_custom_item.html#a5e3041b957344369e785d53b0b8def40',1,'daisy::AbstractMenu::CustomItem::ModifyValue(int16_t increments, uint16_t stepsPerRevolution, bool isFunctionButtonPressed)']]], - ['modulebaseaddress_63',['ModuleBaseAddress',['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfaf',1,'daisy::NeoTrellis']]], - ['monomodeon_64',['MonoModeOn',['../group__midi__events.html#ggaf9da54b73be4dec526670bd6c53ad98aac8d06258be891c767eb1074301662b25',1,'daisy']]], - ['monomodeonevent_65',['MonoModeOnEvent',['../structdaisy_1_1_mono_mode_on_event.html',1,'daisy']]], - ['mosi_66',['mosi',['../structdaisy_1_1_dps310_spi_transport_1_1_config.html#aa987d232a2b337bf2851dd63a33d2e4a',1,'daisy::Dps310SpiTransport::Config::mosi'],['../structdaisy_1_1_icm20948_spi_transport_1_1_config.html#acf895a37cbbfab785b358762adc84c6e',1,'daisy::Icm20948SpiTransport::Config::mosi'],['../structdaisy_1_1_m_a_x11300_multi_slave_spi_transport_1_1_config_1_1_pin_config.html#a0dcc677874f2ab2e7c519f8106804866',1,'daisy::MAX11300MultiSlaveSpiTransport::Config::PinConfig::mosi'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#abf916c22d230e1043b50b37ca236d55f',1,'daisy::MultiSlaveSpiHandle::Config::mosi'],['../structdaisy_1_1_spi_handle_1_1_config.html#a42f657f0cc1ad98f107602d8263809ac',1,'daisy::SpiHandle::Config::mosi'],['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#ab96fc6bc46066a9248add9a536ec554c',1,'daisy::SSD130x4WireSoftSpiTransport::Config::mosi']]], - ['mpr121_67',['Mpr121',['../classdaisy_1_1_mpr121.html',1,'daisy::Mpr121< Transport >'],['../classdaisy_1_1_mpr121.html#a423dfd228ca7e1304bf449f0559cba84',1,'daisy::Mpr121::Mpr121()']]], - ['mpr121_2eh_68',['mpr121.h',['../mpr121_8h.html',1,'']]], - ['mpr121_5fautoconfig0_69',['MPR121_AUTOCONFIG0',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a84473ee45de5bde4197837b2555724fe',1,'daisy::Mpr121']]], - ['mpr121_5fautoconfig1_70',['MPR121_AUTOCONFIG1',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798abaf3232cc07540fb422a930ab9d350e7',1,'daisy::Mpr121']]], - ['mpr121_5fbaseline_5f0_71',['MPR121_BASELINE_0',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798ac9a7569eb76aee36336844091bd389a7',1,'daisy::Mpr121']]], - ['mpr121_5fchargecurr_5f0_72',['MPR121_CHARGECURR_0',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798afc5b099316181762cef4e012f48177b0',1,'daisy::Mpr121']]], - ['mpr121_5fchargetime_5f1_73',['MPR121_CHARGETIME_1',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798abe3fe67998f7b3f714d2f3ba68ef20bc',1,'daisy::Mpr121']]], - ['mpr121_5fconfig1_74',['MPR121_CONFIG1',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798ad91f34027ed9461e9309b693980b7e84',1,'daisy::Mpr121']]], - ['mpr121_5fconfig2_75',['MPR121_CONFIG2',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798ad59b4469cede1a44e95539bdd8edb361',1,'daisy::Mpr121']]], - ['mpr121_5fdebounce_76',['MPR121_DEBOUNCE',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a1976a8eee3617dcca3c098bdc191a7e4',1,'daisy::Mpr121']]], - ['mpr121_5fecr_77',['MPR121_ECR',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798ae108af091b897029733e3b43059eccdc',1,'daisy::Mpr121']]], - ['mpr121_5ffdlf_78',['MPR121_FDLF',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a29c75502d048ce04b44b8390f44d807c',1,'daisy::Mpr121']]], - ['mpr121_5ffdlr_79',['MPR121_FDLR',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a41acf682bc02d2cfe0a460e145aa5973',1,'daisy::Mpr121']]], - ['mpr121_5ffdlt_80',['MPR121_FDLT',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a94d3b11b9138f6f4213fadcf760524fe',1,'daisy::Mpr121']]], - ['mpr121_5ffiltdata_5f0h_81',['MPR121_FILTDATA_0H',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798aeed0c3e4600908f4cddff2c247af16e3',1,'daisy::Mpr121']]], - ['mpr121_5ffiltdata_5f0l_82',['MPR121_FILTDATA_0L',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a8963e3a75478e33f625eba239dc67629',1,'daisy::Mpr121']]], - ['mpr121_5fgpioclr_83',['MPR121_GPIOCLR',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a20a180b8ae26a5da2ac8459261d813af',1,'daisy::Mpr121']]], - ['mpr121_5fgpiodir_84',['MPR121_GPIODIR',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a24f6b298916b55dd96bbf3507ed2d6bb',1,'daisy::Mpr121']]], - ['mpr121_5fgpioen_85',['MPR121_GPIOEN',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a8ef0b8cc6813a612b38a6b22d88d1a48',1,'daisy::Mpr121']]], - ['mpr121_5fgpioset_86',['MPR121_GPIOSET',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798adb795aae4ef37404efa3c2ce81995b28',1,'daisy::Mpr121']]], - ['mpr121_5fgpiotoggle_87',['MPR121_GPIOTOGGLE',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798afb31150b6e7796dfa003f189cafe3bd6',1,'daisy::Mpr121']]], - ['mpr121_5fi2caddr_5fdefault_88',['MPR121_I2CADDR_DEFAULT',['../mpr121_8h.html#aa4a9474e42d9c498f600c9ad8781f714',1,'mpr121.h']]], - ['mpr121_5flowlimit_89',['MPR121_LOWLIMIT',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a969b21bef0f769d9b6e235493d2875e6',1,'daisy::Mpr121']]], - ['mpr121_5fmhdf_90',['MPR121_MHDF',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a91a86c1b1a7a4159d953d38cefe723ee',1,'daisy::Mpr121']]], - ['mpr121_5fmhdr_91',['MPR121_MHDR',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a1b7901e6413893cffd5b831ee3b9f961',1,'daisy::Mpr121']]], - ['mpr121_5fnclf_92',['MPR121_NCLF',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798aa611799214b98edcc33e88b6943c8ba6',1,'daisy::Mpr121']]], - ['mpr121_5fnclr_93',['MPR121_NCLR',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a7a1cfb7091401bf95a1b0d7ca6d52235',1,'daisy::Mpr121']]], - ['mpr121_5fnclt_94',['MPR121_NCLT',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798afb8ee1195d5b5359d4c6671885676997',1,'daisy::Mpr121']]], - ['mpr121_5fnhdf_95',['MPR121_NHDF',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a5fedb837a5080779850e4fc15285ec24',1,'daisy::Mpr121']]], - ['mpr121_5fnhdr_96',['MPR121_NHDR',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a5c72f34b039b1abe28927e46a4ac17b3',1,'daisy::Mpr121']]], - ['mpr121_5fnhdt_97',['MPR121_NHDT',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a046176439ef7ecd2533d6feeb59eb376',1,'daisy::Mpr121']]], - ['mpr121_5frelease_5fthreshold_5fdefault_98',['MPR121_RELEASE_THRESHOLD_DEFAULT',['../mpr121_8h.html#af51b589d3c7f29cc43fff6f96715a0e9',1,'mpr121.h']]], - ['mpr121_5freleaseth_5f0_99',['MPR121_RELEASETH_0',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a98d7dbbd774fe8b1d46ed4d96dbd7754',1,'daisy::Mpr121']]], - ['mpr121_5fsoftreset_100',['MPR121_SOFTRESET',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a372b6ae6ff09c8e4cab72046ca1800de',1,'daisy::Mpr121']]], - ['mpr121_5ftargetlimit_101',['MPR121_TARGETLIMIT',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a5f8308d4c03ec3a7875380bc61e138e6',1,'daisy::Mpr121']]], - ['mpr121_5ftouch_5fthreshold_5fdefault_102',['MPR121_TOUCH_THRESHOLD_DEFAULT',['../mpr121_8h.html#a4b3fd951704a4d69529cec6c8996a560',1,'mpr121.h']]], - ['mpr121_5ftouchstatus_5fh_103',['MPR121_TOUCHSTATUS_H',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a807ad93180b47f0ee90d21e60a0ae82f',1,'daisy::Mpr121']]], - ['mpr121_5ftouchstatus_5fl_104',['MPR121_TOUCHSTATUS_L',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798af072087bd77d996459c508e7ddb85b95',1,'daisy::Mpr121']]], - ['mpr121_5ftouchth_5f0_105',['MPR121_TOUCHTH_0',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a5fe6816a59778b37eedab9fae0452796',1,'daisy::Mpr121']]], - ['mpr121_5fuplimit_106',['MPR121_UPLIMIT',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798ae65f5c099d28098af1cae01c71f0d38b',1,'daisy::Mpr121']]], - ['mpr121i2c_107',['Mpr121I2C',['../group__external.html#gadff605cfc4e7944ed1eb8b5bc68cf4b8',1,'daisy']]], - ['mpr121i2ctransport_108',['Mpr121I2CTransport',['../classdaisy_1_1_mpr121_i2_c_transport.html',1,'daisy::Mpr121I2CTransport'],['../classdaisy_1_1_mpr121_i2_c_transport.html#a38f985567ef23c8f1e03d829a6fb5aaf',1,'daisy::Mpr121I2CTransport::Mpr121I2CTransport()']]], - ['msb_5ffirst_5flj_109',['MSB_FIRST_LJ',['../structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104a463db1dea7845050306bf03576aeeea5',1,'daisy::Wm8731::Config']]], - ['msb_5ffirst_5frj_110',['MSB_FIRST_RJ',['../structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104ae15fc5eea5e09485aef36afee2d15590',1,'daisy::Wm8731::Config']]], - ['msd_5ferror_111',['MSD_ERROR',['../group__utility.html#gaa3fc6f6551d2bfd4524379e0c2526516',1,'bsp_sd_diskio.h']]], - ['msd_5ferror_5fsd_5fnot_5fpresent_112',['MSD_ERROR_SD_NOT_PRESENT',['../group__utility.html#gaf544b72de2dd084023a2106d78df7d96',1,'bsp_sd_diskio.h']]], - ['msd_5fok_113',['MSD_OK',['../group__utility.html#ga0486e06b5a59ffb7579cf6cb29037bc8',1,'bsp_sd_diskio.h']]], - ['mtcquarterframe_114',['MTCQuarterFrame',['../group__midi__events.html#gga4f648ead175d62e97ceb4d3b49f692f5a19c6d1c07df0cf836fd7ef333b3081bd',1,'daisy']]], - ['mtcquarterframeevent_115',['MTCQuarterFrameEvent',['../structdaisy_1_1_m_t_c_quarter_frame_event.html',1,'daisy']]], - ['multiple_5fio_5fread_5fid_5fcmd_116',['MULTIPLE_IO_READ_ID_CMD',['../group__flash.html#ga970696b0d306f51162bd75ddcacafa8d',1,'MULTIPLE_IO_READ_ID_CMD: flash_IS25LP064A.h'],['../group__flash.html#ga970696b0d306f51162bd75ddcacafa8d',1,'MULTIPLE_IO_READ_ID_CMD: flash_IS25LP080D.h']]], - ['multislavespihandle_117',['MultiSlaveSpiHandle',['../classdaisy_1_1_multi_slave_spi_handle.html',1,'daisy::MultiSlaveSpiHandle'],['../classdaisy_1_1_multi_slave_spi_handle.html#a04c84637b158d7f362f88ecfcf1fbdb8',1,'daisy::MultiSlaveSpiHandle::MultiSlaveSpiHandle()'],['../classdaisy_1_1_multi_slave_spi_handle.html#abb9ab2ccf9b7750d3346194e6e495c63',1,'daisy::MultiSlaveSpiHandle::MultiSlaveSpiHandle(const MultiSlaveSpiHandle &other)=delete']]], - ['mute_118',['Mute',['../classdaisy_1_1_u_i.html#a0ce9a7071de333627b2b2329b01fb45b',1,'daisy::UI']]], - ['mux_5fchannels_5f_119',['mux_channels_',['../structdaisy_1_1_adc_channel_config.html#a9e61599527b16d2a47c76f0e3fd8c45c',1,'daisy::AdcChannelConfig']]], - ['mux_5fpin_5f_120',['mux_pin_',['../structdaisy_1_1_adc_channel_config.html#ab617cb7700615026b926ff9675e8f90f',1,'daisy::AdcChannelConfig']]], - ['mux_5fsel_5f0_121',['MUX_SEL_0',['../structdaisy_1_1_adc_channel_config.html#af601e66da7eb60721792861fc91f2c83a473e6b587ac9328655452640bf373884',1,'daisy::AdcChannelConfig']]], - ['mux_5fsel_5f1_122',['MUX_SEL_1',['../structdaisy_1_1_adc_channel_config.html#af601e66da7eb60721792861fc91f2c83a339b00b0ca5d523119a6f522e6649f2a',1,'daisy::AdcChannelConfig']]], - ['mux_5fsel_5f2_123',['MUX_SEL_2',['../structdaisy_1_1_adc_channel_config.html#af601e66da7eb60721792861fc91f2c83a9d3735b815879adb97ce0a48f528f39a',1,'daisy::AdcChannelConfig']]], - ['mux_5fsel_5flast_124',['MUX_SEL_LAST',['../structdaisy_1_1_adc_channel_config.html#af601e66da7eb60721792861fc91f2c83a00a6235ac198f2fdd9ccae951c908da2',1,'daisy::AdcChannelConfig']]], - ['muxpin_125',['MuxPin',['../structdaisy_1_1_adc_channel_config.html#af601e66da7eb60721792861fc91f2c83',1,'daisy::AdcChannelConfig']]] + ['midi_5fparser_2eh_46',['midi_parser.h',['../midi__parser_8h.html',1,'']]], + ['midievent_47',['MidiEvent',['../structdaisy_1_1_midi_event.html',1,'daisy']]], + ['midievent_2eh_48',['MidiEvent.h',['../_midi_event_8h.html',1,'']]], + ['midihandler_49',['MidiHandler',['../classdaisy_1_1_midi_handler.html',1,'daisy::MidiHandler< Transport >'],['../classdaisy_1_1_midi_handler.html#a7194c67c1ac71934581b37ebafb0fc0a',1,'daisy::MidiHandler::MidiHandler()']]], + ['midihandler_3c_20midiuarttransport_20_3e_50',['MidiHandler< MidiUartTransport >',['../classdaisy_1_1_midi_handler.html',1,'daisy']]], + ['midimessagetype_51',['MidiMessageType',['../group__midi__events.html#gaaf09bb687034c8776ca0c68ed3ed4179',1,'daisy']]], + ['midiparser_52',['MidiParser',['../classdaisy_1_1_midi_parser.html',1,'daisy::MidiParser'],['../classdaisy_1_1_midi_parser.html#a7c8613042df01c8fbd96f38618266c93',1,'daisy::MidiParser::MidiParser()']]], + ['midirxparsecallback_53',['MidiRxParseCallback',['../classdaisy_1_1_midi_usb_transport.html#ad4ea4fdde06e5e46f5f1054a878558aa',1,'daisy::MidiUsbTransport::MidiRxParseCallback'],['../classdaisy_1_1_midi_uart_transport.html#a7fcae1da16a65ff64e023942843ceffa',1,'daisy::MidiUartTransport::MidiRxParseCallback']]], + ['midiuarthandler_54',['MidiUartHandler',['../group__midi.html#gaaa674dd8cc356904785b384ed493b201',1,'daisy']]], + ['midiuarttransport_55',['MidiUartTransport',['../classdaisy_1_1_midi_uart_transport.html',1,'daisy::MidiUartTransport'],['../classdaisy_1_1_midi_uart_transport.html#add8bebc579df1cdbe95f66660b2b412d',1,'daisy::MidiUartTransport::MidiUartTransport()']]], + ['midiusbhandler_56',['MidiUsbHandler',['../group__midi.html#gaae7397a71c41654e7d4236b47185ced1',1,'daisy']]], + ['midiusbtransport_57',['MidiUsbTransport',['../classdaisy_1_1_midi_usb_transport.html',1,'daisy::MidiUsbTransport'],['../classdaisy_1_1_midi_usb_transport.html#ace2a362aa40470215a9c77994937352f',1,'daisy::MidiUsbTransport::MidiUsbTransport(const MidiUsbTransport &other)=default'],['../classdaisy_1_1_midi_usb_transport.html#a7f04168895972a3bb8d98670ca9ca6b0',1,'daisy::MidiUsbTransport::MidiUsbTransport()']]], + ['miso_58',['miso',['../structdaisy_1_1_m_a_x11300_multi_slave_spi_transport_1_1_config_1_1_pin_config.html#a9f72f602761d1007cea1df04c588c7bd',1,'daisy::MAX11300MultiSlaveSpiTransport::Config::PinConfig::miso'],['../structdaisy_1_1_dps310_spi_transport_1_1_config.html#a6b3bf0ec156dc7daf52adf6f09f47776',1,'daisy::Dps310SpiTransport::Config::miso'],['../structdaisy_1_1_icm20948_spi_transport_1_1_config.html#a0970eb6a982a799564185a87aef6be58',1,'daisy::Icm20948SpiTransport::Config::miso'],['../structdaisy_1_1_spi_handle_1_1_config.html#ac3cb9b26b974ca55a47f5b4c807b9a78',1,'daisy::SpiHandle::Config::miso'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#ae5ab6c8fdd8a01bed98b1fb6e172da22',1,'daisy::MultiSlaveSpiHandle::Config::miso']]], + ['modaddreg_59',['ModAddReg',['../classdaisy_1_1_neo_pixel.html#aa85935e2b18e71704d67c5cdda2df878',1,'daisy::NeoPixel']]], + ['modbaseadd_60',['ModBaseAdd',['../classdaisy_1_1_neo_pixel.html#a05ba8bfa35fcf36a10dbb06dfb1c3bef',1,'daisy::NeoPixel']]], + ['mode_61',['mode',['../structdsy__gpio.html#a12e4d73b334e9caedb135224bd288384',1,'dsy_gpio']]], + ['mode_62',['Mode',['../classdaisy_1_1_dac_handle.html#af1ab441190983a26ed15a26b77028082',1,'daisy::DacHandle::Mode'],['../classdaisy_1_1_g_p_i_o.html#af853f20a7e4f4d4f337c30fe1d6f1827',1,'daisy::GPIO::Mode'],['../structdaisy_1_1_i2_c_handle_1_1_config.html#a0732725b29fd620342cc5779911faf99',1,'daisy::I2CHandle::Config::Mode'],['../structdaisy_1_1_q_s_p_i_handle_1_1_config.html#a9641ed459b3ef3baca74ad0d49d78a83',1,'daisy::QSPIHandle::Config::Mode'],['../structdaisy_1_1_spi_handle_1_1_config.html#a00488576b0a4c1364cb2fd09164a30f7',1,'daisy::SpiHandle::Config::Mode'],['../structdaisy_1_1_uart_handler_1_1_config.html#ae0a7cc8284cbbe42f1d95797b5862084',1,'daisy::UartHandler::Config::Mode']]], + ['mode_63',['mode',['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html#a129251f16ded292d06ea40ed3b33ccfc',1,'daisy::Mpr121I2CTransport::Config::mode'],['../structdaisy_1_1_dac_handle_1_1_config.html#a58000f241de440fb4ea83384aa84b370',1,'daisy::DacHandle::Config::mode'],['../structdaisy_1_1_g_p_i_o_1_1_config.html#a414f899ea1b2f25a0bc6acee81488a83',1,'daisy::GPIO::Config::mode'],['../structdaisy_1_1_i2_c_handle_1_1_config.html#a4ea7f774e5aaf99e868cd341ac8183c3',1,'daisy::I2CHandle::Config::mode'],['../structdaisy_1_1_q_s_p_i_handle_1_1_config.html#afdc7da23330ec0d348b5cb365e574c08',1,'daisy::QSPIHandle::Config::mode'],['../structdaisy_1_1_spi_handle_1_1_config.html#a3b5162776d4041f88248fa439c6076a8',1,'daisy::SpiHandle::Config::mode'],['../structdaisy_1_1_uart_handler_1_1_config.html#a3b30e6ff02efbb4829b888f7d93091ea',1,'daisy::UartHandler::Config::mode']]], + ['mode_5flast_64',['MODE_LAST',['../structdaisy_1_1_q_s_p_i_handle_1_1_config.html#a9641ed459b3ef3baca74ad0d49d78a83af6416a9325a39c0dff69c011c44eee4e',1,'daisy::QSPIHandle::Config']]], + ['modifyvalue_65',['ModifyValue',['../classdaisy_1_1_abstract_menu_1_1_custom_item.html#a73315232a9ac1809623de3bd4c57aca6',1,'daisy::AbstractMenu::CustomItem::ModifyValue(float valueSliderPosition0To1, bool isFunctionButtonPressed)'],['../classdaisy_1_1_abstract_menu_1_1_custom_item.html#a5e3041b957344369e785d53b0b8def40',1,'daisy::AbstractMenu::CustomItem::ModifyValue(int16_t increments, uint16_t stepsPerRevolution, bool isFunctionButtonPressed)']]], + ['modulebaseaddress_66',['ModuleBaseAddress',['../classdaisy_1_1_neo_trellis.html#a3b99334c07392818ffcc518aa344cfaf',1,'daisy::NeoTrellis']]], + ['monomodeon_67',['MonoModeOn',['../group__midi__events.html#ggaf9da54b73be4dec526670bd6c53ad98aac8d06258be891c767eb1074301662b25',1,'daisy']]], + ['monomodeonevent_68',['MonoModeOnEvent',['../structdaisy_1_1_mono_mode_on_event.html',1,'daisy']]], + ['mosi_69',['mosi',['../structdaisy_1_1_dps310_spi_transport_1_1_config.html#aa987d232a2b337bf2851dd63a33d2e4a',1,'daisy::Dps310SpiTransport::Config::mosi'],['../structdaisy_1_1_icm20948_spi_transport_1_1_config.html#acf895a37cbbfab785b358762adc84c6e',1,'daisy::Icm20948SpiTransport::Config::mosi'],['../structdaisy_1_1_m_a_x11300_multi_slave_spi_transport_1_1_config_1_1_pin_config.html#a0dcc677874f2ab2e7c519f8106804866',1,'daisy::MAX11300MultiSlaveSpiTransport::Config::PinConfig::mosi'],['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#ab96fc6bc46066a9248add9a536ec554c',1,'daisy::SSD130x4WireSoftSpiTransport::Config::mosi'],['../structdaisy_1_1_spi_handle_1_1_config.html#a42f657f0cc1ad98f107602d8263809ac',1,'daisy::SpiHandle::Config::mosi'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#abf916c22d230e1043b50b37ca236d55f',1,'daisy::MultiSlaveSpiHandle::Config::mosi']]], + ['mpr121_70',['Mpr121',['../classdaisy_1_1_mpr121.html',1,'daisy::Mpr121< Transport >'],['../classdaisy_1_1_mpr121.html#a423dfd228ca7e1304bf449f0559cba84',1,'daisy::Mpr121::Mpr121()']]], + ['mpr121_2eh_71',['mpr121.h',['../mpr121_8h.html',1,'']]], + ['mpr121_5fautoconfig0_72',['MPR121_AUTOCONFIG0',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a84473ee45de5bde4197837b2555724fe',1,'daisy::Mpr121']]], + ['mpr121_5fautoconfig1_73',['MPR121_AUTOCONFIG1',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798abaf3232cc07540fb422a930ab9d350e7',1,'daisy::Mpr121']]], + ['mpr121_5fbaseline_5f0_74',['MPR121_BASELINE_0',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798ac9a7569eb76aee36336844091bd389a7',1,'daisy::Mpr121']]], + ['mpr121_5fchargecurr_5f0_75',['MPR121_CHARGECURR_0',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798afc5b099316181762cef4e012f48177b0',1,'daisy::Mpr121']]], + ['mpr121_5fchargetime_5f1_76',['MPR121_CHARGETIME_1',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798abe3fe67998f7b3f714d2f3ba68ef20bc',1,'daisy::Mpr121']]], + ['mpr121_5fconfig1_77',['MPR121_CONFIG1',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798ad91f34027ed9461e9309b693980b7e84',1,'daisy::Mpr121']]], + ['mpr121_5fconfig2_78',['MPR121_CONFIG2',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798ad59b4469cede1a44e95539bdd8edb361',1,'daisy::Mpr121']]], + ['mpr121_5fdebounce_79',['MPR121_DEBOUNCE',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a1976a8eee3617dcca3c098bdc191a7e4',1,'daisy::Mpr121']]], + ['mpr121_5fecr_80',['MPR121_ECR',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798ae108af091b897029733e3b43059eccdc',1,'daisy::Mpr121']]], + ['mpr121_5ffdlf_81',['MPR121_FDLF',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a29c75502d048ce04b44b8390f44d807c',1,'daisy::Mpr121']]], + ['mpr121_5ffdlr_82',['MPR121_FDLR',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a41acf682bc02d2cfe0a460e145aa5973',1,'daisy::Mpr121']]], + ['mpr121_5ffdlt_83',['MPR121_FDLT',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a94d3b11b9138f6f4213fadcf760524fe',1,'daisy::Mpr121']]], + ['mpr121_5ffiltdata_5f0h_84',['MPR121_FILTDATA_0H',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798aeed0c3e4600908f4cddff2c247af16e3',1,'daisy::Mpr121']]], + ['mpr121_5ffiltdata_5f0l_85',['MPR121_FILTDATA_0L',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a8963e3a75478e33f625eba239dc67629',1,'daisy::Mpr121']]], + ['mpr121_5fgpioclr_86',['MPR121_GPIOCLR',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a20a180b8ae26a5da2ac8459261d813af',1,'daisy::Mpr121']]], + ['mpr121_5fgpiodir_87',['MPR121_GPIODIR',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a24f6b298916b55dd96bbf3507ed2d6bb',1,'daisy::Mpr121']]], + ['mpr121_5fgpioen_88',['MPR121_GPIOEN',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a8ef0b8cc6813a612b38a6b22d88d1a48',1,'daisy::Mpr121']]], + ['mpr121_5fgpioset_89',['MPR121_GPIOSET',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798adb795aae4ef37404efa3c2ce81995b28',1,'daisy::Mpr121']]], + ['mpr121_5fgpiotoggle_90',['MPR121_GPIOTOGGLE',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798afb31150b6e7796dfa003f189cafe3bd6',1,'daisy::Mpr121']]], + ['mpr121_5fi2caddr_5fdefault_91',['MPR121_I2CADDR_DEFAULT',['../mpr121_8h.html#aa4a9474e42d9c498f600c9ad8781f714',1,'mpr121.h']]], + ['mpr121_5flowlimit_92',['MPR121_LOWLIMIT',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a969b21bef0f769d9b6e235493d2875e6',1,'daisy::Mpr121']]], + ['mpr121_5fmhdf_93',['MPR121_MHDF',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a91a86c1b1a7a4159d953d38cefe723ee',1,'daisy::Mpr121']]], + ['mpr121_5fmhdr_94',['MPR121_MHDR',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a1b7901e6413893cffd5b831ee3b9f961',1,'daisy::Mpr121']]], + ['mpr121_5fnclf_95',['MPR121_NCLF',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798aa611799214b98edcc33e88b6943c8ba6',1,'daisy::Mpr121']]], + ['mpr121_5fnclr_96',['MPR121_NCLR',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a7a1cfb7091401bf95a1b0d7ca6d52235',1,'daisy::Mpr121']]], + ['mpr121_5fnclt_97',['MPR121_NCLT',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798afb8ee1195d5b5359d4c6671885676997',1,'daisy::Mpr121']]], + ['mpr121_5fnhdf_98',['MPR121_NHDF',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a5fedb837a5080779850e4fc15285ec24',1,'daisy::Mpr121']]], + ['mpr121_5fnhdr_99',['MPR121_NHDR',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a5c72f34b039b1abe28927e46a4ac17b3',1,'daisy::Mpr121']]], + ['mpr121_5fnhdt_100',['MPR121_NHDT',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a046176439ef7ecd2533d6feeb59eb376',1,'daisy::Mpr121']]], + ['mpr121_5frelease_5fthreshold_5fdefault_101',['MPR121_RELEASE_THRESHOLD_DEFAULT',['../mpr121_8h.html#af51b589d3c7f29cc43fff6f96715a0e9',1,'mpr121.h']]], + ['mpr121_5freleaseth_5f0_102',['MPR121_RELEASETH_0',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a98d7dbbd774fe8b1d46ed4d96dbd7754',1,'daisy::Mpr121']]], + ['mpr121_5fsoftreset_103',['MPR121_SOFTRESET',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a372b6ae6ff09c8e4cab72046ca1800de',1,'daisy::Mpr121']]], + ['mpr121_5ftargetlimit_104',['MPR121_TARGETLIMIT',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a5f8308d4c03ec3a7875380bc61e138e6',1,'daisy::Mpr121']]], + ['mpr121_5ftouch_5fthreshold_5fdefault_105',['MPR121_TOUCH_THRESHOLD_DEFAULT',['../mpr121_8h.html#a4b3fd951704a4d69529cec6c8996a560',1,'mpr121.h']]], + ['mpr121_5ftouchstatus_5fh_106',['MPR121_TOUCHSTATUS_H',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a807ad93180b47f0ee90d21e60a0ae82f',1,'daisy::Mpr121']]], + ['mpr121_5ftouchstatus_5fl_107',['MPR121_TOUCHSTATUS_L',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798af072087bd77d996459c508e7ddb85b95',1,'daisy::Mpr121']]], + ['mpr121_5ftouchth_5f0_108',['MPR121_TOUCHTH_0',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798a5fe6816a59778b37eedab9fae0452796',1,'daisy::Mpr121']]], + ['mpr121_5fuplimit_109',['MPR121_UPLIMIT',['../classdaisy_1_1_mpr121.html#ad38b500b5c9dfe9cb9a7764714a53798ae65f5c099d28098af1cae01c71f0d38b',1,'daisy::Mpr121']]], + ['mpr121i2c_110',['Mpr121I2C',['../group__external.html#gadff605cfc4e7944ed1eb8b5bc68cf4b8',1,'daisy']]], + ['mpr121i2ctransport_111',['Mpr121I2CTransport',['../classdaisy_1_1_mpr121_i2_c_transport.html',1,'daisy::Mpr121I2CTransport'],['../classdaisy_1_1_mpr121_i2_c_transport.html#a38f985567ef23c8f1e03d829a6fb5aaf',1,'daisy::Mpr121I2CTransport::Mpr121I2CTransport()']]], + ['msb_5ffirst_5flj_112',['MSB_FIRST_LJ',['../structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104a463db1dea7845050306bf03576aeeea5',1,'daisy::Wm8731::Config']]], + ['msb_5ffirst_5frj_113',['MSB_FIRST_RJ',['../structdaisy_1_1_wm8731_1_1_config.html#acb5156a1681bb52dcc37418690629104ae15fc5eea5e09485aef36afee2d15590',1,'daisy::Wm8731::Config']]], + ['msd_5ferror_114',['MSD_ERROR',['../group__utility.html#gaa3fc6f6551d2bfd4524379e0c2526516',1,'bsp_sd_diskio.h']]], + ['msd_5ferror_5fsd_5fnot_5fpresent_115',['MSD_ERROR_SD_NOT_PRESENT',['../group__utility.html#gaf544b72de2dd084023a2106d78df7d96',1,'bsp_sd_diskio.h']]], + ['msd_5fok_116',['MSD_OK',['../group__utility.html#ga0486e06b5a59ffb7579cf6cb29037bc8',1,'bsp_sd_diskio.h']]], + ['mtcquarterframe_117',['MTCQuarterFrame',['../group__midi__events.html#gga4f648ead175d62e97ceb4d3b49f692f5a19c6d1c07df0cf836fd7ef333b3081bd',1,'daisy']]], + ['mtcquarterframeevent_118',['MTCQuarterFrameEvent',['../structdaisy_1_1_m_t_c_quarter_frame_event.html',1,'daisy']]], + ['multiple_5fio_5fread_5fid_5fcmd_119',['MULTIPLE_IO_READ_ID_CMD',['../group__flash.html#ga970696b0d306f51162bd75ddcacafa8d',1,'MULTIPLE_IO_READ_ID_CMD: flash_IS25LP080D.h'],['../group__flash.html#ga970696b0d306f51162bd75ddcacafa8d',1,'MULTIPLE_IO_READ_ID_CMD: flash_IS25LP064A.h']]], + ['multislavespihandle_120',['MultiSlaveSpiHandle',['../classdaisy_1_1_multi_slave_spi_handle.html',1,'daisy::MultiSlaveSpiHandle'],['../classdaisy_1_1_multi_slave_spi_handle.html#abb9ab2ccf9b7750d3346194e6e495c63',1,'daisy::MultiSlaveSpiHandle::MultiSlaveSpiHandle(const MultiSlaveSpiHandle &other)=delete'],['../classdaisy_1_1_multi_slave_spi_handle.html#a04c84637b158d7f362f88ecfcf1fbdb8',1,'daisy::MultiSlaveSpiHandle::MultiSlaveSpiHandle()']]], + ['mute_121',['Mute',['../classdaisy_1_1_u_i.html#a0ce9a7071de333627b2b2329b01fb45b',1,'daisy::UI']]], + ['mux_5fchannels_5f_122',['mux_channels_',['../structdaisy_1_1_adc_channel_config.html#a9e61599527b16d2a47c76f0e3fd8c45c',1,'daisy::AdcChannelConfig']]], + ['mux_5fpin_5f_123',['mux_pin_',['../structdaisy_1_1_adc_channel_config.html#ab617cb7700615026b926ff9675e8f90f',1,'daisy::AdcChannelConfig']]], + ['mux_5fsel_5f0_124',['MUX_SEL_0',['../structdaisy_1_1_adc_channel_config.html#af601e66da7eb60721792861fc91f2c83a473e6b587ac9328655452640bf373884',1,'daisy::AdcChannelConfig']]], + ['mux_5fsel_5f1_125',['MUX_SEL_1',['../structdaisy_1_1_adc_channel_config.html#af601e66da7eb60721792861fc91f2c83a339b00b0ca5d523119a6f522e6649f2a',1,'daisy::AdcChannelConfig']]], + ['mux_5fsel_5f2_126',['MUX_SEL_2',['../structdaisy_1_1_adc_channel_config.html#af601e66da7eb60721792861fc91f2c83a9d3735b815879adb97ce0a48f528f39a',1,'daisy::AdcChannelConfig']]], + ['mux_5fsel_5flast_127',['MUX_SEL_LAST',['../structdaisy_1_1_adc_channel_config.html#af601e66da7eb60721792861fc91f2c83a00a6235ac198f2fdd9ccae951c908da2',1,'daisy::AdcChannelConfig']]], + ['muxpin_128',['MuxPin',['../structdaisy_1_1_adc_channel_config.html#af601e66da7eb60721792861fc91f2c83',1,'daisy::AdcChannelConfig']]] ]; diff --git a/search/all_e.js b/search/all_e.js index 8f618f10b..9dfb86908 100644 --- a/search/all_e.js +++ b/search/all_e.js @@ -69,8 +69,8 @@ var searchData= ['noteoffevent_66',['NoteOffEvent',['../structdaisy_1_1_note_off_event.html',1,'daisy']]], ['noteon_67',['NoteOn',['../group__midi__events.html#ggaaf09bb687034c8776ca0c68ed3ed4179a9a64652b06f5ea678d94472ecd77d3ee',1,'daisy']]], ['noteonevent_68',['NoteOnEvent',['../structdaisy_1_1_note_on_event.html',1,'daisy']]], - ['nss_69',['nss',['../structdaisy_1_1_dps310_spi_transport_1_1_config.html#abd0257a223fc9e66455116e7dcf2544c',1,'daisy::Dps310SpiTransport::Config::nss'],['../structdaisy_1_1_icm20948_spi_transport_1_1_config.html#aa739d6c3ab8b8e406ba3dfacd85f5626',1,'daisy::Icm20948SpiTransport::Config::nss'],['../structdaisy_1_1_m_a_x11300_multi_slave_spi_transport_1_1_config_1_1_pin_config.html#a0cec49607adbb7f7c4a96bfc00b190a2',1,'daisy::MAX11300MultiSlaveSpiTransport::Config::PinConfig::nss'],['../structdaisy_1_1_spi_handle_1_1_config.html#a636ef18d574ac72ee1b2770e8989bc42',1,'daisy::SpiHandle::Config::nss'],['../structdaisy_1_1_spi_handle_1_1_config.html#a4f16b1422469399d116457cf83dc6258',1,'daisy::SpiHandle::Config::nss'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#a8002eed9d6318c93bb1a87de02e6d0dc',1,'daisy::MultiSlaveSpiHandle::Config::nss']]], - ['nss_70',['NSS',['../structdaisy_1_1_spi_handle_1_1_config.html#a1832b92ab9f6dcacb9c010c4c77c844e',1,'daisy::SpiHandle::Config']]], + ['nss_69',['NSS',['../structdaisy_1_1_spi_handle_1_1_config.html#a1832b92ab9f6dcacb9c010c4c77c844e',1,'daisy::SpiHandle::Config']]], + ['nss_70',['nss',['../structdaisy_1_1_dps310_spi_transport_1_1_config.html#abd0257a223fc9e66455116e7dcf2544c',1,'daisy::Dps310SpiTransport::Config::nss'],['../structdaisy_1_1_icm20948_spi_transport_1_1_config.html#aa739d6c3ab8b8e406ba3dfacd85f5626',1,'daisy::Icm20948SpiTransport::Config::nss'],['../structdaisy_1_1_m_a_x11300_multi_slave_spi_transport_1_1_config_1_1_pin_config.html#a0cec49607adbb7f7c4a96bfc00b190a2',1,'daisy::MAX11300MultiSlaveSpiTransport::Config::PinConfig::nss'],['../structdaisy_1_1_spi_handle_1_1_config.html#a636ef18d574ac72ee1b2770e8989bc42',1,'daisy::SpiHandle::Config::nss'],['../structdaisy_1_1_spi_handle_1_1_config.html#a4f16b1422469399d116457cf83dc6258',1,'daisy::SpiHandle::Config::nss'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#a8002eed9d6318c93bb1a87de02e6d0dc',1,'daisy::MultiSlaveSpiHandle::Config::nss']]], ['num_71',['NUM',['../uniondaisy_1_1_neo_trellis_1_1key_event_raw.html#a980465e2ba7cc84a68873b833c9055d1',1,'daisy::NeoTrellis::keyEventRaw::NUM'],['../structdaisy_1_1_neo_trellis_1_1key_event_1_1_bit.html#a359e8e4339eaac2087504b1fc08badab',1,'daisy::NeoTrellis::keyEvent::Bit::NUM']]], ['num_5fchannels_72',['num_channels',['../structdaisy_1_1_mono_mode_on_event.html#a000e23868355edbb3d3ba5b378535d03',1,'daisy::MonoModeOnEvent']]], ['num_5fdevices_73',['num_devices',['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#a2400853acec103058b771d0287a0c79a',1,'daisy::MultiSlaveSpiHandle::Config']]], diff --git a/search/classes_5.js b/search/classes_5.js index 2b09e982d..eb34aa7b2 100644 --- a/search/classes_5.js +++ b/search/classes_5.js @@ -2,12 +2,14 @@ var searchData= [ ['fatfsinterface_0',['FatFSInterface',['../classdaisy_1_1_fat_f_s_interface.html',1,'daisy']]], ['fifo_1',['FIFO',['../classdaisy_1_1_f_i_f_o.html',1,'daisy']]], - ['fifo_3c_20event_2c_20256_20_3e_2',['FIFO< Event, 256 >',['../classdaisy_1_1_f_i_f_o.html',1,'daisy']]], - ['fifobase_3',['FIFOBase',['../classdaisy_1_1_f_i_f_o_base.html',1,'daisy']]], - ['fifobase_3c_20event_20_3e_4',['FIFOBase< Event >',['../classdaisy_1_1_f_i_f_o_base.html',1,'daisy']]], - ['fixedcapstr_5',['FixedCapStr',['../classdaisy_1_1_fixed_cap_str.html',1,'daisy']]], - ['fixedcapstrbase_6',['FixedCapStrBase',['../classdaisy_1_1_fixed_cap_str_base.html',1,'daisy']]], - ['fixedcapstrbase_3c_20char_20_3e_7',['FixedCapStrBase< char >',['../classdaisy_1_1_fixed_cap_str_base.html',1,'daisy']]], - ['fontdef_8',['FontDef',['../struct_font_def.html',1,'']]], - ['fullscreenitemmenu_9',['FullScreenItemMenu',['../classdaisy_1_1_full_screen_item_menu.html',1,'daisy']]] + ['fifo_3c_20daisy_3a_3amidievent_2c_20256_20_3e_2',['FIFO< daisy::MidiEvent, 256 >',['../classdaisy_1_1_f_i_f_o.html',1,'daisy']]], + ['fifo_3c_20event_2c_20256_20_3e_3',['FIFO< Event, 256 >',['../classdaisy_1_1_f_i_f_o.html',1,'daisy']]], + ['fifobase_4',['FIFOBase',['../classdaisy_1_1_f_i_f_o_base.html',1,'daisy']]], + ['fifobase_3c_20daisy_3a_3amidievent_20_3e_5',['FIFOBase< daisy::MidiEvent >',['../classdaisy_1_1_f_i_f_o_base.html',1,'daisy']]], + ['fifobase_3c_20event_20_3e_6',['FIFOBase< Event >',['../classdaisy_1_1_f_i_f_o_base.html',1,'daisy']]], + ['fixedcapstr_7',['FixedCapStr',['../classdaisy_1_1_fixed_cap_str.html',1,'daisy']]], + ['fixedcapstrbase_8',['FixedCapStrBase',['../classdaisy_1_1_fixed_cap_str_base.html',1,'daisy']]], + ['fixedcapstrbase_3c_20char_20_3e_9',['FixedCapStrBase< char >',['../classdaisy_1_1_fixed_cap_str_base.html',1,'daisy']]], + ['fontdef_10',['FontDef',['../struct_font_def.html',1,'']]], + ['fullscreenitemmenu_11',['FullScreenItemMenu',['../classdaisy_1_1_full_screen_item_menu.html',1,'daisy']]] ]; diff --git a/search/classes_a.js b/search/classes_a.js index 81b6d2eb4..5d83d0ff0 100644 --- a/search/classes_a.js +++ b/search/classes_a.js @@ -11,11 +11,12 @@ var searchData= ['midievent_8',['MidiEvent',['../structdaisy_1_1_midi_event.html',1,'daisy']]], ['midihandler_9',['MidiHandler',['../classdaisy_1_1_midi_handler.html',1,'daisy']]], ['midihandler_3c_20midiuarttransport_20_3e_10',['MidiHandler< MidiUartTransport >',['../classdaisy_1_1_midi_handler.html',1,'daisy']]], - ['midiuarttransport_11',['MidiUartTransport',['../classdaisy_1_1_midi_uart_transport.html',1,'daisy']]], - ['midiusbtransport_12',['MidiUsbTransport',['../classdaisy_1_1_midi_usb_transport.html',1,'daisy']]], - ['monomodeonevent_13',['MonoModeOnEvent',['../structdaisy_1_1_mono_mode_on_event.html',1,'daisy']]], - ['mpr121_14',['Mpr121',['../classdaisy_1_1_mpr121.html',1,'daisy']]], - ['mpr121i2ctransport_15',['Mpr121I2CTransport',['../classdaisy_1_1_mpr121_i2_c_transport.html',1,'daisy']]], - ['mtcquarterframeevent_16',['MTCQuarterFrameEvent',['../structdaisy_1_1_m_t_c_quarter_frame_event.html',1,'daisy']]], - ['multislavespihandle_17',['MultiSlaveSpiHandle',['../classdaisy_1_1_multi_slave_spi_handle.html',1,'daisy']]] + ['midiparser_11',['MidiParser',['../classdaisy_1_1_midi_parser.html',1,'daisy']]], + ['midiuarttransport_12',['MidiUartTransport',['../classdaisy_1_1_midi_uart_transport.html',1,'daisy']]], + ['midiusbtransport_13',['MidiUsbTransport',['../classdaisy_1_1_midi_usb_transport.html',1,'daisy']]], + ['monomodeonevent_14',['MonoModeOnEvent',['../structdaisy_1_1_mono_mode_on_event.html',1,'daisy']]], + ['mpr121_15',['Mpr121',['../classdaisy_1_1_mpr121.html',1,'daisy']]], + ['mpr121i2ctransport_16',['Mpr121I2CTransport',['../classdaisy_1_1_mpr121_i2_c_transport.html',1,'daisy']]], + ['mtcquarterframeevent_17',['MTCQuarterFrameEvent',['../structdaisy_1_1_m_t_c_quarter_frame_event.html',1,'daisy']]], + ['multislavespihandle_18',['MultiSlaveSpiHandle',['../classdaisy_1_1_multi_slave_spi_handle.html',1,'daisy']]] ]; diff --git a/search/classes_f.js b/search/classes_f.js index 3e4a8c89d..92151a28d 100644 --- a/search/classes_f.js +++ b/search/classes_f.js @@ -6,6 +6,5 @@ var searchData= ['resetallcontrollersevent_3',['ResetAllControllersEvent',['../structdaisy_1_1_reset_all_controllers_event.html',1,'daisy']]], ['rgbled_4',['RgbLed',['../classdaisy_1_1_rgb_led.html',1,'daisy']]], ['ringbuffer_5',['RingBuffer',['../classdaisy_1_1_ring_buffer.html',1,'daisy']]], - ['ringbuffer_3c_20daisy_3a_3amidievent_2c_20256_20_3e_6',['RingBuffer< daisy::MidiEvent, 256 >',['../classdaisy_1_1_ring_buffer.html',1,'daisy']]], - ['ringbuffer_3c_20t_2c_200_20_3e_7',['RingBuffer< T, 0 >',['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html',1,'daisy']]] + ['ringbuffer_3c_20t_2c_200_20_3e_6',['RingBuffer< T, 0 >',['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html',1,'daisy']]] ]; diff --git a/search/defines_2.js b/search/defines_2.js index 1a050c388..1cba59eef 100644 --- a/search/defines_2.js +++ b/search/defines_2.js @@ -39,32 +39,33 @@ var searchData= ['dsy_5fled_5fh_36',['DSY_LED_H',['../led_8h.html#a791eda55b9e09c8eba409e19125d7743',1,'led.h']]], ['dsy_5fmax11300_5fh_37',['DSY_MAX11300_H',['../max11300_8h.html#ab9dfd45f397163e28f9d664a18940756',1,'max11300.h']]], ['dsy_5fmidi_5fh_38',['DSY_MIDI_H',['../midi_8h.html#a1e52176e4f92572132c9ea700e70ad9d',1,'midi.h']]], - ['dsy_5fmpr121_5fh_39',['DSY_MPR121_H',['../mpr121_8h.html#aaea9014025c29eab9f6db770fa6b33d8',1,'mpr121.h']]], - ['dsy_5fneo_5fpixel_5fh_40',['DSY_NEO_PIXEL_H',['../neopixel_8h.html#acb7c87d0d6d2f577c2b03f732e8f9625',1,'neopixel.h']]], - ['dsy_5fneo_5ftrellis_5fh_41',['DSY_NEO_TRELLIS_H',['../neotrellis_8h.html#adb30115430182d1d82cac436e4df341c',1,'neotrellis.h']]], - ['dsy_5foled_5fdisplay_5fh_42',['DSY_OLED_DISPLAY_H',['../oled__display_8h.html#a17ac7515457b57899f133df8f905f485',1,'oled_display.h']]], - ['dsy_5foled_5ffonts_5fh_43',['DSY_OLED_FONTS_H',['../oled__fonts_8h.html#acd5a968545c0bd71b20fa678de249e0e',1,'oled_fonts.h']]], - ['dsy_5fpatch_5fbsp_5fh_44',['DSY_PATCH_BSP_H',['../daisy__patch_8h.html#ac77d9177808a2c9647cdfe9b306b63a6',1,'daisy_patch.h']]], - ['dsy_5fpetal_5fh_45',['DSY_PETAL_H',['../daisy__petal_8h.html#a00fb0ff0e4ad518d03b40bbd7ce25bae',1,'daisy_petal.h']]], - ['dsy_5fpod_5fbsp_5fh_46',['DSY_POD_BSP_H',['../daisy__pod_8h.html#a304b33982f5bbc5eae87a498f159299f',1,'daisy_pod.h']]], - ['dsy_5fqspi_47',['DSY_QSPI',['../qspi_8h.html#ae6d4ba284e88afd6885030e4385eb7c7',1,'qspi.h']]], - ['dsy_5fqspi_5fbss_48',['DSY_QSPI_BSS',['../qspi_8h.html#a60e1f5f509302b4539a5153c90880d68',1,'qspi.h']]], - ['dsy_5fqspi_5fdata_49',['DSY_QSPI_DATA',['../qspi_8h.html#adf221bedb8997d5c1ae2b218a817d417',1,'qspi.h']]], - ['dsy_5fqspi_5ftext_50',['DSY_QSPI_TEXT',['../qspi_8h.html#a3cccb1f07e68606c30c396e4344b2a22',1,'qspi.h']]], - ['dsy_5frgb_5fled_5fh_51',['DSY_RGB_LED_H',['../rgb__led_8h.html#a0a7587c33027dddf5cba9430263876a0',1,'rgb_led.h']]], - ['dsy_5fringbuffer_5fh_52',['DSY_RINGBUFFER_H',['../ringbuffer_8h.html#a34eee6c4d4db12db17fd2036cc3c7d3b',1,'ringbuffer.h']]], - ['dsy_5fsai_5fh_53',['DSY_SAI_H',['../sai_8h.html#a7f3786a46694133b154eca4c53cf0be4',1,'sai.h']]], - ['dsy_5fsd_5fdiskio_5fh_54',['DSY_SD_DISKIO_H',['../sd__diskio_8h.html#a95a56d32055604724b4d8649669d04d0',1,'sd_diskio.h']]], - ['dsy_5fsdmmc_5fh_55',['DSY_SDMMC_H',['../sdmmc_8h.html#a3cc3409b86d5c9046cce9bf27d88bcc3',1,'sdmmc.h']]], - ['dsy_5fseed_5fh_56',['DSY_SEED_H',['../daisy__seed_8h.html#aa67c132c8b8f311867d70b4343aadba6',1,'daisy_seed.h']]], - ['dsy_5fspi_5fh_57',['DSY_SPI_H',['../spi_8h.html#afb09f1033e41308643e77a556c6f593c',1,'spi.h']]], - ['dsy_5fspi_5fmultislave_5fh_58',['DSY_SPI_MULTISLAVE_H',['../spi_multislave_8h.html#a5ba744eaa49250dad9ceded21604855f',1,'spiMultislave.h']]], - ['dsy_5fswitch_5fh_59',['DSY_SWITCH_H',['../switch_8h.html#af3c6f18531c9746e156c796b6d7da082',1,'switch.h']]], - ['dsy_5ftim_5fh_60',['DSY_TIM_H',['../tim_8h.html#a092becb63941b910af5079ed3275eb11',1,'tim.h']]], - ['dsy_5ftlv493d_5fh_61',['DSY_TLV493D_H',['../tlv493d_8h.html#a8e57b025cf76217b1e2ba4121fbf7748',1,'tlv493d.h']]], - ['dsy_5fuart_5fh_62',['DSY_UART_H',['../uart_8h.html#ae95c00416c4aaa293e062b8aaed79909',1,'uart.h']]], - ['dsy_5futil_5funique_5fid_5fh_63',['DSY_UTIL_UNIQUE_ID_H',['../unique__id_8h.html#a2140d8723a0ad66047c1b04bb4319b0b',1,'unique_id.h']]], - ['dsy_5fversion_5fh_64',['DSY_VERSION_H',['../version_8h.html#a9234b53a2198452930f6bd1cc113c49e',1,'version.h']]], - ['dsy_5fwav_5fformat_5fh_65',['DSY_WAV_FORMAT_H',['../wav__format_8h.html#ab9fb82face7890d0821ddc69926311ea',1,'wav_format.h']]], - ['dsy_5fwavplayer_5fh_66',['DSY_WAVPLAYER_H',['../wavplayer_8h.html#ad384c43689d53e261578fa4dcb9dd00a',1,'wavplayer.h']]] + ['dsy_5fmidi_5fparser_5fh_39',['DSY_MIDI_PARSER_H',['../midi__parser_8h.html#a162408cf7d1cf060cf5f7c1d5f31f7a2',1,'midi_parser.h']]], + ['dsy_5fmpr121_5fh_40',['DSY_MPR121_H',['../mpr121_8h.html#aaea9014025c29eab9f6db770fa6b33d8',1,'mpr121.h']]], + ['dsy_5fneo_5fpixel_5fh_41',['DSY_NEO_PIXEL_H',['../neopixel_8h.html#acb7c87d0d6d2f577c2b03f732e8f9625',1,'neopixel.h']]], + ['dsy_5fneo_5ftrellis_5fh_42',['DSY_NEO_TRELLIS_H',['../neotrellis_8h.html#adb30115430182d1d82cac436e4df341c',1,'neotrellis.h']]], + ['dsy_5foled_5fdisplay_5fh_43',['DSY_OLED_DISPLAY_H',['../oled__display_8h.html#a17ac7515457b57899f133df8f905f485',1,'oled_display.h']]], + ['dsy_5foled_5ffonts_5fh_44',['DSY_OLED_FONTS_H',['../oled__fonts_8h.html#acd5a968545c0bd71b20fa678de249e0e',1,'oled_fonts.h']]], + ['dsy_5fpatch_5fbsp_5fh_45',['DSY_PATCH_BSP_H',['../daisy__patch_8h.html#ac77d9177808a2c9647cdfe9b306b63a6',1,'daisy_patch.h']]], + ['dsy_5fpetal_5fh_46',['DSY_PETAL_H',['../daisy__petal_8h.html#a00fb0ff0e4ad518d03b40bbd7ce25bae',1,'daisy_petal.h']]], + ['dsy_5fpod_5fbsp_5fh_47',['DSY_POD_BSP_H',['../daisy__pod_8h.html#a304b33982f5bbc5eae87a498f159299f',1,'daisy_pod.h']]], + ['dsy_5fqspi_48',['DSY_QSPI',['../qspi_8h.html#ae6d4ba284e88afd6885030e4385eb7c7',1,'qspi.h']]], + ['dsy_5fqspi_5fbss_49',['DSY_QSPI_BSS',['../qspi_8h.html#a60e1f5f509302b4539a5153c90880d68',1,'qspi.h']]], + ['dsy_5fqspi_5fdata_50',['DSY_QSPI_DATA',['../qspi_8h.html#adf221bedb8997d5c1ae2b218a817d417',1,'qspi.h']]], + ['dsy_5fqspi_5ftext_51',['DSY_QSPI_TEXT',['../qspi_8h.html#a3cccb1f07e68606c30c396e4344b2a22',1,'qspi.h']]], + ['dsy_5frgb_5fled_5fh_52',['DSY_RGB_LED_H',['../rgb__led_8h.html#a0a7587c33027dddf5cba9430263876a0',1,'rgb_led.h']]], + ['dsy_5fringbuffer_5fh_53',['DSY_RINGBUFFER_H',['../ringbuffer_8h.html#a34eee6c4d4db12db17fd2036cc3c7d3b',1,'ringbuffer.h']]], + ['dsy_5fsai_5fh_54',['DSY_SAI_H',['../sai_8h.html#a7f3786a46694133b154eca4c53cf0be4',1,'sai.h']]], + ['dsy_5fsd_5fdiskio_5fh_55',['DSY_SD_DISKIO_H',['../sd__diskio_8h.html#a95a56d32055604724b4d8649669d04d0',1,'sd_diskio.h']]], + ['dsy_5fsdmmc_5fh_56',['DSY_SDMMC_H',['../sdmmc_8h.html#a3cc3409b86d5c9046cce9bf27d88bcc3',1,'sdmmc.h']]], + ['dsy_5fseed_5fh_57',['DSY_SEED_H',['../daisy__seed_8h.html#aa67c132c8b8f311867d70b4343aadba6',1,'daisy_seed.h']]], + ['dsy_5fspi_5fh_58',['DSY_SPI_H',['../spi_8h.html#afb09f1033e41308643e77a556c6f593c',1,'spi.h']]], + ['dsy_5fspi_5fmultislave_5fh_59',['DSY_SPI_MULTISLAVE_H',['../spi_multislave_8h.html#a5ba744eaa49250dad9ceded21604855f',1,'spiMultislave.h']]], + ['dsy_5fswitch_5fh_60',['DSY_SWITCH_H',['../switch_8h.html#af3c6f18531c9746e156c796b6d7da082',1,'switch.h']]], + ['dsy_5ftim_5fh_61',['DSY_TIM_H',['../tim_8h.html#a092becb63941b910af5079ed3275eb11',1,'tim.h']]], + ['dsy_5ftlv493d_5fh_62',['DSY_TLV493D_H',['../tlv493d_8h.html#a8e57b025cf76217b1e2ba4121fbf7748',1,'tlv493d.h']]], + ['dsy_5fuart_5fh_63',['DSY_UART_H',['../uart_8h.html#ae95c00416c4aaa293e062b8aaed79909',1,'uart.h']]], + ['dsy_5futil_5funique_5fid_5fh_64',['DSY_UTIL_UNIQUE_ID_H',['../unique__id_8h.html#a2140d8723a0ad66047c1b04bb4319b0b',1,'unique_id.h']]], + ['dsy_5fversion_5fh_65',['DSY_VERSION_H',['../version_8h.html#a9234b53a2198452930f6bd1cc113c49e',1,'version.h']]], + ['dsy_5fwav_5fformat_5fh_66',['DSY_WAV_FORMAT_H',['../wav__format_8h.html#ab9fb82face7890d0821ddc69926311ea',1,'wav_format.h']]], + ['dsy_5fwavplayer_5fh_67',['DSY_WAVPLAYER_H',['../wavplayer_8h.html#ad384c43689d53e261578fa4dcb9dd00a',1,'wavplayer.h']]] ]; diff --git a/search/defines_9.js b/search/defines_9.js index 07d681900..2084f2bd5 100644 --- a/search/defines_9.js +++ b/search/defines_9.js @@ -4,5 +4,5 @@ var searchData= ['sa_5foled_5fssd130x_5fh_1',['SA_OLED_SSD130X_H',['../oled__ssd130x_8h.html#a18a10d43c2160314533e76a1a22ca5a1',1,'oled_ssd130x.h']]], ['sensors_5fdps_5fto_5frads_2',['SENSORS_DPS_TO_RADS',['../icm20948_8h.html#a54bd9549d7c88977f8769fac7be4578d',1,'icm20948.h']]], ['sensors_5fgravity_5fearth_3',['SENSORS_GRAVITY_EARTH',['../icm20948_8h.html#adf2baeb9499e0aae21699e2345fd51bd',1,'icm20948.h']]], - ['sysex_5fbuffer_5flen_4',['SYSEX_BUFFER_LEN',['../midi_8h.html#a02f1ba6b22046642cb6f52e3fab60241',1,'midi.h']]] + ['sysex_5fbuffer_5flen_4',['SYSEX_BUFFER_LEN',['../_midi_event_8h.html#a02f1ba6b22046642cb6f52e3fab60241',1,'MidiEvent.h']]] ]; diff --git a/search/files_b.js b/search/files_b.js index 013d99995..4d452e2c7 100644 --- a/search/files_b.js +++ b/search/files_b.js @@ -4,6 +4,7 @@ var searchData= ['max11300_2eh_1',['max11300.h',['../max11300_8h.html',1,'']]], ['mcp23x17_2eh_2',['mcp23x17.h',['../mcp23x17_8h.html',1,'']]], ['midi_2eh_3',['midi.h',['../midi_8h.html',1,'']]], - ['midievent_2eh_4',['MidiEvent.h',['../_midi_event_8h.html',1,'']]], - ['mpr121_2eh_5',['mpr121.h',['../mpr121_8h.html',1,'']]] + ['midi_5fparser_2eh_4',['midi_parser.h',['../midi__parser_8h.html',1,'']]], + ['midievent_2eh_5',['MidiEvent.h',['../_midi_event_8h.html',1,'']]], + ['mpr121_2eh_6',['mpr121.h',['../mpr121_8h.html',1,'']]] ]; diff --git a/search/functions_10.js b/search/functions_10.js index afc9f7ce1..ae18f84cb 100644 --- a/search/functions_10.js +++ b/search/functions_10.js @@ -1,7 +1,7 @@ var searchData= [ ['parameter_0',['Parameter',['../classdaisy_1_1_parameter.html#ac53e51f76edd3958bc201a8eda419afb',1,'daisy::Parameter']]], - ['parse_1',['Parse',['../classdaisy_1_1_midi_handler.html#a8dbf957100cc91a0c28c04340b218e32',1,'daisy::MidiHandler']]], + ['parse_1',['Parse',['../classdaisy_1_1_midi_handler.html#a8dbf957100cc91a0c28c04340b218e32',1,'daisy::MidiHandler::Parse()'],['../classdaisy_1_1_midi_parser.html#ac0f99ea908391d2f95ddac9ce80fc31a',1,'daisy::MidiParser::Parse()']]], ['pcm3060_2',['Pcm3060',['../classdaisy_1_1_pcm3060.html#a2cd849186f254f25bdb06f5f73c0beaf',1,'daisy::Pcm3060']]], ['persistentstorage_3',['PersistentStorage',['../classdaisy_1_1_persistent_storage.html#aa4bc8d085f92ae05ac7abc38b26264d6',1,'daisy::PersistentStorage']]], ['pin_4',['Pin',['../structdaisy_1_1_pin.html#ad9a2515c425471812d946be056ca60d0',1,'daisy::Pin::Pin(const GPIOPort pt, const uint8_t pn)'],['../structdaisy_1_1_pin.html#a492cdf058721dc44c910ce799463ce1b',1,'daisy::Pin::Pin()']]], @@ -10,23 +10,21 @@ var searchData= ['polltx_7',['PollTx',['../classdaisy_1_1_uart_handler.html#a9505926532bf44f70216b52d45db549a',1,'daisy::UartHandler']]], ['popback_8',['PopBack',['../classdaisy_1_1_stack_base.html#a8939e78d29ff2400535a367bc400e111',1,'daisy::StackBase']]], ['popevent_9',['PopEvent',['../classdaisy_1_1_midi_handler.html#a4460bf8f45842bc2e2f74b9afad31cef',1,'daisy::MidiHandler']]], - ['popfifo_10',['PopFifo',['../classdaisy_1_1_uart_handler.html#ae2dcb235ccfbf9a16d059edaf4e6499a',1,'daisy::UartHandler']]], - ['popfront_11',['PopFront',['../classdaisy_1_1_f_i_f_o_base.html#a03883c5c52a669b839333a7e32fe07a7',1,'daisy::FIFOBase']]], - ['poprx_12',['PopRx',['../classdaisy_1_1_uart_handler.html#ae28345bdf7d66aa891bbde3cf8c68057',1,'daisy::UartHandler']]], - ['portmode_13',['PortMode',['../classdaisy_1_1_mcp23_x17.html#af0124ec7feb2c9f69d7097d5a0f11806',1,'daisy::Mcp23X17']]], - ['potmonitor_14',['PotMonitor',['../classdaisy_1_1_pot_monitor.html#abcc379153036766cc3d4de382284fbe2',1,'daisy::PotMonitor']]], - ['prepare_15',['Prepare',['../classdaisy_1_1_wav_player.html#a1126bb632eb141d2979c25cedde354cd',1,'daisy::WavPlayer']]], - ['pressed_16',['Pressed',['../classdaisy_1_1_encoder.html#a7c3a633c4e578dac0bdf5829b9bed99f',1,'daisy::Encoder::Pressed()'],['../classdaisy_1_1_switch.html#abe39a637bc58c3f5cbbaf5ffaaece7a9',1,'daisy::Switch::Pressed()']]], - ['pressureavailable_17',['pressureAvailable',['../classdaisy_1_1_dps310.html#afa461862361ecee6e002c6e7989df2d4',1,'daisy::Dps310']]], - ['print_18',['Print',['../classdaisy_1_1_daisy_seed.html#a84e8a5360d6a8c37d332d970ea2068fb',1,'daisy::DaisySeed::Print()'],['../classdaisy_1_1_lcd_h_d44780.html#a12264883791e8b5b03fd4066555dd2ab',1,'daisy::LcdHD44780::Print()'],['../classdaisy_1_1_logger.html#a7851be671d53e6761f20ad7c06212bf6',1,'daisy::Logger::Print()'],['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#a533c57c3bf44fa1b64b7880f2ea2dee6',1,'daisy::Logger< LOGGER_NONE >::Print()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a379694b687b3088505bce20adc8a9ab7',1,'daisy::patch_sm::DaisyPatchSM::Print()']]], - ['printint_19',['PrintInt',['../classdaisy_1_1_lcd_h_d44780.html#a77e3971508320640f0c2fc40a716aa96',1,'daisy::LcdHD44780']]], - ['printline_20',['PrintLine',['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#ad3c258bc018a265b1ae269f450aba04a',1,'daisy::Logger< LOGGER_NONE >::PrintLine()'],['../classdaisy_1_1_logger.html#abb58779589478babb9afd063d642a25e',1,'daisy::Logger::PrintLine()'],['../classdaisy_1_1_daisy_seed.html#a225961ab42af9be60dab50a28607d65a',1,'daisy::DaisySeed::PrintLine()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#afdc25a4cd323f908a9f27b13e8265f54',1,'daisy::patch_sm::DaisyPatchSM::PrintLine()']]], - ['printlinev_21',['PrintLineV',['../classdaisy_1_1_logger.html#a4efe4e3a339e8536d61acee15b5ac233',1,'daisy::Logger::PrintLineV()'],['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#a1901044bbbdd92b082723e9bf7efc128',1,'daisy::Logger< LOGGER_NONE >::PrintLineV()']]], - ['printv_22',['PrintV',['../classdaisy_1_1_logger.html#a70befe498a6682827795b11aadab3008',1,'daisy::Logger::PrintV()'],['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#ac6168acdaefd3a22421f33284e7fc208',1,'daisy::Logger< LOGGER_NONE >::PrintV()']]], - ['process_23',['Process',['../classdaisy_1_1_dps310.html#a8febd2b5861c6cb052fc3d693a66165b',1,'daisy::Dps310::Process()'],['../classdaisy_1_1_u_i.html#ac1ffddf7c1b8d91c41077441c455163a',1,'daisy::UI::Process()'],['../classdaisy_1_1_pot_monitor.html#aa29cec0541f7901edb9187c470f14bb1',1,'daisy::PotMonitor::Process()'],['../classdaisy_1_1_button_monitor.html#a58b66b22d85bc18405cc687b1ebf932b',1,'daisy::ButtonMonitor::Process()'],['../classdaisy_1_1_u_s_b_host_handle.html#a23eacd86f01a56142e60108ba8a381a8',1,'daisy::USBHostHandle::Process()'],['../classdaisy_1_1_analog_control.html#a7109593bfc106dd8ef35aba4434b8321',1,'daisy::AnalogControl::Process()'],['../classdaisy_1_1_neo_trellis.html#abffb6f619af2359307b5635babe023b9',1,'daisy::NeoTrellis::Process()'],['../classdaisy_1_1_icm20948.html#aecdd07323a58fde49e3cf6a6250a72c7',1,'daisy::Icm20948::Process()'],['../classdaisy_1_1_parameter.html#a6af6747924f1651e6698a4d72c86532d',1,'daisy::Parameter::Process()']]], - ['processallcontrols_24',['ProcessAllControls',['../classdaisy_1_1_daisy_field.html#a65d6a1bdf76bc9ffefe75f03af888b54',1,'daisy::DaisyField::ProcessAllControls()'],['../classdaisy_1_1_daisy_legio.html#af5c2e6a3d3c783994726bd0bf5895187',1,'daisy::DaisyLegio::ProcessAllControls()'],['../classdaisy_1_1_daisy_patch.html#a2e42c5a45ba048a2453fe9d3d37a22a8',1,'daisy::DaisyPatch::ProcessAllControls()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#ad53b2951d13cd0b89b7877234836dd84',1,'daisy::patch_sm::DaisyPatchSM::ProcessAllControls()'],['../classdaisy_1_1_daisy_petal.html#ad9315aa1fd67e420fdde543aafdc026d',1,'daisy::DaisyPetal::ProcessAllControls()'],['../classdaisy_1_1_daisy_pod.html#abedf7cb7cb5ee4ac84f94264500bd941',1,'daisy::DaisyPod::ProcessAllControls()'],['../classdaisy_1_1_daisy_versio.html#ac680c7da2f51a209b95b3b559b2d9310',1,'daisy::DaisyVersio::ProcessAllControls()']]], - ['processanalogcontrols_25',['ProcessAnalogControls',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a70f1816c43cb908307a1b92a0c191a4e',1,'daisy::patch_sm::DaisyPatchSM::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_versio.html#aa164af66eba7f3e5577d53ca5cd53b71',1,'daisy::DaisyVersio::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_pod.html#a362fb5374ca7c065aa337d894cbc091e',1,'daisy::DaisyPod::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_petal.html#ac555e9b0982b43b48fc199f331fdebed',1,'daisy::DaisyPetal::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_patch.html#a5fc2a9821f4dfebfc995d895003d9e80',1,'daisy::DaisyPatch::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_legio.html#aecf6ac457e5f9828900561aaec831338',1,'daisy::DaisyLegio::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_field.html#a347b7586d8f335447f6c31925f12dfdd',1,'daisy::DaisyField::ProcessAnalogControls()']]], - ['processdigitalcontrols_26',['ProcessDigitalControls',['../classdaisy_1_1_daisy_field.html#affe1943bf141c1041eae031f4b1cf3c9',1,'daisy::DaisyField::ProcessDigitalControls()'],['../classdaisy_1_1_daisy_legio.html#a10dfd3d39d24993e2c10062a1dca700a',1,'daisy::DaisyLegio::ProcessDigitalControls()'],['../classdaisy_1_1_daisy_patch.html#ad6b41b5b87cd3239962b5166e96aeed4',1,'daisy::DaisyPatch::ProcessDigitalControls()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a4aab04f876942ec6a167de9edb81f5f0',1,'daisy::patch_sm::DaisyPatchSM::ProcessDigitalControls()'],['../classdaisy_1_1_daisy_petal.html#aa2edfc53a363c12e756b22f478c9682d',1,'daisy::DaisyPetal::ProcessDigitalControls()'],['../classdaisy_1_1_daisy_pod.html#a57e59a27fe8b81ec02c0b7f349f92f13',1,'daisy::DaisyPod::ProcessDigitalControls()']]], - ['processinput_27',['ProcessInput',['../classdaisy_1_1_voct_calibration.html#ac37f603d0ac2c973bd453e673c290c32',1,'daisy::VoctCalibration']]], - ['pushback_28',['PushBack',['../classdaisy_1_1_f_i_f_o_base.html#a016c825b7e207a7a9fc46da1dae4e545',1,'daisy::FIFOBase::PushBack(const T &elementToAdd)'],['../classdaisy_1_1_f_i_f_o_base.html#ad65217b96b405899dce48cc0a756466c',1,'daisy::FIFOBase::PushBack(std::initializer_list< T > valuesToAdd)'],['../classdaisy_1_1_stack_base.html#a437a09bd7bfb03f8e06e633edbab8604',1,'daisy::StackBase::PushBack(const T &elementToAdd)'],['../classdaisy_1_1_stack_base.html#aa5e2ce929c3b361dc581be58f506f245',1,'daisy::StackBase::PushBack(std::initializer_list< T > valuesToAdd)']]] + ['popfront_10',['PopFront',['../classdaisy_1_1_f_i_f_o_base.html#a03883c5c52a669b839333a7e32fe07a7',1,'daisy::FIFOBase']]], + ['portmode_11',['PortMode',['../classdaisy_1_1_mcp23_x17.html#af0124ec7feb2c9f69d7097d5a0f11806',1,'daisy::Mcp23X17']]], + ['potmonitor_12',['PotMonitor',['../classdaisy_1_1_pot_monitor.html#abcc379153036766cc3d4de382284fbe2',1,'daisy::PotMonitor']]], + ['prepare_13',['Prepare',['../classdaisy_1_1_wav_player.html#a1126bb632eb141d2979c25cedde354cd',1,'daisy::WavPlayer']]], + ['pressed_14',['Pressed',['../classdaisy_1_1_encoder.html#a7c3a633c4e578dac0bdf5829b9bed99f',1,'daisy::Encoder::Pressed()'],['../classdaisy_1_1_switch.html#abe39a637bc58c3f5cbbaf5ffaaece7a9',1,'daisy::Switch::Pressed()']]], + ['pressureavailable_15',['pressureAvailable',['../classdaisy_1_1_dps310.html#afa461862361ecee6e002c6e7989df2d4',1,'daisy::Dps310']]], + ['print_16',['Print',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a379694b687b3088505bce20adc8a9ab7',1,'daisy::patch_sm::DaisyPatchSM::Print()'],['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#a533c57c3bf44fa1b64b7880f2ea2dee6',1,'daisy::Logger< LOGGER_NONE >::Print()'],['../classdaisy_1_1_logger.html#a7851be671d53e6761f20ad7c06212bf6',1,'daisy::Logger::Print()'],['../classdaisy_1_1_lcd_h_d44780.html#a12264883791e8b5b03fd4066555dd2ab',1,'daisy::LcdHD44780::Print()'],['../classdaisy_1_1_daisy_seed.html#a84e8a5360d6a8c37d332d970ea2068fb',1,'daisy::DaisySeed::Print()']]], + ['printint_17',['PrintInt',['../classdaisy_1_1_lcd_h_d44780.html#a77e3971508320640f0c2fc40a716aa96',1,'daisy::LcdHD44780']]], + ['printline_18',['PrintLine',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#afdc25a4cd323f908a9f27b13e8265f54',1,'daisy::patch_sm::DaisyPatchSM::PrintLine()'],['../classdaisy_1_1_daisy_seed.html#a225961ab42af9be60dab50a28607d65a',1,'daisy::DaisySeed::PrintLine()'],['../classdaisy_1_1_logger.html#abb58779589478babb9afd063d642a25e',1,'daisy::Logger::PrintLine()'],['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#ad3c258bc018a265b1ae269f450aba04a',1,'daisy::Logger< LOGGER_NONE >::PrintLine()']]], + ['printlinev_19',['PrintLineV',['../classdaisy_1_1_logger.html#a4efe4e3a339e8536d61acee15b5ac233',1,'daisy::Logger::PrintLineV()'],['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#a1901044bbbdd92b082723e9bf7efc128',1,'daisy::Logger< LOGGER_NONE >::PrintLineV()']]], + ['printv_20',['PrintV',['../classdaisy_1_1_logger.html#a70befe498a6682827795b11aadab3008',1,'daisy::Logger::PrintV()'],['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#ac6168acdaefd3a22421f33284e7fc208',1,'daisy::Logger< LOGGER_NONE >::PrintV()']]], + ['process_21',['Process',['../classdaisy_1_1_dps310.html#a8febd2b5861c6cb052fc3d693a66165b',1,'daisy::Dps310::Process()'],['../classdaisy_1_1_u_i.html#ac1ffddf7c1b8d91c41077441c455163a',1,'daisy::UI::Process()'],['../classdaisy_1_1_pot_monitor.html#aa29cec0541f7901edb9187c470f14bb1',1,'daisy::PotMonitor::Process()'],['../classdaisy_1_1_button_monitor.html#a58b66b22d85bc18405cc687b1ebf932b',1,'daisy::ButtonMonitor::Process()'],['../classdaisy_1_1_u_s_b_host_handle.html#a23eacd86f01a56142e60108ba8a381a8',1,'daisy::USBHostHandle::Process()'],['../classdaisy_1_1_analog_control.html#a7109593bfc106dd8ef35aba4434b8321',1,'daisy::AnalogControl::Process()'],['../classdaisy_1_1_neo_trellis.html#abffb6f619af2359307b5635babe023b9',1,'daisy::NeoTrellis::Process()'],['../classdaisy_1_1_icm20948.html#aecdd07323a58fde49e3cf6a6250a72c7',1,'daisy::Icm20948::Process()'],['../classdaisy_1_1_parameter.html#a6af6747924f1651e6698a4d72c86532d',1,'daisy::Parameter::Process()']]], + ['processallcontrols_22',['ProcessAllControls',['../classdaisy_1_1_daisy_field.html#a65d6a1bdf76bc9ffefe75f03af888b54',1,'daisy::DaisyField::ProcessAllControls()'],['../classdaisy_1_1_daisy_legio.html#af5c2e6a3d3c783994726bd0bf5895187',1,'daisy::DaisyLegio::ProcessAllControls()'],['../classdaisy_1_1_daisy_patch.html#a2e42c5a45ba048a2453fe9d3d37a22a8',1,'daisy::DaisyPatch::ProcessAllControls()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#ad53b2951d13cd0b89b7877234836dd84',1,'daisy::patch_sm::DaisyPatchSM::ProcessAllControls()'],['../classdaisy_1_1_daisy_petal.html#ad9315aa1fd67e420fdde543aafdc026d',1,'daisy::DaisyPetal::ProcessAllControls()'],['../classdaisy_1_1_daisy_pod.html#abedf7cb7cb5ee4ac84f94264500bd941',1,'daisy::DaisyPod::ProcessAllControls()'],['../classdaisy_1_1_daisy_versio.html#ac680c7da2f51a209b95b3b559b2d9310',1,'daisy::DaisyVersio::ProcessAllControls()']]], + ['processanalogcontrols_23',['ProcessAnalogControls',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a70f1816c43cb908307a1b92a0c191a4e',1,'daisy::patch_sm::DaisyPatchSM::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_versio.html#aa164af66eba7f3e5577d53ca5cd53b71',1,'daisy::DaisyVersio::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_pod.html#a362fb5374ca7c065aa337d894cbc091e',1,'daisy::DaisyPod::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_petal.html#ac555e9b0982b43b48fc199f331fdebed',1,'daisy::DaisyPetal::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_patch.html#a5fc2a9821f4dfebfc995d895003d9e80',1,'daisy::DaisyPatch::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_legio.html#aecf6ac457e5f9828900561aaec831338',1,'daisy::DaisyLegio::ProcessAnalogControls()'],['../classdaisy_1_1_daisy_field.html#a347b7586d8f335447f6c31925f12dfdd',1,'daisy::DaisyField::ProcessAnalogControls()']]], + ['processdigitalcontrols_24',['ProcessDigitalControls',['../classdaisy_1_1_daisy_field.html#affe1943bf141c1041eae031f4b1cf3c9',1,'daisy::DaisyField::ProcessDigitalControls()'],['../classdaisy_1_1_daisy_legio.html#a10dfd3d39d24993e2c10062a1dca700a',1,'daisy::DaisyLegio::ProcessDigitalControls()'],['../classdaisy_1_1_daisy_patch.html#ad6b41b5b87cd3239962b5166e96aeed4',1,'daisy::DaisyPatch::ProcessDigitalControls()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a4aab04f876942ec6a167de9edb81f5f0',1,'daisy::patch_sm::DaisyPatchSM::ProcessDigitalControls()'],['../classdaisy_1_1_daisy_petal.html#aa2edfc53a363c12e756b22f478c9682d',1,'daisy::DaisyPetal::ProcessDigitalControls()'],['../classdaisy_1_1_daisy_pod.html#a57e59a27fe8b81ec02c0b7f349f92f13',1,'daisy::DaisyPod::ProcessDigitalControls()']]], + ['processinput_25',['ProcessInput',['../classdaisy_1_1_voct_calibration.html#ac37f603d0ac2c973bd453e673c290c32',1,'daisy::VoctCalibration']]], + ['pushback_26',['PushBack',['../classdaisy_1_1_f_i_f_o_base.html#a016c825b7e207a7a9fc46da1dae4e545',1,'daisy::FIFOBase::PushBack(const T &elementToAdd)'],['../classdaisy_1_1_f_i_f_o_base.html#ad65217b96b405899dce48cc0a756466c',1,'daisy::FIFOBase::PushBack(std::initializer_list< T > valuesToAdd)'],['../classdaisy_1_1_stack_base.html#a437a09bd7bfb03f8e06e633edbab8604',1,'daisy::StackBase::PushBack(const T &elementToAdd)'],['../classdaisy_1_1_stack_base.html#aa5e2ce929c3b361dc581be58f506f245',1,'daisy::StackBase::PushBack(std::initializer_list< T > valuesToAdd)']]] ]; diff --git a/search/functions_12.js b/search/functions_12.js index 7d6f3a2d2..844ae1281 100644 --- a/search/functions_12.js +++ b/search/functions_12.js @@ -7,64 +7,61 @@ var searchData= ['read16_5fle_4',['Read16_LE',['../classdaisy_1_1_dps310.html#a2f949a8bfb79117da6bcfda3ab07b2c7',1,'daisy::Dps310']]], ['read16r_5',['Read16R',['../classdaisy_1_1_apds9960.html#a099b346f98b398a252868c1d250c0a35',1,'daisy::Apds9960']]], ['read24_6',['Read24',['../classdaisy_1_1_dps310_i2_c_transport.html#a1d8fef21e50b865bc583a428f1d621de',1,'daisy::Dps310I2CTransport::Read24()'],['../classdaisy_1_1_dps310_spi_transport.html#a27f217fa2447d0af9ca6d20a6187af89',1,'daisy::Dps310SpiTransport::Read24()'],['../classdaisy_1_1_dps310.html#a940fda059ad39a6baaab6001d3880493',1,'daisy::Dps310::Read24()']]], - ['read8_7',['Read8',['../classdaisy_1_1_neo_pixel.html#a9c8c82427371f672b3f8f8a7ba25ad5f',1,'daisy::NeoPixel::Read8()'],['../classdaisy_1_1_neo_trellis.html#a9cb47f7b2a46bb73b196d078b971020b',1,'daisy::NeoTrellis::Read8()'],['../classdaisy_1_1_neo_trellis_i2_c_transport.html#ac8ecb136d2f865d63ea0bd01c72da3c3',1,'daisy::NeoTrellisI2CTransport::Read8()'],['../classdaisy_1_1_neo_pixel_i2_c_transport.html#a521e325e0931543e3a28563543e85875',1,'daisy::NeoPixelI2CTransport::Read8()'],['../classdaisy_1_1_icm20948.html#ac7d0a07dfcd1eb78852c8bc91c9c842b',1,'daisy::Icm20948::Read8()'],['../classdaisy_1_1_icm20948_i2_c_transport.html#a159abd6dce208e70d3d4a44846e06dc4',1,'daisy::Icm20948I2CTransport::Read8()'],['../classdaisy_1_1_icm20948_spi_transport.html#a6e6ccd1b204c985653ed92a699ebed2a',1,'daisy::Icm20948SpiTransport::Read8()'],['../classdaisy_1_1_dps310_i2_c_transport.html#a2e1de506134bc891b65a204443f70c9f',1,'daisy::Dps310I2CTransport::Read8()'],['../classdaisy_1_1_dps310_spi_transport.html#a7f279c9f407a2129090c335f6e5fd2b0',1,'daisy::Dps310SpiTransport::Read8()'],['../classdaisy_1_1_apds9960.html#a5cd389597fe2f129725ca356999005c2',1,'daisy::Apds9960::Read8()'],['../classdaisy_1_1_dps310.html#ab4ae4d6ee618584e7ff46c800cd2e7b5',1,'daisy::Dps310::Read8()']]], + ['read8_7',['Read8',['../classdaisy_1_1_icm20948.html#ac7d0a07dfcd1eb78852c8bc91c9c842b',1,'daisy::Icm20948::Read8()'],['../classdaisy_1_1_neo_trellis.html#a9cb47f7b2a46bb73b196d078b971020b',1,'daisy::NeoTrellis::Read8()'],['../classdaisy_1_1_neo_trellis_i2_c_transport.html#ac8ecb136d2f865d63ea0bd01c72da3c3',1,'daisy::NeoTrellisI2CTransport::Read8()'],['../classdaisy_1_1_neo_pixel.html#a9c8c82427371f672b3f8f8a7ba25ad5f',1,'daisy::NeoPixel::Read8()'],['../classdaisy_1_1_neo_pixel_i2_c_transport.html#a521e325e0931543e3a28563543e85875',1,'daisy::NeoPixelI2CTransport::Read8()'],['../classdaisy_1_1_icm20948_spi_transport.html#a6e6ccd1b204c985653ed92a699ebed2a',1,'daisy::Icm20948SpiTransport::Read8()'],['../classdaisy_1_1_apds9960.html#a5cd389597fe2f129725ca356999005c2',1,'daisy::Apds9960::Read8()'],['../classdaisy_1_1_dps310_i2_c_transport.html#a2e1de506134bc891b65a204443f70c9f',1,'daisy::Dps310I2CTransport::Read8()'],['../classdaisy_1_1_dps310_spi_transport.html#a7f279c9f407a2129090c335f6e5fd2b0',1,'daisy::Dps310SpiTransport::Read8()'],['../classdaisy_1_1_icm20948_i2_c_transport.html#a159abd6dce208e70d3d4a44846e06dc4',1,'daisy::Icm20948I2CTransport::Read8()'],['../classdaisy_1_1_dps310.html#ab4ae4d6ee618584e7ff46c800cd2e7b5',1,'daisy::Dps310::Read8()']]], ['readable_8',['readable',['../classdaisy_1_1_ring_buffer.html#a7055d8829240337fc8979fa3eba2341c',1,'daisy::RingBuffer::readable()'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#af813b904145707cef9794fbd8346f066',1,'daisy::RingBuffer< T, 0 >::readable()']]], - ['readable_9',['Readable',['../classdaisy_1_1_midi_uart_transport.html#a3003a674263cd011b8b61ef4de02c6b0',1,'daisy::MidiUartTransport::Readable()'],['../classdaisy_1_1_midi_usb_transport.html#a826d042793bbbf38f5b19aab51207702',1,'daisy::MidiUsbTransport::Readable()'],['../classdaisy_1_1_uart_handler.html#a4b8cad10b4f9a9520d2248c567babcc1',1,'daisy::UartHandler::Readable()']]], - ['readablefifo_10',['ReadableFifo',['../classdaisy_1_1_uart_handler.html#ac3af4732fb0a31c38d182248e80413a2',1,'daisy::UartHandler']]], - ['readaccelrange_11',['ReadAccelRange',['../classdaisy_1_1_icm20948.html#a303b9e1efd4abffc802c356934971b40',1,'daisy::Icm20948']]], - ['readanalogpinraw_12',['ReadAnalogPinRaw',['../classdaisy_1_1_m_a_x11300_driver.html#a2fc9ed751123bc6dbcff9b64d234a638',1,'daisy::MAX11300Driver']]], - ['readanalogpinvolts_13',['ReadAnalogPinVolts',['../classdaisy_1_1_m_a_x11300_driver.html#ac1f64f0578d7dd888e75f4ad4ecd4aff',1,'daisy::MAX11300Driver']]], - ['readbits_14',['ReadBits',['../classdaisy_1_1_dps310.html#aaf7a424972d2e810208fffed986ef1d5',1,'daisy::Dps310::ReadBits()'],['../classdaisy_1_1_icm20948.html#a9dee0aeead93ce6fc0f9a6221a802349',1,'daisy::Icm20948::ReadBits()']]], - ['readdataataddress_15',['ReadDataAtAddress',['../classdaisy_1_1_i2_c_handle.html#a2a7a2bcf654a383c6032a86a13645ea3',1,'daisy::I2CHandle']]], - ['readdigitalpin_16',['ReadDigitalPin',['../classdaisy_1_1_m_a_x11300_driver.html#a865eed869d1cdb669896b0ca4dfda683',1,'daisy::MAX11300Driver']]], - ['readexternalregister_17',['ReadExternalRegister',['../classdaisy_1_1_icm20948.html#a4fda80b24df448f0648c1a9fe5179a8d',1,'daisy::Icm20948']]], - ['readgesture_18',['ReadGesture',['../classdaisy_1_1_apds9960.html#a2223fb264bb7284f6a294a311f0fa490',1,'daisy::Apds9960']]], - ['readgyrorange_19',['ReadGyroRange',['../classdaisy_1_1_icm20948.html#ae848d58d1272c93f82d3cdb2bb989826',1,'daisy::Icm20948']]], - ['readkeypad_20',['ReadKeypad',['../classdaisy_1_1_neo_trellis.html#ad8124f8933fd9894ddcd54ca6e6df15a',1,'daisy::NeoTrellis']]], - ['readlen_21',['ReadLen',['../classdaisy_1_1_neo_pixel_i2_c_transport.html#ac55451524996bd07b4870a8e98dc948b',1,'daisy::NeoPixelI2CTransport::ReadLen()'],['../classdaisy_1_1_neo_pixel.html#a7749453367c03ba2118b197cffe3c187',1,'daisy::NeoPixel::ReadLen()'],['../classdaisy_1_1_neo_trellis_i2_c_transport.html#aeb052ab80fb5e310c2440d83e677af78',1,'daisy::NeoTrellisI2CTransport::ReadLen()'],['../classdaisy_1_1_neo_trellis.html#a5f1a25ea0f51d749c420cbd6c502605a',1,'daisy::NeoTrellis::ReadLen()']]], - ['readmagregister_22',['ReadMagRegister',['../classdaisy_1_1_icm20948.html#ac9875cd18b2739d8fc2cacce3c0d348b',1,'daisy::Icm20948']]], - ['readout_23',['ReadOut',['../classdaisy_1_1_tlv493d.html#ac2ac2ef4689e1b66faae9920b10eb055',1,'daisy::Tlv493d']]], - ['readpin_24',['ReadPin',['../classdaisy_1_1_mcp23_x17.html#aeaabf2265db536f7f146f62c8716c1dc',1,'daisy::Mcp23X17']]], - ['readport_25',['ReadPort',['../classdaisy_1_1_mcp23_x17.html#a4e30ad0854d551c84cf76cf63577e624',1,'daisy::Mcp23X17']]], - ['readproximity_26',['ReadProximity',['../classdaisy_1_1_apds9960.html#a9a6ceec95f3c07ccdffe0dbeefe8b73b',1,'daisy::Apds9960']]], - ['readreg_27',['ReadReg',['../classdaisy_1_1_mcp23017_transport.html#a3404e29bb09f311706aa0fada3fb16e7',1,'daisy::Mcp23017Transport::ReadReg()'],['../classdaisy_1_1_dps310_spi_transport.html#ab180ddf3e5d7f8091b9c85fd938e5385',1,'daisy::Dps310SpiTransport::ReadReg()'],['../classdaisy_1_1_mcp23017_transport.html#a856a58cd97fd8a98442f14190a4cecd1',1,'daisy::Mcp23017Transport::ReadReg()'],['../classdaisy_1_1_icm20948.html#ae5764b8f298c52ec37a0a3cb95c3b324',1,'daisy::Icm20948::ReadReg()'],['../classdaisy_1_1_icm20948_i2_c_transport.html#ab76c806e1ac36e3ae983e75dd5cfd207',1,'daisy::Icm20948I2CTransport::ReadReg()'],['../classdaisy_1_1_icm20948_spi_transport.html#ad7a5767ad338dd5d9e2a80e04cdf9a4a',1,'daisy::Icm20948SpiTransport::ReadReg()'],['../classdaisy_1_1_dps310_i2_c_transport.html#aed9e66c7447996ab3d9223a911450497',1,'daisy::Dps310I2CTransport::ReadReg()'],['../classdaisy_1_1_dps310.html#a91ee65deaeec2dfaf85fcb9652b2705d',1,'daisy::Dps310::ReadReg()']]], - ['readregister16_28',['ReadRegister16',['../classdaisy_1_1_mpr121.html#ae89924aa405ee5ae5f2c5b40cccf86a9',1,'daisy::Mpr121']]], - ['readregister8_29',['ReadRegister8',['../classdaisy_1_1_mpr121.html#a7ba853b16da4d77f5f3637feaf5b63b8',1,'daisy::Mpr121']]], - ['reads16_30',['ReadS16',['../classdaisy_1_1_dps310.html#a711b21ddb3d3c70d4849b1b784930d97',1,'daisy::Dps310']]], - ['reads16_5fle_31',['ReadS16_LE',['../classdaisy_1_1_dps310.html#a2f5262ff4f5d56d189465e029357ca7d',1,'daisy::Dps310']]], - ['ready_32',['Ready',['../classdaisy_1_1_m_a_x11300_multi_slave_spi_transport.html#ad5e71e80d2be5e170db6c4b5219b6aab',1,'daisy::MAX11300MultiSlaveSpiTransport']]], - ['receiveblocking_33',['ReceiveBlocking',['../classdaisy_1_1_i2_c_handle.html#a5232996113cc203d72cb75e57b62fa9d',1,'daisy::I2CHandle']]], - ['receivedma_34',['ReceiveDma',['../classdaisy_1_1_i2_c_handle.html#ad6f3fdb091285a40a34ca2ebf09a94a8',1,'daisy::I2CHandle']]], - ['record_35',['Record',['../classdaisy_1_1_voct_calibration.html#ad793014c6d82e680aa337fb23e13608d',1,'daisy::VoctCalibration']]], - ['rectangle_36',['Rectangle',['../classdaisy_1_1_rectangle.html#ae3fba9711abedffcf9d4dc2af4080571',1,'daisy::Rectangle::Rectangle()'],['../classdaisy_1_1_rectangle.html#a5fe610247716deabd714b4ba58435e7d',1,'daisy::Rectangle::Rectangle(int16_t width, int16_t height)'],['../classdaisy_1_1_rectangle.html#ab91210090cfb10b5a0971c8c43d09eb3',1,'daisy::Rectangle::Rectangle(int16_t x, int16_t y, int16_t width, int16_t height)'],['../classdaisy_1_1_rectangle.html#a875e0b0ab17e489ca643db34355dc4d4',1,'daisy::Rectangle::Rectangle(const Rectangle &other)']]], - ['red_37',['Red',['../classdaisy_1_1_color.html#ab645aa34a553a044e9c901546e78ed8f',1,'daisy::Color']]], - ['red8_38',['Red8',['../classdaisy_1_1_color.html#af39d1a11445e8bfff1ea2bd6e9ec7748',1,'daisy::Color']]], - ['reduced_39',['Reduced',['../classdaisy_1_1_rectangle.html#a6eea3884b558875d5ac7aab86062e2b8',1,'daisy::Rectangle::Reduced(int16_t sizeToReduce) const'],['../classdaisy_1_1_rectangle.html#a9cba11d030dff444dd6d31dbf6fd9d13',1,'daisy::Rectangle::Reduced(int16_t xToReduce, int16_t yToReduce) const']]], - ['reenumerate_40',['ReEnumerate',['../classdaisy_1_1_u_s_b_host_handle.html#a369f062c8add67f2f6963bb87286d6ed',1,'daisy::USBHostHandle']]], - ['registercallback_41',['RegisterCallback',['../classdaisy_1_1_neo_trellis.html#ab8560c44784f6eca6807693db0b2535d',1,'daisy::NeoTrellis']]], - ['remove_42',['Remove',['../classdaisy_1_1_f_i_f_o_base.html#a7a040559220ea37332b62fbb9dc82e7d',1,'daisy::FIFOBase::Remove()'],['../classdaisy_1_1_stack_base.html#a0aca4cedbec62035867fff63a2be529f',1,'daisy::StackBase::Remove()']]], - ['removeallequalto_43',['RemoveAllEqualTo',['../classdaisy_1_1_f_i_f_o_base.html#aa3f1d45b20a1d63789b4346bbfec5404',1,'daisy::FIFOBase::RemoveAllEqualTo()'],['../classdaisy_1_1_stack_base.html#a5c246e49801ddb0c162567a6cdc84a58',1,'daisy::StackBase::RemoveAllEqualTo()']]], - ['removefrombottom_44',['RemoveFromBottom',['../classdaisy_1_1_rectangle.html#a39ac3cccf36cafade673945385c5601b',1,'daisy::Rectangle']]], - ['removefromleft_45',['RemoveFromLeft',['../classdaisy_1_1_rectangle.html#a41bcd42ae3b23cb259e354665ec68678',1,'daisy::Rectangle']]], - ['removefromright_46',['RemoveFromRight',['../classdaisy_1_1_rectangle.html#a2e2b0d5e50b0b1224851a6287087a68d',1,'daisy::Rectangle']]], - ['removefromtop_47',['RemoveFromTop',['../classdaisy_1_1_rectangle.html#a8609526904dc174d4e089ae44147357c',1,'daisy::Rectangle']]], - ['removeprefix_48',['RemovePrefix',['../classdaisy_1_1_fixed_cap_str_base.html#a43b0c922c7abc563268e92d881ffaa36',1,'daisy::FixedCapStrBase']]], - ['removesuffix_49',['RemoveSuffix',['../classdaisy_1_1_fixed_cap_str_base.html#aafa6b303b8f9b6ed912af9adebd5ff2d',1,'daisy::FixedCapStrBase']]], - ['reset_50',['Reset',['../classdaisy_1_1_icm20948.html#a5a3abfded17083721e363d9fb76d782d',1,'daisy::Icm20948::Reset()'],['../classdaisy_1_1_cpu_load_meter.html#a674f7c975cafc8bc89cba9f4a78308dc',1,'daisy::CpuLoadMeter::Reset()'],['../classdaisy_1_1_fixed_cap_str_base.html#a9f188475678bb61b8737e80de75b2012',1,'daisy::FixedCapStrBase::Reset(const CharType *str)'],['../classdaisy_1_1_fixed_cap_str_base.html#a4a868d708e6d2846a88328b292dec877',1,'daisy::FixedCapStrBase::Reset(const CharType *str, std::size_t length)']]], - ['reset_51',['reset',['../classdaisy_1_1_dps310.html#a2cc9301810c24671b5b21fc0253e5980',1,'daisy::Dps310']]], - ['reset_5f_52',['Reset_',['../classdaisy_1_1_fixed_cap_str_base.html#a4586e2260046cb17c6e78cdbfd8efa9e',1,'daisy::FixedCapStrBase']]], - ['resetat_53',['ResetAt',['../classdaisy_1_1_fixed_cap_str_base.html#a4a14a820d2f7bdf7cad8a07a53771296',1,'daisy::FixedCapStrBase']]], - ['resetat_5f_54',['ResetAt_',['../classdaisy_1_1_fixed_cap_str_base.html#aeada8ffe33966f911ed0c7af9d4c345d',1,'daisy::FixedCapStrBase']]], - ['resetcounts_55',['ResetCounts',['../classdaisy_1_1_apds9960.html#a30065fbd4498c53073e95ea6e1142c22',1,'daisy::Apds9960']]], - ['reseti2cmaster_56',['ResetI2CMaster',['../classdaisy_1_1_icm20948.html#a124bb4a956a4082ed8052d454cecc8ef',1,'daisy::Icm20948']]], - ['resettobootloader_57',['ResetToBootloader',['../classdaisy_1_1_system.html#ae7e0bb7a214d85ceaa2264f2d00afd5a',1,'daisy::System']]], - ['resettodefault_58',['ResetToDefault',['../classdaisy_1_1_mapped_int_value.html#a921f370452a295e5f52f0483b3559a83',1,'daisy::MappedIntValue::ResetToDefault()'],['../classdaisy_1_1_mapped_string_list_value.html#aa1edf81d83cf2ce90d56d0f36f7a50a9',1,'daisy::MappedStringListValue::ResetToDefault()'],['../classdaisy_1_1_mapped_float_value.html#accc506533ee066815a8c78f3b7a6cbfc',1,'daisy::MappedFloatValue::ResetToDefault()'],['../classdaisy_1_1_mapped_value.html#a60288a18a6173903f3a7e4c5c9aebb84',1,'daisy::MappedValue::ResetToDefault()']]], - ['restart_59',['Restart',['../classdaisy_1_1_wav_player.html#ac3b2f9f9cdf18ea861be227dcffd5da9',1,'daisy::WavPlayer']]], - ['restoredefaults_60',['RestoreDefaults',['../classdaisy_1_1_persistent_storage.html#ad573b53a242aae9743eea18b93f6e39d',1,'daisy::PersistentStorage']]], - ['reversesection_61',['ReverseSection',['../classdaisy_1_1_fixed_cap_str_base.html#af1d7b42ad446ef5e6188bdf289f2d670',1,'daisy::FixedCapStrBase']]], - ['rgbled_62',['RgbLed',['../classdaisy_1_1_rgb_led.html#a83702469af420ecd8240571ae40677f3',1,'daisy::RgbLed']]], - ['ringbuffer_63',['RingBuffer',['../classdaisy_1_1_ring_buffer.html#ab6149ef245dfd8addeea22f5b020262c',1,'daisy::RingBuffer::RingBuffer()'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#a61a776017ae33a993cd911c103e12074',1,'daisy::RingBuffer< T, 0 >::RingBuffer()']]], - ['risingedge_64',['RisingEdge',['../classdaisy_1_1_encoder.html#ab501cf73d10d81058b485c48b9eb506f',1,'daisy::Encoder::RisingEdge()'],['../classdaisy_1_1_switch.html#a71f6054840c76ebe3cb2517dc7830d34',1,'daisy::Switch::RisingEdge()']]], - ['rx_65',['Rx',['../classdaisy_1_1_midi_uart_transport.html#a9b30f4f8f9bc708d9f4a921eade1d7d3',1,'daisy::MidiUartTransport::Rx()'],['../classdaisy_1_1_midi_usb_transport.html#a641c315e8d73411a3c7a2a8087b8f834',1,'daisy::MidiUsbTransport::Rx()']]], - ['rxactive_66',['RxActive',['../classdaisy_1_1_midi_uart_transport.html#aded78c4242d61c92eaece731f954b57e',1,'daisy::MidiUartTransport::RxActive()'],['../classdaisy_1_1_midi_usb_transport.html#abaea457dd71e7e143f7c5f5045de2b42',1,'daisy::MidiUsbTransport::RxActive()'],['../classdaisy_1_1_uart_handler.html#aeeb804c58c2ccf574142b2a030d2d83b',1,'daisy::UartHandler::RxActive()']]] + ['readaccelrange_9',['ReadAccelRange',['../classdaisy_1_1_icm20948.html#a303b9e1efd4abffc802c356934971b40',1,'daisy::Icm20948']]], + ['readanalogpinraw_10',['ReadAnalogPinRaw',['../classdaisy_1_1_m_a_x11300_driver.html#a2fc9ed751123bc6dbcff9b64d234a638',1,'daisy::MAX11300Driver']]], + ['readanalogpinvolts_11',['ReadAnalogPinVolts',['../classdaisy_1_1_m_a_x11300_driver.html#ac1f64f0578d7dd888e75f4ad4ecd4aff',1,'daisy::MAX11300Driver']]], + ['readbits_12',['ReadBits',['../classdaisy_1_1_dps310.html#aaf7a424972d2e810208fffed986ef1d5',1,'daisy::Dps310::ReadBits()'],['../classdaisy_1_1_icm20948.html#a9dee0aeead93ce6fc0f9a6221a802349',1,'daisy::Icm20948::ReadBits()']]], + ['readdataataddress_13',['ReadDataAtAddress',['../classdaisy_1_1_i2_c_handle.html#a2a7a2bcf654a383c6032a86a13645ea3',1,'daisy::I2CHandle']]], + ['readdigitalpin_14',['ReadDigitalPin',['../classdaisy_1_1_m_a_x11300_driver.html#a865eed869d1cdb669896b0ca4dfda683',1,'daisy::MAX11300Driver']]], + ['readexternalregister_15',['ReadExternalRegister',['../classdaisy_1_1_icm20948.html#a4fda80b24df448f0648c1a9fe5179a8d',1,'daisy::Icm20948']]], + ['readgesture_16',['ReadGesture',['../classdaisy_1_1_apds9960.html#a2223fb264bb7284f6a294a311f0fa490',1,'daisy::Apds9960']]], + ['readgyrorange_17',['ReadGyroRange',['../classdaisy_1_1_icm20948.html#ae848d58d1272c93f82d3cdb2bb989826',1,'daisy::Icm20948']]], + ['readkeypad_18',['ReadKeypad',['../classdaisy_1_1_neo_trellis.html#ad8124f8933fd9894ddcd54ca6e6df15a',1,'daisy::NeoTrellis']]], + ['readlen_19',['ReadLen',['../classdaisy_1_1_neo_pixel_i2_c_transport.html#ac55451524996bd07b4870a8e98dc948b',1,'daisy::NeoPixelI2CTransport::ReadLen()'],['../classdaisy_1_1_neo_pixel.html#a7749453367c03ba2118b197cffe3c187',1,'daisy::NeoPixel::ReadLen()'],['../classdaisy_1_1_neo_trellis_i2_c_transport.html#aeb052ab80fb5e310c2440d83e677af78',1,'daisy::NeoTrellisI2CTransport::ReadLen()'],['../classdaisy_1_1_neo_trellis.html#a5f1a25ea0f51d749c420cbd6c502605a',1,'daisy::NeoTrellis::ReadLen()']]], + ['readmagregister_20',['ReadMagRegister',['../classdaisy_1_1_icm20948.html#ac9875cd18b2739d8fc2cacce3c0d348b',1,'daisy::Icm20948']]], + ['readout_21',['ReadOut',['../classdaisy_1_1_tlv493d.html#ac2ac2ef4689e1b66faae9920b10eb055',1,'daisy::Tlv493d']]], + ['readpin_22',['ReadPin',['../classdaisy_1_1_mcp23_x17.html#aeaabf2265db536f7f146f62c8716c1dc',1,'daisy::Mcp23X17']]], + ['readport_23',['ReadPort',['../classdaisy_1_1_mcp23_x17.html#a4e30ad0854d551c84cf76cf63577e624',1,'daisy::Mcp23X17']]], + ['readproximity_24',['ReadProximity',['../classdaisy_1_1_apds9960.html#a9a6ceec95f3c07ccdffe0dbeefe8b73b',1,'daisy::Apds9960']]], + ['readreg_25',['ReadReg',['../classdaisy_1_1_icm20948.html#ae5764b8f298c52ec37a0a3cb95c3b324',1,'daisy::Icm20948::ReadReg()'],['../classdaisy_1_1_mcp23017_transport.html#a856a58cd97fd8a98442f14190a4cecd1',1,'daisy::Mcp23017Transport::ReadReg(MCPRegister reg)'],['../classdaisy_1_1_mcp23017_transport.html#a3404e29bb09f311706aa0fada3fb16e7',1,'daisy::Mcp23017Transport::ReadReg(MCPRegister reg, uint8_t &portA, uint8_t &portB)'],['../classdaisy_1_1_dps310.html#a91ee65deaeec2dfaf85fcb9652b2705d',1,'daisy::Dps310::ReadReg()'],['../classdaisy_1_1_icm20948_i2_c_transport.html#ab76c806e1ac36e3ae983e75dd5cfd207',1,'daisy::Icm20948I2CTransport::ReadReg()'],['../classdaisy_1_1_icm20948_spi_transport.html#ad7a5767ad338dd5d9e2a80e04cdf9a4a',1,'daisy::Icm20948SpiTransport::ReadReg()'],['../classdaisy_1_1_dps310_i2_c_transport.html#aed9e66c7447996ab3d9223a911450497',1,'daisy::Dps310I2CTransport::ReadReg()'],['../classdaisy_1_1_dps310_spi_transport.html#ab180ddf3e5d7f8091b9c85fd938e5385',1,'daisy::Dps310SpiTransport::ReadReg()']]], + ['readregister16_26',['ReadRegister16',['../classdaisy_1_1_mpr121.html#ae89924aa405ee5ae5f2c5b40cccf86a9',1,'daisy::Mpr121']]], + ['readregister8_27',['ReadRegister8',['../classdaisy_1_1_mpr121.html#a7ba853b16da4d77f5f3637feaf5b63b8',1,'daisy::Mpr121']]], + ['reads16_28',['ReadS16',['../classdaisy_1_1_dps310.html#a711b21ddb3d3c70d4849b1b784930d97',1,'daisy::Dps310']]], + ['reads16_5fle_29',['ReadS16_LE',['../classdaisy_1_1_dps310.html#a2f5262ff4f5d56d189465e029357ca7d',1,'daisy::Dps310']]], + ['ready_30',['Ready',['../classdaisy_1_1_m_a_x11300_multi_slave_spi_transport.html#ad5e71e80d2be5e170db6c4b5219b6aab',1,'daisy::MAX11300MultiSlaveSpiTransport']]], + ['receiveblocking_31',['ReceiveBlocking',['../classdaisy_1_1_i2_c_handle.html#a5232996113cc203d72cb75e57b62fa9d',1,'daisy::I2CHandle']]], + ['receivedma_32',['ReceiveDma',['../classdaisy_1_1_i2_c_handle.html#ad6f3fdb091285a40a34ca2ebf09a94a8',1,'daisy::I2CHandle']]], + ['record_33',['Record',['../classdaisy_1_1_voct_calibration.html#ad793014c6d82e680aa337fb23e13608d',1,'daisy::VoctCalibration']]], + ['rectangle_34',['Rectangle',['../classdaisy_1_1_rectangle.html#ae3fba9711abedffcf9d4dc2af4080571',1,'daisy::Rectangle::Rectangle()'],['../classdaisy_1_1_rectangle.html#a5fe610247716deabd714b4ba58435e7d',1,'daisy::Rectangle::Rectangle(int16_t width, int16_t height)'],['../classdaisy_1_1_rectangle.html#ab91210090cfb10b5a0971c8c43d09eb3',1,'daisy::Rectangle::Rectangle(int16_t x, int16_t y, int16_t width, int16_t height)'],['../classdaisy_1_1_rectangle.html#a875e0b0ab17e489ca643db34355dc4d4',1,'daisy::Rectangle::Rectangle(const Rectangle &other)']]], + ['red_35',['Red',['../classdaisy_1_1_color.html#ab645aa34a553a044e9c901546e78ed8f',1,'daisy::Color']]], + ['red8_36',['Red8',['../classdaisy_1_1_color.html#af39d1a11445e8bfff1ea2bd6e9ec7748',1,'daisy::Color']]], + ['reduced_37',['Reduced',['../classdaisy_1_1_rectangle.html#a6eea3884b558875d5ac7aab86062e2b8',1,'daisy::Rectangle::Reduced(int16_t sizeToReduce) const'],['../classdaisy_1_1_rectangle.html#a9cba11d030dff444dd6d31dbf6fd9d13',1,'daisy::Rectangle::Reduced(int16_t xToReduce, int16_t yToReduce) const']]], + ['reenumerate_38',['ReEnumerate',['../classdaisy_1_1_u_s_b_host_handle.html#a369f062c8add67f2f6963bb87286d6ed',1,'daisy::USBHostHandle']]], + ['registercallback_39',['RegisterCallback',['../classdaisy_1_1_neo_trellis.html#ab8560c44784f6eca6807693db0b2535d',1,'daisy::NeoTrellis']]], + ['remove_40',['Remove',['../classdaisy_1_1_f_i_f_o_base.html#a7a040559220ea37332b62fbb9dc82e7d',1,'daisy::FIFOBase::Remove()'],['../classdaisy_1_1_stack_base.html#a0aca4cedbec62035867fff63a2be529f',1,'daisy::StackBase::Remove()']]], + ['removeallequalto_41',['RemoveAllEqualTo',['../classdaisy_1_1_f_i_f_o_base.html#aa3f1d45b20a1d63789b4346bbfec5404',1,'daisy::FIFOBase::RemoveAllEqualTo()'],['../classdaisy_1_1_stack_base.html#a5c246e49801ddb0c162567a6cdc84a58',1,'daisy::StackBase::RemoveAllEqualTo()']]], + ['removefrombottom_42',['RemoveFromBottom',['../classdaisy_1_1_rectangle.html#a39ac3cccf36cafade673945385c5601b',1,'daisy::Rectangle']]], + ['removefromleft_43',['RemoveFromLeft',['../classdaisy_1_1_rectangle.html#a41bcd42ae3b23cb259e354665ec68678',1,'daisy::Rectangle']]], + ['removefromright_44',['RemoveFromRight',['../classdaisy_1_1_rectangle.html#a2e2b0d5e50b0b1224851a6287087a68d',1,'daisy::Rectangle']]], + ['removefromtop_45',['RemoveFromTop',['../classdaisy_1_1_rectangle.html#a8609526904dc174d4e089ae44147357c',1,'daisy::Rectangle']]], + ['removeprefix_46',['RemovePrefix',['../classdaisy_1_1_fixed_cap_str_base.html#a43b0c922c7abc563268e92d881ffaa36',1,'daisy::FixedCapStrBase']]], + ['removesuffix_47',['RemoveSuffix',['../classdaisy_1_1_fixed_cap_str_base.html#aafa6b303b8f9b6ed912af9adebd5ff2d',1,'daisy::FixedCapStrBase']]], + ['reset_48',['Reset',['../classdaisy_1_1_icm20948.html#a5a3abfded17083721e363d9fb76d782d',1,'daisy::Icm20948::Reset()'],['../classdaisy_1_1_midi_parser.html#a9fca6bc5b70e646c61a6abcd477a885c',1,'daisy::MidiParser::Reset()'],['../classdaisy_1_1_cpu_load_meter.html#a674f7c975cafc8bc89cba9f4a78308dc',1,'daisy::CpuLoadMeter::Reset()'],['../classdaisy_1_1_fixed_cap_str_base.html#a9f188475678bb61b8737e80de75b2012',1,'daisy::FixedCapStrBase::Reset(const CharType *str)'],['../classdaisy_1_1_fixed_cap_str_base.html#a4a868d708e6d2846a88328b292dec877',1,'daisy::FixedCapStrBase::Reset(const CharType *str, std::size_t length)']]], + ['reset_49',['reset',['../classdaisy_1_1_dps310.html#a2cc9301810c24671b5b21fc0253e5980',1,'daisy::Dps310']]], + ['reset_5f_50',['Reset_',['../classdaisy_1_1_fixed_cap_str_base.html#a4586e2260046cb17c6e78cdbfd8efa9e',1,'daisy::FixedCapStrBase']]], + ['resetat_51',['ResetAt',['../classdaisy_1_1_fixed_cap_str_base.html#a4a14a820d2f7bdf7cad8a07a53771296',1,'daisy::FixedCapStrBase']]], + ['resetat_5f_52',['ResetAt_',['../classdaisy_1_1_fixed_cap_str_base.html#aeada8ffe33966f911ed0c7af9d4c345d',1,'daisy::FixedCapStrBase']]], + ['resetcounts_53',['ResetCounts',['../classdaisy_1_1_apds9960.html#a30065fbd4498c53073e95ea6e1142c22',1,'daisy::Apds9960']]], + ['reseti2cmaster_54',['ResetI2CMaster',['../classdaisy_1_1_icm20948.html#a124bb4a956a4082ed8052d454cecc8ef',1,'daisy::Icm20948']]], + ['resettobootloader_55',['ResetToBootloader',['../classdaisy_1_1_system.html#ae7e0bb7a214d85ceaa2264f2d00afd5a',1,'daisy::System']]], + ['resettodefault_56',['ResetToDefault',['../classdaisy_1_1_mapped_value.html#a60288a18a6173903f3a7e4c5c9aebb84',1,'daisy::MappedValue::ResetToDefault()'],['../classdaisy_1_1_mapped_string_list_value.html#aa1edf81d83cf2ce90d56d0f36f7a50a9',1,'daisy::MappedStringListValue::ResetToDefault()'],['../classdaisy_1_1_mapped_int_value.html#a921f370452a295e5f52f0483b3559a83',1,'daisy::MappedIntValue::ResetToDefault()'],['../classdaisy_1_1_mapped_float_value.html#accc506533ee066815a8c78f3b7a6cbfc',1,'daisy::MappedFloatValue::ResetToDefault()']]], + ['restart_57',['Restart',['../classdaisy_1_1_wav_player.html#ac3b2f9f9cdf18ea861be227dcffd5da9',1,'daisy::WavPlayer']]], + ['restoredefaults_58',['RestoreDefaults',['../classdaisy_1_1_persistent_storage.html#ad573b53a242aae9743eea18b93f6e39d',1,'daisy::PersistentStorage']]], + ['reversesection_59',['ReverseSection',['../classdaisy_1_1_fixed_cap_str_base.html#af1d7b42ad446ef5e6188bdf289f2d670',1,'daisy::FixedCapStrBase']]], + ['rgbled_60',['RgbLed',['../classdaisy_1_1_rgb_led.html#a83702469af420ecd8240571ae40677f3',1,'daisy::RgbLed']]], + ['ringbuffer_61',['RingBuffer',['../classdaisy_1_1_ring_buffer.html#ab6149ef245dfd8addeea22f5b020262c',1,'daisy::RingBuffer::RingBuffer()'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#a61a776017ae33a993cd911c103e12074',1,'daisy::RingBuffer< T, 0 >::RingBuffer()']]], + ['risingedge_62',['RisingEdge',['../classdaisy_1_1_encoder.html#ab501cf73d10d81058b485c48b9eb506f',1,'daisy::Encoder::RisingEdge()'],['../classdaisy_1_1_switch.html#a71f6054840c76ebe3cb2517dc7830d34',1,'daisy::Switch::RisingEdge()']]], + ['rxactive_63',['RxActive',['../classdaisy_1_1_midi_uart_transport.html#aded78c4242d61c92eaece731f954b57e',1,'daisy::MidiUartTransport::RxActive()'],['../classdaisy_1_1_midi_usb_transport.html#abaea457dd71e7e143f7c5f5045de2b42',1,'daisy::MidiUsbTransport::RxActive()']]] ]; diff --git a/search/functions_13.js b/search/functions_13.js index 817881638..a8b183587 100644 --- a/search/functions_13.js +++ b/search/functions_13.js @@ -34,12 +34,12 @@ var searchData= ['setcoeff_31',['SetCoeff',['../classdaisy_1_1_analog_control.html#a2ace581abd8f0c5e35c0013e01f37f1c',1,'daisy::AnalogControl']]], ['setcolor_32',['SetColor',['../classdaisy_1_1_rgb_led.html#afc530391dc068788952edbe9907df8e9',1,'daisy::RgbLed']]], ['setcolorinterrupt_33',['SetColorInterrupt',['../classdaisy_1_1_apds9960.html#a3bb1a90fd6838df8349b983bf090e9dd',1,'daisy::Apds9960']]], - ['setcursor_34',['SetCursor',['../classdaisy_1_1_lcd_h_d44780.html#aff797aa8b9cfe432c61c286b897b1914',1,'daisy::LcdHD44780::SetCursor()'],['../classdaisy_1_1_one_bit_graphics_display.html#ae261bd2a57f39c379cab0465bddfa9fa',1,'daisy::OneBitGraphicsDisplay::SetCursor()']]], + ['setcursor_34',['SetCursor',['../classdaisy_1_1_one_bit_graphics_display.html#ae261bd2a57f39c379cab0465bddfa9fa',1,'daisy::OneBitGraphicsDisplay::SetCursor()'],['../classdaisy_1_1_lcd_h_d44780.html#aff797aa8b9cfe432c61c286b897b1914',1,'daisy::LcdHD44780::SetCursor()']]], ['setcvout1_35',['SetCvOut1',['../classdaisy_1_1_daisy_field.html#a7fd7e5cfdc8c8880748b9e3e4143902f',1,'daisy::DaisyField']]], ['setcvout2_36',['SetCvOut2',['../classdaisy_1_1_daisy_field.html#a47532828ea5e88f30782a21d4b4296e1',1,'daisy::DaisyField']]], ['setdata_37',['SetData',['../classdaisy_1_1_voct_calibration.html#aaaf0c5e195d9fd5c1ef0a727ffdcccfc',1,'daisy::VoctCalibration']]], ['setfootswitchled_38',['SetFootswitchLed',['../classdaisy_1_1_daisy_petal.html#a562d597f10b98d36bf1c37314a317d8c',1,'daisy::DaisyPetal']]], - ['setfrom0to1_39',['SetFrom0to1',['../classdaisy_1_1_mapped_string_list_value.html#a8e26e8f810f4a06e71324ee595a2b3b6',1,'daisy::MappedStringListValue::SetFrom0to1()'],['../classdaisy_1_1_mapped_int_value.html#abb5f3cb08aae5ed0399bfda88f8e09d9',1,'daisy::MappedIntValue::SetFrom0to1()'],['../classdaisy_1_1_mapped_float_value.html#a63f9ead2d537fd2a64ef7e82d1b91d1d',1,'daisy::MappedFloatValue::SetFrom0to1()'],['../classdaisy_1_1_mapped_value.html#a0547c449d82efa4ee8c21e716e035b53',1,'daisy::MappedValue::SetFrom0to1()']]], + ['setfrom0to1_39',['SetFrom0to1',['../classdaisy_1_1_mapped_int_value.html#abb5f3cb08aae5ed0399bfda88f8e09d9',1,'daisy::MappedIntValue::SetFrom0to1()'],['../classdaisy_1_1_mapped_float_value.html#a63f9ead2d537fd2a64ef7e82d1b91d1d',1,'daisy::MappedFloatValue::SetFrom0to1()'],['../classdaisy_1_1_mapped_value.html#a0547c449d82efa4ee8c21e716e035b53',1,'daisy::MappedValue::SetFrom0to1()'],['../classdaisy_1_1_mapped_string_list_value.html#a8e26e8f810f4a06e71324ee595a2b3b6',1,'daisy::MappedStringListValue::SetFrom0to1()']]], ['setgesturedimensions_40',['SetGestureDimensions',['../classdaisy_1_1_apds9960.html#a52a083d0ee8ead33d27047f25a9bb770',1,'daisy::Apds9960']]], ['setgesturefifothreshold_41',['SetGestureFIFOThreshold',['../classdaisy_1_1_apds9960.html#a124ffff67a1e7d8f6e49729c3450515f',1,'daisy::Apds9960']]], ['setgesturegain_42',['SetGestureGain',['../classdaisy_1_1_apds9960.html#ad451a1d1472e6622fdc893e7002521a3',1,'daisy::Apds9960']]], @@ -53,67 +53,66 @@ var searchData= ['setinterrupt_50',['SetInterrupt',['../classdaisy_1_1_tlv493d.html#a10c8eb11494135a3530b185503b6ab51',1,'daisy::Tlv493d']]], ['setintlimits_51',['SetIntLimits',['../classdaisy_1_1_apds9960.html#a3e2dfaffe42d0bc1482da0d0e0fbad92',1,'daisy::Apds9960']]], ['setkeypadevent_52',['SetKeypadEvent',['../classdaisy_1_1_neo_trellis.html#a9f9d8b34ba47241767af0596d906968b',1,'daisy::NeoTrellis']]], - ['setled_53',['SetLed',['../classdaisy_1_1_led_driver_pca9685.html#a7616848201aea05953403406ee89f272',1,'daisy::LedDriverPca9685']]], + ['setled_53',['SetLed',['../classdaisy_1_1_daisy_seed.html#ac4501329b4a5a5cfb9e3cd6003fcda6f',1,'daisy::DaisySeed::SetLed()'],['../classdaisy_1_1_led_driver_pca9685.html#a0d21f17e93238bbef75ee57ab557e7e9',1,'daisy::LedDriverPca9685::SetLed(int ledIndex, uint8_t brightness)'],['../classdaisy_1_1_led_driver_pca9685.html#a7616848201aea05953403406ee89f272',1,'daisy::LedDriverPca9685::SetLed(int ledIndex, float brightness)'],['../classdaisy_1_1_daisy_versio.html#a1ebe1bea805a13bcc366de005c14a27c',1,'daisy::DaisyVersio::SetLed()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a77aa8d762be1784b07a9b56328a7a491',1,'daisy::patch_sm::DaisyPatchSM::SetLed()'],['../classdaisy_1_1_daisy_legio.html#a4576f23c222af59f3c4b98f73a78628a',1,'daisy::DaisyLegio::SetLed()']]], ['setled_54',['SetLED',['../classdaisy_1_1_apds9960.html#ad938cafd3f89e17bbf983a6d9fd7e0b3',1,'daisy::Apds9960']]], - ['setled_55',['SetLed',['../classdaisy_1_1_led_driver_pca9685.html#a0d21f17e93238bbef75ee57ab557e7e9',1,'daisy::LedDriverPca9685::SetLed()'],['../classdaisy_1_1_daisy_versio.html#a1ebe1bea805a13bcc366de005c14a27c',1,'daisy::DaisyVersio::SetLed()'],['../classdaisy_1_1_daisy_seed.html#ac4501329b4a5a5cfb9e3cd6003fcda6f',1,'daisy::DaisySeed::SetLed()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a77aa8d762be1784b07a9b56328a7a491',1,'daisy::patch_sm::DaisyPatchSM::SetLed()'],['../classdaisy_1_1_daisy_legio.html#a4576f23c222af59f3c4b98f73a78628a',1,'daisy::DaisyLegio::SetLed()']]], - ['setledraw_56',['SetLedRaw',['../classdaisy_1_1_led_driver_pca9685.html#a0a7c0c80d76741fddd835e4d2b138f3a',1,'daisy::LedDriverPca9685']]], - ['setlooping_57',['SetLooping',['../classdaisy_1_1_wav_player.html#a29d340360f073bd1767e51a06876eafe',1,'daisy::WavPlayer']]], - ['setmagdatarate_58',['SetMagDataRate',['../classdaisy_1_1_icm20948.html#a46c4eda38a5e0b634afdd4993c742ca2',1,'daisy::Icm20948']]], - ['setmode_59',['setMode',['../classdaisy_1_1_dps310.html#a8227bd52a9d2ef66dc95f5648dde5204',1,'daisy::Dps310']]], - ['setonebitgraphicsdisplaytodrawto_60',['SetOneBitGraphicsDisplayToDrawTo',['../classdaisy_1_1_full_screen_item_menu.html#aff9c91b42f7163d6a2dc7014e3fc56d9',1,'daisy::FullScreenItemMenu']]], - ['setoutputcompensation_61',['SetOutputCompensation',['../classdaisy_1_1_audio_handle.html#ad35fbe0d71e89dbaccd362c02261ad8a',1,'daisy::AudioHandle']]], - ['setperiod_62',['SetPeriod',['../classdaisy_1_1_timer_handle.html#a0e11c2b05fbd0c6e1cac5d3babe79453',1,'daisy::TimerHandle']]], - ['setpin_63',['SetPin',['../classdaisy_1_1_neo_pixel.html#a7665573b58aa4f6a53bfcef6c65f8757',1,'daisy::NeoPixel']]], - ['setpixelcolor_64',['SetPixelColor',['../classdaisy_1_1_dot_star.html#aa909ca940c58f2e8863e3be4a6c3a6d2',1,'daisy::DotStar::SetPixelColor()'],['../classdaisy_1_1_neo_pixel.html#aba8e7b08e8f6126a34a3d0da252b7960',1,'daisy::NeoPixel::SetPixelColor(uint16_t n, uint8_t r, uint8_t g, uint8_t b)'],['../classdaisy_1_1_neo_pixel.html#a9ed0843e42a63d9650b652e93da858c2',1,'daisy::NeoPixel::SetPixelColor(uint16_t n, uint8_t r, uint8_t g, uint8_t b, uint8_t w)'],['../classdaisy_1_1_neo_pixel.html#af3f3b8d35d190ffc7cefe689ff15ae5e',1,'daisy::NeoPixel::SetPixelColor(uint16_t n, uint32_t c)'],['../classdaisy_1_1_dot_star.html#a1be57cf9c6a1a4da99874cc3437d246e',1,'daisy::DotStar::SetPixelColor(uint16_t idx, uint32_t color)'],['../classdaisy_1_1_dot_star.html#af210e855104705b4f6b252b03998db66',1,'daisy::DotStar::SetPixelColor(uint16_t idx, const Color &color)']]], - ['setpixelglobalbrightness_65',['SetPixelGlobalBrightness',['../classdaisy_1_1_dot_star.html#a8ceaf459805764548b8c1008d97bdad5',1,'daisy::DotStar']]], - ['setpostgain_66',['SetPostGain',['../classdaisy_1_1_audio_handle.html#af958fe1518bf32d93cfc5278a1736789',1,'daisy::AudioHandle']]], - ['setprescaler_67',['SetPrescaler',['../classdaisy_1_1_timer_handle.html#aeab69c0b8cd73cf438bc056786cc00f6',1,'daisy::TimerHandle']]], - ['setproxgain_68',['SetProxGain',['../classdaisy_1_1_apds9960.html#aa4267e573b82f14d7950ebe1f179db0e',1,'daisy::Apds9960']]], - ['setproximityinterrupt_69',['SetProximityInterrupt',['../classdaisy_1_1_apds9960.html#a3cf8c7053b967952b70d4da945ea3fc9',1,'daisy::Apds9960']]], - ['setproxpulse_70',['SetProxPulse',['../classdaisy_1_1_apds9960.html#aa19e474f6dd88346a0b5b845ce1df78a',1,'daisy::Apds9960']]], - ['setreceivecallback_71',['SetReceiveCallback',['../class_usb_handle.html#a52c22cce6616ab3948d7933bfc0e7d0b',1,'UsbHandle::SetReceiveCallback(ReceiveCallback cb, UsbPeriph dev)'],['../class_usb_handle.html#a52c22cce6616ab3948d7933bfc0e7d0b',1,'UsbHandle::SetReceiveCallback(ReceiveCallback cb, UsbPeriph dev)']]], - ['setred_72',['SetRed',['../classdaisy_1_1_rgb_led.html#a3e2c0d791418d97742270a43a0bcdcc4',1,'daisy::RgbLed']]], - ['setregbits_73',['SetRegBits',['../classdaisy_1_1_tlv493d.html#a5fa69cf9112e5c9ecd3992365a803004',1,'daisy::Tlv493d']]], - ['setringled_74',['SetRingLed',['../classdaisy_1_1_daisy_petal.html#ad92270ffe128bc678b78be2067d4fcfe',1,'daisy::DaisyPetal']]], - ['setsamplerate_75',['SetSampleRate',['../classdaisy_1_1_led.html#a55c8e1df70930f21270f4c28df6320fb',1,'daisy::Led::SetSampleRate()'],['../classdaisy_1_1_analog_control.html#a4cbdf8afb5e284bd9e12bca004a10fab',1,'daisy::AnalogControl::SetSampleRate()'],['../classdaisy_1_1_audio_handle.html#a66f20f5f6f2d2b49a80a25678869a47a',1,'daisy::AudioHandle::SetSampleRate()']]], - ['settestpoint_76',['SetTestPoint',['../classdaisy_1_1_daisy_seed.html#a213214b79bb612175f2e82241887d42e',1,'daisy::DaisySeed']]], - ['setthresholds_77',['SetThresholds',['../classdaisy_1_1_mpr121.html#aa8abce9cdda9b9eb3811b54ecf7dcd85',1,'daisy::Mpr121']]], - ['setupdaterate_78',['SetUpdateRate',['../classdaisy_1_1_encoder.html#aa613736d374d8a751ecb3b804b11e29d',1,'daisy::Encoder::SetUpdateRate()'],['../classdaisy_1_1_switch.html#a9b690946462b81edba1feace3625bc64',1,'daisy::Switch::SetUpdateRate()']]], - ['setupmag_79',['SetupMag',['../classdaisy_1_1_icm20948.html#a79983dbc3ab1c35742a700ebed7e066f',1,'daisy::Icm20948']]], - ['setwavetableinfo_80',['SetWaveTableInfo',['../classdaisy_1_1_wave_table_loader.html#a946156ea77f74d7ee25d122a6ba42ab0',1,'daisy::WaveTableLoader']]], - ['shiftregister4021_81',['ShiftRegister4021',['../classdaisy_1_1_shift_register4021.html#a250b5d7fad3eb6186b05764cf19429b0',1,'daisy::ShiftRegister4021']]], - ['shiftregister595_82',['ShiftRegister595',['../class_shift_register595.html#a39dcf4e9c542534e2ea9038e00863d71',1,'ShiftRegister595']]], - ['show_83',['Show',['../classdaisy_1_1_dot_star.html#a0aaab3f2d3e9ba335820b9ab37e4320f',1,'daisy::DotStar::Show()'],['../classdaisy_1_1_neo_pixel.html#a0e05f30968513eb931b87aa03e596622',1,'daisy::NeoPixel::Show()']]], - ['size_84',['Size',['../classdaisy_1_1_fixed_cap_str_base.html#aa5fa64469d140217e12dbf6ac2b6dc9c',1,'daisy::FixedCapStrBase']]], - ['spihandle_85',['SpiHandle',['../classdaisy_1_1_spi_handle.html#ac060acec2d6c651a1d330443e4c6c9f6',1,'daisy::SpiHandle::SpiHandle()'],['../classdaisy_1_1_spi_handle.html#a389021fcd8c1ffa264c2568d5ad4f17f',1,'daisy::SpiHandle::SpiHandle(const SpiHandle &other)=default']]], - ['stack_86',['Stack',['../classdaisy_1_1_stack.html#ad2d0dc383669108bd0fea624941fd9b7',1,'daisy::Stack::Stack(std::initializer_list< T > valuesToAdd)'],['../classdaisy_1_1_stack.html#ac748320726685d136f15e2e61d692e59',1,'daisy::Stack::Stack(const Stack< T, otherCapacity > &other)'],['../classdaisy_1_1_stack.html#ac64eead92237e6ad10158920b0a99403',1,'daisy::Stack::Stack()']]], - ['stackbase_87',['StackBase',['../classdaisy_1_1_stack_base.html#a688438b8a70832061ee28b42274ab160',1,'daisy::StackBase::StackBase(T *buffer, size_t bufferSize)'],['../classdaisy_1_1_stack_base.html#afb33382096c3e4f80d410916220191e8',1,'daisy::StackBase::StackBase(T *buffer, size_t bufferSize, std::initializer_list< T > valuesToAdd)']]], - ['start_88',['Start',['../classdaisy_1_1_adc_handle.html#a6fddddc75eb2d4ba0365a68d4bac2bd3',1,'daisy::AdcHandle::Start()'],['../classdaisy_1_1_timer_handle.html#a1016ea27b193aeb40f1d9d199dcbc2e1',1,'daisy::TimerHandle::Start()'],['../classdaisy_1_1_dac_handle.html#a11c804998db9c5c40bc46bacd8040358',1,'daisy::DacHandle::Start(uint16_t *buffer_1, uint16_t *buffer_2, size_t size, DacCallback cb)'],['../classdaisy_1_1_dac_handle.html#a5873d528617ac2b7f07562d78bde65fc',1,'daisy::DacHandle::Start(uint16_t *buffer, size_t size, DacCallback cb)'],['../classdaisy_1_1_audio_handle.html#a9d2bf9d2dd2256af4d77da403873b9fc',1,'daisy::AudioHandle::Start(InterleavingAudioCallback callback)'],['../classdaisy_1_1_audio_handle.html#a068984ea4ad72f6d0be070fb8ddd346e',1,'daisy::AudioHandle::Start(AudioCallback callback)'],['../classdaisy_1_1_m_a_x11300_driver.html#a8dcccec71d283d6f35a551874add7af0',1,'daisy::MAX11300Driver::Start()']]], - ['startadc_89',['StartAdc',['../classdaisy_1_1_daisy_versio.html#a2e0fb36f0915cb10ed1e04af68b99b7c',1,'daisy::DaisyVersio::StartAdc()'],['../classdaisy_1_1_daisy_petal.html#aa622a3f66ecb66b1980afd8ed223a60b',1,'daisy::DaisyPetal::StartAdc()'],['../classdaisy_1_1_daisy_field.html#a3704e1fa291d6f4dada8310c9b4df1d4',1,'daisy::DaisyField::StartAdc()'],['../classdaisy_1_1_daisy_legio.html#a885cdb76f791c45f64bec82c3e36b8a7',1,'daisy::DaisyLegio::StartAdc()'],['../classdaisy_1_1_daisy_patch.html#aef89b7d3492d87652af2207f315e6c6d',1,'daisy::DaisyPatch::StartAdc()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a3364d644e5510458217d4d4e993be3c0',1,'daisy::patch_sm::DaisyPatchSM::StartAdc()'],['../classdaisy_1_1_daisy_pod.html#ac98cbdd0e34ec2cb994ca012f05e6317',1,'daisy::DaisyPod::StartAdc()']]], - ['startaudio_90',['StartAudio',['../classdaisy_1_1_daisy_pod.html#a3b8c09167dc1c2992054aa789b1ccd97',1,'daisy::DaisyPod::StartAudio()'],['../classdaisy_1_1_daisy_versio.html#ad0aaeb0f8ab4ba21654b188dd6f6d8c7',1,'daisy::DaisyVersio::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_versio.html#a4590bf0bd0eea4fef423379d579a6a39',1,'daisy::DaisyVersio::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_seed.html#a2c530dd1fae556b8ee6939d9092e2966',1,'daisy::DaisySeed::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_seed.html#a8ffb8115424a566cdb4461a19ffdaf2f',1,'daisy::DaisySeed::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_pod.html#a6acbf4fc35f15464540a812062f5cf8f',1,'daisy::DaisyPod::StartAudio()'],['../classdaisy_1_1_daisy_petal.html#a632b41303383c649898096df26272784',1,'daisy::DaisyPetal::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_petal.html#a603af40d3fc2a5ca8bf0bb39a02ce995',1,'daisy::DaisyPetal::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a0bbf4d6dab923903860ce331438b6d1f',1,'daisy::patch_sm::DaisyPatchSM::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#ac6209bd036a2726fe2e5c23336129ad2',1,'daisy::patch_sm::DaisyPatchSM::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_patch.html#ab5a3f2af944cf766d2e2108efcb8bb9c',1,'daisy::DaisyPatch::StartAudio()'],['../classdaisy_1_1_daisy_legio.html#ae9cb00ab702dddb444ec22abfbf8ac33',1,'daisy::DaisyLegio::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_legio.html#a9388a2fbad155bed43ecc5184e775a89',1,'daisy::DaisyLegio::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_field.html#a45e8e20435017c73fe31dd8ae2aedb6f',1,'daisy::DaisyField::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_field.html#aadde15ba09d4cd9cca94f5ad4726129f',1,'daisy::DaisyField::StartAudio(AudioHandle::InterleavingAudioCallback cb)']]], - ['startdac_91',['StartDac',['../classdaisy_1_1_daisy_field.html#a76e10ba692e77ee5d66e3e21bb8181be',1,'daisy::DaisyField::StartDac()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a76af459a006eb995a2f9489d2212f148',1,'daisy::patch_sm::DaisyPatchSM::StartDac()']]], - ['startdma_92',['StartDma',['../classdaisy_1_1_sai_handle.html#a11626ecc438f4ba0933e93ae730b57ee',1,'daisy::SaiHandle']]], - ['startlog_93',['StartLog',['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#a641e1f67b84ada4032ce0c3646c20ed8',1,'daisy::Logger< LOGGER_NONE >::StartLog()'],['../classdaisy_1_1_logger.html#a71a09a4fec04899145840441af05a07b',1,'daisy::Logger::StartLog()'],['../classdaisy_1_1_daisy_seed.html#a1dc5e257b31624e4a7fc95a642479228',1,'daisy::DaisySeed::StartLog()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a9793cd48c769ef5fef261d82085af445',1,'daisy::patch_sm::DaisyPatchSM::StartLog()']]], - ['startreceive_94',['StartReceive',['../classdaisy_1_1_midi_handler.html#a28d650f767ca99afaa79e39664fcb4c2',1,'daisy::MidiHandler']]], - ['startrx_95',['StartRx',['../classdaisy_1_1_midi_usb_transport.html#a15246033ff7a78e47c37b2ade7769705',1,'daisy::MidiUsbTransport::StartRx()'],['../classdaisy_1_1_uart_handler.html#a24098e17a8be0b1b2a229f1959c941db',1,'daisy::UartHandler::StartRx()'],['../classdaisy_1_1_midi_uart_transport.html#ac19153d70ce2f869e96cca20453197b7',1,'daisy::MidiUartTransport::StartRx()']]], - ['startswith_96',['StartsWith',['../classdaisy_1_1_fixed_cap_str_base.html#ae64aa4ce6a51a36532493155262f158d',1,'daisy::FixedCapStrBase']]], - ['startswithignoringcase_97',['StartsWithIgnoringCase',['../classdaisy_1_1_fixed_cap_str_base.html#a02f42643ec5f296aff45c960878ed48b',1,'daisy::FixedCapStrBase']]], - ['state_98',['State',['../classdaisy_1_1_shift_register4021.html#a6fd476472092be0ba51b6a7e1435b411',1,'daisy::ShiftRegister4021::State()'],['../classdaisy_1_1_gate_in.html#a08f75c6621307249de3107df96cfab2d',1,'daisy::GateIn::State()']]], - ['step_99',['Step',['../classdaisy_1_1_mapped_value.html#aada8599a26752072c8cafd3c72cfc363',1,'daisy::MappedValue::Step()'],['../classdaisy_1_1_mapped_float_value.html#a6d694d504dee817692e827a03ef0cba3',1,'daisy::MappedFloatValue::Step()'],['../classdaisy_1_1_mapped_int_value.html#ad226278c98dbad71c9b6ed36a9da2fb6',1,'daisy::MappedIntValue::Step()'],['../classdaisy_1_1_mapped_string_list_value.html#a93cf610f964ea96d1893b5521dc9efa3',1,'daisy::MappedStringListValue::Step()']]], - ['stop_100',['Stop',['../classdaisy_1_1_dac_handle.html#ab0dcfed9ca249820670d45a75a49aaa0',1,'daisy::DacHandle::Stop()'],['../classdaisy_1_1_timer_handle.html#a371b05e9ff969c35e6daf2b8c1fa1d0e',1,'daisy::TimerHandle::Stop()'],['../classdaisy_1_1_adc_handle.html#ab6a016e484c9b7389e6302521e778bc9',1,'daisy::AdcHandle::Stop()'],['../classdaisy_1_1_audio_handle.html#ae0592d95b7f211bb4837b5a0f51ca5c7',1,'daisy::AudioHandle::Stop()'],['../classdaisy_1_1_m_a_x11300_driver.html#aba20195f2dab641796d58a25f12667f4',1,'daisy::MAX11300Driver::Stop()']]], - ['stopadc_101',['StopAdc',['../classdaisy_1_1_daisy_field.html#a64c5254d55c822ed02f1afd6c97d78df',1,'daisy::DaisyField::StopAdc()'],['../classdaisy_1_1_daisy_legio.html#a3d7e9f9f749427f3ba59c6d60ebf1dea',1,'daisy::DaisyLegio::StopAdc()'],['../classdaisy_1_1_daisy_patch.html#a66aa03d67e904654fe1935bda7799010',1,'daisy::DaisyPatch::StopAdc()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a744fa233d5a85b9af051e5e8fdf78a5a',1,'daisy::patch_sm::DaisyPatchSM::StopAdc()'],['../classdaisy_1_1_daisy_petal.html#a6991d127bdc7dfa96d8a1ee168050746',1,'daisy::DaisyPetal::StopAdc()'],['../classdaisy_1_1_daisy_pod.html#a75a0c9b9647257856bcbad57fb9f91b4',1,'daisy::DaisyPod::StopAdc()'],['../classdaisy_1_1_daisy_versio.html#a33ff3c1fc69dfc391cdf202ee2f332cb',1,'daisy::DaisyVersio::StopAdc()']]], - ['stopaudio_102',['StopAudio',['../classdaisy_1_1_daisy_patch.html#a1f955cd08ba4228cb2cedbd953bc7094',1,'daisy::DaisyPatch::StopAudio()'],['../classdaisy_1_1_daisy_versio.html#a2f9891f4d072f8492c1feb794880c4ed',1,'daisy::DaisyVersio::StopAudio()'],['../classdaisy_1_1_daisy_pod.html#ad1f745242c8248f186e6ae0931b3f4fa',1,'daisy::DaisyPod::StopAudio()'],['../classdaisy_1_1_daisy_seed.html#aed16a490a02c3ad2b3d10cb567957e4f',1,'daisy::DaisySeed::StopAudio()'],['../classdaisy_1_1_daisy_field.html#a33df0d48abfa4e92b11b460aec6663c5',1,'daisy::DaisyField::StopAudio()'],['../classdaisy_1_1_daisy_legio.html#ab5870c1734bfdb750058ad301005794c',1,'daisy::DaisyLegio::StopAudio()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a505410067658f1423b392c63c96b7299',1,'daisy::patch_sm::DaisyPatchSM::StopAudio()'],['../classdaisy_1_1_daisy_petal.html#aa5f7f3b1730d3d7cfd5e64f863463f42',1,'daisy::DaisyPetal::StopAudio()']]], - ['stopdac_103',['StopDac',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a8d9c7ec46f0532b5c655868b8d680163',1,'daisy::patch_sm::DaisyPatchSM']]], - ['stopdma_104',['StopDma',['../classdaisy_1_1_sai_handle.html#a99de674d71df2db2e2ee445396c1e6cf',1,'daisy::SaiHandle']]], - ['stream_105',['Stream',['../classdaisy_1_1_wav_player.html#a52be0ed680b908241ffc287f879c6c7a',1,'daisy::WavPlayer']]], - ['strlen_106',['strlen',['../classdaisy_1_1_fixed_cap_str_base.html#a36894eceea6adb51c2ec9f829ee7b39c',1,'daisy::FixedCapStrBase']]], - ['swallow_107',['Swallow',['../classdaisy_1_1_ring_buffer.html#ac7bdb6693448c488bda8e6d830f9bfcb',1,'daisy::RingBuffer']]], - ['swap_108',['Swap',['../namespacedaisy.html#af68a2e700b33a01728ddc00075c3ea1c',1,'daisy::Swap()'],['../classdaisy_1_1_fixed_cap_str_base.html#ad28ed8bb868191ba79bc9ed25e278cda',1,'daisy::FixedCapStrBase::Swap(FixedCapStrBase &rhs) noexcept']]], - ['swap_5f_109',['Swap_',['../classdaisy_1_1_fixed_cap_str_base.html#aaf2ab8cea03625c4e3b65526d09c0500',1,'daisy::FixedCapStrBase']]], - ['swapbuffersandtransmit_110',['SwapBuffersAndTransmit',['../classdaisy_1_1_led_driver_pca9685.html#aaa538bb3ae180234011761962d2119cf',1,'daisy::LedDriverPca9685']]], - ['switch_111',['Switch',['../classdaisy_1_1_switch.html#ad14a8ae20033d940d6c9eeb03c1385b8',1,'daisy::Switch']]], - ['switch3_112',['Switch3',['../classdaisy_1_1_switch3.html#a913db214526f97cc7ae0121c85aedcb2',1,'daisy::Switch3']]], - ['switchpressed_113',['SwitchPressed',['../classdaisy_1_1_daisy_versio.html#a2c1972b50f762a75aec4bcc5baa99bb7',1,'daisy::DaisyVersio']]], - ['swreset_114',['SWReset',['../classdaisy_1_1_neo_pixel.html#ac8afed18a175b01a127f049856889bd8',1,'daisy::NeoPixel::SWReset()'],['../classdaisy_1_1_neo_trellis.html#ae052cf27a7ad81a8c63f6cc70080ac66',1,'daisy::NeoTrellis::SWReset()']]], - ['system_115',['System',['../classdaisy_1_1_system.html#a1662ffb07d4098995be06bea9b502b24',1,'daisy::System']]] + ['setledraw_55',['SetLedRaw',['../classdaisy_1_1_led_driver_pca9685.html#a0a7c0c80d76741fddd835e4d2b138f3a',1,'daisy::LedDriverPca9685']]], + ['setlooping_56',['SetLooping',['../classdaisy_1_1_wav_player.html#a29d340360f073bd1767e51a06876eafe',1,'daisy::WavPlayer']]], + ['setmagdatarate_57',['SetMagDataRate',['../classdaisy_1_1_icm20948.html#a46c4eda38a5e0b634afdd4993c742ca2',1,'daisy::Icm20948']]], + ['setmode_58',['setMode',['../classdaisy_1_1_dps310.html#a8227bd52a9d2ef66dc95f5648dde5204',1,'daisy::Dps310']]], + ['setonebitgraphicsdisplaytodrawto_59',['SetOneBitGraphicsDisplayToDrawTo',['../classdaisy_1_1_full_screen_item_menu.html#aff9c91b42f7163d6a2dc7014e3fc56d9',1,'daisy::FullScreenItemMenu']]], + ['setoutputcompensation_60',['SetOutputCompensation',['../classdaisy_1_1_audio_handle.html#ad35fbe0d71e89dbaccd362c02261ad8a',1,'daisy::AudioHandle']]], + ['setperiod_61',['SetPeriod',['../classdaisy_1_1_timer_handle.html#a0e11c2b05fbd0c6e1cac5d3babe79453',1,'daisy::TimerHandle']]], + ['setpin_62',['SetPin',['../classdaisy_1_1_neo_pixel.html#a7665573b58aa4f6a53bfcef6c65f8757',1,'daisy::NeoPixel']]], + ['setpixelcolor_63',['SetPixelColor',['../classdaisy_1_1_dot_star.html#a1be57cf9c6a1a4da99874cc3437d246e',1,'daisy::DotStar::SetPixelColor(uint16_t idx, uint32_t color)'],['../classdaisy_1_1_dot_star.html#aa909ca940c58f2e8863e3be4a6c3a6d2',1,'daisy::DotStar::SetPixelColor(uint16_t idx, uint8_t r, uint8_t g, uint8_t b)'],['../classdaisy_1_1_neo_pixel.html#aba8e7b08e8f6126a34a3d0da252b7960',1,'daisy::NeoPixel::SetPixelColor(uint16_t n, uint8_t r, uint8_t g, uint8_t b)'],['../classdaisy_1_1_neo_pixel.html#a9ed0843e42a63d9650b652e93da858c2',1,'daisy::NeoPixel::SetPixelColor(uint16_t n, uint8_t r, uint8_t g, uint8_t b, uint8_t w)'],['../classdaisy_1_1_neo_pixel.html#af3f3b8d35d190ffc7cefe689ff15ae5e',1,'daisy::NeoPixel::SetPixelColor(uint16_t n, uint32_t c)'],['../classdaisy_1_1_dot_star.html#af210e855104705b4f6b252b03998db66',1,'daisy::DotStar::SetPixelColor(uint16_t idx, const Color &color)']]], + ['setpixelglobalbrightness_64',['SetPixelGlobalBrightness',['../classdaisy_1_1_dot_star.html#a8ceaf459805764548b8c1008d97bdad5',1,'daisy::DotStar']]], + ['setpostgain_65',['SetPostGain',['../classdaisy_1_1_audio_handle.html#af958fe1518bf32d93cfc5278a1736789',1,'daisy::AudioHandle']]], + ['setprescaler_66',['SetPrescaler',['../classdaisy_1_1_timer_handle.html#aeab69c0b8cd73cf438bc056786cc00f6',1,'daisy::TimerHandle']]], + ['setproxgain_67',['SetProxGain',['../classdaisy_1_1_apds9960.html#aa4267e573b82f14d7950ebe1f179db0e',1,'daisy::Apds9960']]], + ['setproximityinterrupt_68',['SetProximityInterrupt',['../classdaisy_1_1_apds9960.html#a3cf8c7053b967952b70d4da945ea3fc9',1,'daisy::Apds9960']]], + ['setproxpulse_69',['SetProxPulse',['../classdaisy_1_1_apds9960.html#aa19e474f6dd88346a0b5b845ce1df78a',1,'daisy::Apds9960']]], + ['setreceivecallback_70',['SetReceiveCallback',['../class_usb_handle.html#a52c22cce6616ab3948d7933bfc0e7d0b',1,'UsbHandle::SetReceiveCallback(ReceiveCallback cb, UsbPeriph dev)'],['../class_usb_handle.html#a52c22cce6616ab3948d7933bfc0e7d0b',1,'UsbHandle::SetReceiveCallback(ReceiveCallback cb, UsbPeriph dev)']]], + ['setred_71',['SetRed',['../classdaisy_1_1_rgb_led.html#a3e2c0d791418d97742270a43a0bcdcc4',1,'daisy::RgbLed']]], + ['setregbits_72',['SetRegBits',['../classdaisy_1_1_tlv493d.html#a5fa69cf9112e5c9ecd3992365a803004',1,'daisy::Tlv493d']]], + ['setringled_73',['SetRingLed',['../classdaisy_1_1_daisy_petal.html#ad92270ffe128bc678b78be2067d4fcfe',1,'daisy::DaisyPetal']]], + ['setsamplerate_74',['SetSampleRate',['../classdaisy_1_1_led.html#a55c8e1df70930f21270f4c28df6320fb',1,'daisy::Led::SetSampleRate()'],['../classdaisy_1_1_analog_control.html#a4cbdf8afb5e284bd9e12bca004a10fab',1,'daisy::AnalogControl::SetSampleRate()'],['../classdaisy_1_1_audio_handle.html#a66f20f5f6f2d2b49a80a25678869a47a',1,'daisy::AudioHandle::SetSampleRate()']]], + ['settestpoint_75',['SetTestPoint',['../classdaisy_1_1_daisy_seed.html#a213214b79bb612175f2e82241887d42e',1,'daisy::DaisySeed']]], + ['setthresholds_76',['SetThresholds',['../classdaisy_1_1_mpr121.html#aa8abce9cdda9b9eb3811b54ecf7dcd85',1,'daisy::Mpr121']]], + ['setupdaterate_77',['SetUpdateRate',['../classdaisy_1_1_switch.html#a9b690946462b81edba1feace3625bc64',1,'daisy::Switch::SetUpdateRate()'],['../classdaisy_1_1_encoder.html#aa613736d374d8a751ecb3b804b11e29d',1,'daisy::Encoder::SetUpdateRate()']]], + ['setupmag_78',['SetupMag',['../classdaisy_1_1_icm20948.html#a79983dbc3ab1c35742a700ebed7e066f',1,'daisy::Icm20948']]], + ['setwavetableinfo_79',['SetWaveTableInfo',['../classdaisy_1_1_wave_table_loader.html#a946156ea77f74d7ee25d122a6ba42ab0',1,'daisy::WaveTableLoader']]], + ['shiftregister4021_80',['ShiftRegister4021',['../classdaisy_1_1_shift_register4021.html#a250b5d7fad3eb6186b05764cf19429b0',1,'daisy::ShiftRegister4021']]], + ['shiftregister595_81',['ShiftRegister595',['../class_shift_register595.html#a39dcf4e9c542534e2ea9038e00863d71',1,'ShiftRegister595']]], + ['show_82',['Show',['../classdaisy_1_1_dot_star.html#a0aaab3f2d3e9ba335820b9ab37e4320f',1,'daisy::DotStar::Show()'],['../classdaisy_1_1_neo_pixel.html#a0e05f30968513eb931b87aa03e596622',1,'daisy::NeoPixel::Show()']]], + ['size_83',['Size',['../classdaisy_1_1_fixed_cap_str_base.html#aa5fa64469d140217e12dbf6ac2b6dc9c',1,'daisy::FixedCapStrBase']]], + ['spihandle_84',['SpiHandle',['../classdaisy_1_1_spi_handle.html#a389021fcd8c1ffa264c2568d5ad4f17f',1,'daisy::SpiHandle::SpiHandle(const SpiHandle &other)=default'],['../classdaisy_1_1_spi_handle.html#ac060acec2d6c651a1d330443e4c6c9f6',1,'daisy::SpiHandle::SpiHandle()']]], + ['stack_85',['Stack',['../classdaisy_1_1_stack.html#ac64eead92237e6ad10158920b0a99403',1,'daisy::Stack::Stack()'],['../classdaisy_1_1_stack.html#ad2d0dc383669108bd0fea624941fd9b7',1,'daisy::Stack::Stack(std::initializer_list< T > valuesToAdd)'],['../classdaisy_1_1_stack.html#ac748320726685d136f15e2e61d692e59',1,'daisy::Stack::Stack(const Stack< T, otherCapacity > &other)']]], + ['stackbase_86',['StackBase',['../classdaisy_1_1_stack_base.html#a688438b8a70832061ee28b42274ab160',1,'daisy::StackBase::StackBase(T *buffer, size_t bufferSize)'],['../classdaisy_1_1_stack_base.html#afb33382096c3e4f80d410916220191e8',1,'daisy::StackBase::StackBase(T *buffer, size_t bufferSize, std::initializer_list< T > valuesToAdd)']]], + ['start_87',['Start',['../classdaisy_1_1_adc_handle.html#a6fddddc75eb2d4ba0365a68d4bac2bd3',1,'daisy::AdcHandle::Start()'],['../classdaisy_1_1_timer_handle.html#a1016ea27b193aeb40f1d9d199dcbc2e1',1,'daisy::TimerHandle::Start()'],['../classdaisy_1_1_dac_handle.html#a11c804998db9c5c40bc46bacd8040358',1,'daisy::DacHandle::Start(uint16_t *buffer_1, uint16_t *buffer_2, size_t size, DacCallback cb)'],['../classdaisy_1_1_dac_handle.html#a5873d528617ac2b7f07562d78bde65fc',1,'daisy::DacHandle::Start(uint16_t *buffer, size_t size, DacCallback cb)'],['../classdaisy_1_1_audio_handle.html#a9d2bf9d2dd2256af4d77da403873b9fc',1,'daisy::AudioHandle::Start(InterleavingAudioCallback callback)'],['../classdaisy_1_1_audio_handle.html#a068984ea4ad72f6d0be070fb8ddd346e',1,'daisy::AudioHandle::Start(AudioCallback callback)'],['../classdaisy_1_1_m_a_x11300_driver.html#a8dcccec71d283d6f35a551874add7af0',1,'daisy::MAX11300Driver::Start()']]], + ['startadc_88',['StartAdc',['../classdaisy_1_1_daisy_versio.html#a2e0fb36f0915cb10ed1e04af68b99b7c',1,'daisy::DaisyVersio::StartAdc()'],['../classdaisy_1_1_daisy_pod.html#ac98cbdd0e34ec2cb994ca012f05e6317',1,'daisy::DaisyPod::StartAdc()'],['../classdaisy_1_1_daisy_petal.html#aa622a3f66ecb66b1980afd8ed223a60b',1,'daisy::DaisyPetal::StartAdc()'],['../classdaisy_1_1_daisy_field.html#a3704e1fa291d6f4dada8310c9b4df1d4',1,'daisy::DaisyField::StartAdc()'],['../classdaisy_1_1_daisy_legio.html#a885cdb76f791c45f64bec82c3e36b8a7',1,'daisy::DaisyLegio::StartAdc()'],['../classdaisy_1_1_daisy_patch.html#aef89b7d3492d87652af2207f315e6c6d',1,'daisy::DaisyPatch::StartAdc()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a3364d644e5510458217d4d4e993be3c0',1,'daisy::patch_sm::DaisyPatchSM::StartAdc()']]], + ['startaudio_89',['StartAudio',['../classdaisy_1_1_daisy_field.html#aadde15ba09d4cd9cca94f5ad4726129f',1,'daisy::DaisyField::StartAudio()'],['../classdaisy_1_1_daisy_versio.html#ad0aaeb0f8ab4ba21654b188dd6f6d8c7',1,'daisy::DaisyVersio::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_versio.html#a4590bf0bd0eea4fef423379d579a6a39',1,'daisy::DaisyVersio::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_seed.html#a2c530dd1fae556b8ee6939d9092e2966',1,'daisy::DaisySeed::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_seed.html#a8ffb8115424a566cdb4461a19ffdaf2f',1,'daisy::DaisySeed::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_pod.html#a3b8c09167dc1c2992054aa789b1ccd97',1,'daisy::DaisyPod::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_pod.html#a6acbf4fc35f15464540a812062f5cf8f',1,'daisy::DaisyPod::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_petal.html#a632b41303383c649898096df26272784',1,'daisy::DaisyPetal::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_petal.html#a603af40d3fc2a5ca8bf0bb39a02ce995',1,'daisy::DaisyPetal::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a0bbf4d6dab923903860ce331438b6d1f',1,'daisy::patch_sm::DaisyPatchSM::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#ac6209bd036a2726fe2e5c23336129ad2',1,'daisy::patch_sm::DaisyPatchSM::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_patch.html#ab5a3f2af944cf766d2e2108efcb8bb9c',1,'daisy::DaisyPatch::StartAudio()'],['../classdaisy_1_1_daisy_legio.html#ae9cb00ab702dddb444ec22abfbf8ac33',1,'daisy::DaisyLegio::StartAudio(AudioHandle::AudioCallback cb)'],['../classdaisy_1_1_daisy_legio.html#a9388a2fbad155bed43ecc5184e775a89',1,'daisy::DaisyLegio::StartAudio(AudioHandle::InterleavingAudioCallback cb)'],['../classdaisy_1_1_daisy_field.html#a45e8e20435017c73fe31dd8ae2aedb6f',1,'daisy::DaisyField::StartAudio(AudioHandle::AudioCallback cb)']]], + ['startdac_90',['StartDac',['../classdaisy_1_1_daisy_field.html#a76e10ba692e77ee5d66e3e21bb8181be',1,'daisy::DaisyField::StartDac()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a76af459a006eb995a2f9489d2212f148',1,'daisy::patch_sm::DaisyPatchSM::StartDac()']]], + ['startdma_91',['StartDma',['../classdaisy_1_1_sai_handle.html#a11626ecc438f4ba0933e93ae730b57ee',1,'daisy::SaiHandle']]], + ['startlog_92',['StartLog',['../classdaisy_1_1_logger.html#a71a09a4fec04899145840441af05a07b',1,'daisy::Logger::StartLog()'],['../classdaisy_1_1_logger_3_01_l_o_g_g_e_r___n_o_n_e_01_4.html#a641e1f67b84ada4032ce0c3646c20ed8',1,'daisy::Logger< LOGGER_NONE >::StartLog()'],['../classdaisy_1_1_daisy_seed.html#a1dc5e257b31624e4a7fc95a642479228',1,'daisy::DaisySeed::StartLog()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a9793cd48c769ef5fef261d82085af445',1,'daisy::patch_sm::DaisyPatchSM::StartLog()']]], + ['startreceive_93',['StartReceive',['../classdaisy_1_1_midi_handler.html#a28d650f767ca99afaa79e39664fcb4c2',1,'daisy::MidiHandler']]], + ['startrx_94',['StartRx',['../classdaisy_1_1_midi_usb_transport.html#adb4a68d5ec0eafb2b0093128d5f90529',1,'daisy::MidiUsbTransport::StartRx()'],['../classdaisy_1_1_midi_uart_transport.html#a03ebfa2dbe4a5a79a7ed0342bc8bf82a',1,'daisy::MidiUartTransport::StartRx()']]], + ['startswith_95',['StartsWith',['../classdaisy_1_1_fixed_cap_str_base.html#ae64aa4ce6a51a36532493155262f158d',1,'daisy::FixedCapStrBase']]], + ['startswithignoringcase_96',['StartsWithIgnoringCase',['../classdaisy_1_1_fixed_cap_str_base.html#a02f42643ec5f296aff45c960878ed48b',1,'daisy::FixedCapStrBase']]], + ['state_97',['State',['../classdaisy_1_1_shift_register4021.html#a6fd476472092be0ba51b6a7e1435b411',1,'daisy::ShiftRegister4021::State()'],['../classdaisy_1_1_gate_in.html#a08f75c6621307249de3107df96cfab2d',1,'daisy::GateIn::State()']]], + ['step_98',['Step',['../classdaisy_1_1_mapped_value.html#aada8599a26752072c8cafd3c72cfc363',1,'daisy::MappedValue::Step()'],['../classdaisy_1_1_mapped_float_value.html#a6d694d504dee817692e827a03ef0cba3',1,'daisy::MappedFloatValue::Step()'],['../classdaisy_1_1_mapped_int_value.html#ad226278c98dbad71c9b6ed36a9da2fb6',1,'daisy::MappedIntValue::Step()'],['../classdaisy_1_1_mapped_string_list_value.html#a93cf610f964ea96d1893b5521dc9efa3',1,'daisy::MappedStringListValue::Step()']]], + ['stop_99',['Stop',['../classdaisy_1_1_timer_handle.html#a371b05e9ff969c35e6daf2b8c1fa1d0e',1,'daisy::TimerHandle::Stop()'],['../classdaisy_1_1_dac_handle.html#ab0dcfed9ca249820670d45a75a49aaa0',1,'daisy::DacHandle::Stop()'],['../classdaisy_1_1_adc_handle.html#ab6a016e484c9b7389e6302521e778bc9',1,'daisy::AdcHandle::Stop()'],['../classdaisy_1_1_audio_handle.html#ae0592d95b7f211bb4837b5a0f51ca5c7',1,'daisy::AudioHandle::Stop()'],['../classdaisy_1_1_m_a_x11300_driver.html#aba20195f2dab641796d58a25f12667f4',1,'daisy::MAX11300Driver::Stop()']]], + ['stopadc_100',['StopAdc',['../classdaisy_1_1_daisy_field.html#a64c5254d55c822ed02f1afd6c97d78df',1,'daisy::DaisyField::StopAdc()'],['../classdaisy_1_1_daisy_legio.html#a3d7e9f9f749427f3ba59c6d60ebf1dea',1,'daisy::DaisyLegio::StopAdc()'],['../classdaisy_1_1_daisy_patch.html#a66aa03d67e904654fe1935bda7799010',1,'daisy::DaisyPatch::StopAdc()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a744fa233d5a85b9af051e5e8fdf78a5a',1,'daisy::patch_sm::DaisyPatchSM::StopAdc()'],['../classdaisy_1_1_daisy_petal.html#a6991d127bdc7dfa96d8a1ee168050746',1,'daisy::DaisyPetal::StopAdc()'],['../classdaisy_1_1_daisy_pod.html#a75a0c9b9647257856bcbad57fb9f91b4',1,'daisy::DaisyPod::StopAdc()'],['../classdaisy_1_1_daisy_versio.html#a33ff3c1fc69dfc391cdf202ee2f332cb',1,'daisy::DaisyVersio::StopAdc()']]], + ['stopaudio_101',['StopAudio',['../classdaisy_1_1_daisy_patch.html#a1f955cd08ba4228cb2cedbd953bc7094',1,'daisy::DaisyPatch::StopAudio()'],['../classdaisy_1_1_daisy_versio.html#a2f9891f4d072f8492c1feb794880c4ed',1,'daisy::DaisyVersio::StopAudio()'],['../classdaisy_1_1_daisy_pod.html#ad1f745242c8248f186e6ae0931b3f4fa',1,'daisy::DaisyPod::StopAudio()'],['../classdaisy_1_1_daisy_seed.html#aed16a490a02c3ad2b3d10cb567957e4f',1,'daisy::DaisySeed::StopAudio()'],['../classdaisy_1_1_daisy_field.html#a33df0d48abfa4e92b11b460aec6663c5',1,'daisy::DaisyField::StopAudio()'],['../classdaisy_1_1_daisy_legio.html#ab5870c1734bfdb750058ad301005794c',1,'daisy::DaisyLegio::StopAudio()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a505410067658f1423b392c63c96b7299',1,'daisy::patch_sm::DaisyPatchSM::StopAudio()'],['../classdaisy_1_1_daisy_petal.html#aa5f7f3b1730d3d7cfd5e64f863463f42',1,'daisy::DaisyPetal::StopAudio()']]], + ['stopdac_102',['StopDac',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a8d9c7ec46f0532b5c655868b8d680163',1,'daisy::patch_sm::DaisyPatchSM']]], + ['stopdma_103',['StopDma',['../classdaisy_1_1_sai_handle.html#a99de674d71df2db2e2ee445396c1e6cf',1,'daisy::SaiHandle']]], + ['stream_104',['Stream',['../classdaisy_1_1_wav_player.html#a52be0ed680b908241ffc287f879c6c7a',1,'daisy::WavPlayer']]], + ['strlen_105',['strlen',['../classdaisy_1_1_fixed_cap_str_base.html#a36894eceea6adb51c2ec9f829ee7b39c',1,'daisy::FixedCapStrBase']]], + ['swallow_106',['Swallow',['../classdaisy_1_1_ring_buffer.html#ac7bdb6693448c488bda8e6d830f9bfcb',1,'daisy::RingBuffer']]], + ['swap_107',['Swap',['../namespacedaisy.html#af68a2e700b33a01728ddc00075c3ea1c',1,'daisy::Swap()'],['../classdaisy_1_1_fixed_cap_str_base.html#ad28ed8bb868191ba79bc9ed25e278cda',1,'daisy::FixedCapStrBase::Swap(FixedCapStrBase &rhs) noexcept']]], + ['swap_5f_108',['Swap_',['../classdaisy_1_1_fixed_cap_str_base.html#aaf2ab8cea03625c4e3b65526d09c0500',1,'daisy::FixedCapStrBase']]], + ['swapbuffersandtransmit_109',['SwapBuffersAndTransmit',['../classdaisy_1_1_led_driver_pca9685.html#aaa538bb3ae180234011761962d2119cf',1,'daisy::LedDriverPca9685']]], + ['switch_110',['Switch',['../classdaisy_1_1_switch.html#ad14a8ae20033d940d6c9eeb03c1385b8',1,'daisy::Switch']]], + ['switch3_111',['Switch3',['../classdaisy_1_1_switch3.html#a913db214526f97cc7ae0121c85aedcb2',1,'daisy::Switch3']]], + ['switchpressed_112',['SwitchPressed',['../classdaisy_1_1_daisy_versio.html#a2c1972b50f762a75aec4bcc5baa99bb7',1,'daisy::DaisyVersio']]], + ['swreset_113',['SWReset',['../classdaisy_1_1_neo_pixel.html#ac8afed18a175b01a127f049856889bd8',1,'daisy::NeoPixel::SWReset()'],['../classdaisy_1_1_neo_trellis.html#ae052cf27a7ad81a8c63f6cc70080ac66',1,'daisy::NeoTrellis::SWReset()']]], + ['system_114',['System',['../classdaisy_1_1_system.html#a1662ffb07d4098995be06bea9b502b24',1,'daisy::System']]] ]; diff --git a/search/functions_18.js b/search/functions_18.js index 5b182f4b4..e352766b6 100644 --- a/search/functions_18.js +++ b/search/functions_18.js @@ -35,39 +35,40 @@ var searchData= ['_7emappedvalue_32',['~MappedValue',['../classdaisy_1_1_mapped_value.html#adef06a6f880bab0ed50b29029c3bc1f8',1,'daisy::MappedValue']]], ['_7emax11300driver_33',['~MAX11300Driver',['../classdaisy_1_1_m_a_x11300_driver.html#ad96dbcf4028a2aed29de10bf117a7d06',1,'daisy::MAX11300Driver']]], ['_7emidihandler_34',['~MidiHandler',['../classdaisy_1_1_midi_handler.html#afd52da947947fdce95e725209aae5831',1,'daisy::MidiHandler']]], - ['_7emidiuarttransport_35',['~MidiUartTransport',['../classdaisy_1_1_midi_uart_transport.html#a4934d3331c639115b6bd64ceffa5a888',1,'daisy::MidiUartTransport']]], - ['_7emidiusbtransport_36',['~MidiUsbTransport',['../classdaisy_1_1_midi_usb_transport.html#a6feaa01b40329b31042c2d681bd31956',1,'daisy::MidiUsbTransport']]], - ['_7empr121_37',['~Mpr121',['../classdaisy_1_1_mpr121.html#a59148bf6436c900157138b850d161ef3',1,'daisy::Mpr121']]], - ['_7empr121i2ctransport_38',['~Mpr121I2CTransport',['../classdaisy_1_1_mpr121_i2_c_transport.html#ae9488da639f811e781e6180cc188b426',1,'daisy::Mpr121I2CTransport']]], - ['_7eneopixel_39',['~NeoPixel',['../classdaisy_1_1_neo_pixel.html#a19c887f017f21b1cdf700d156e93b85d',1,'daisy::NeoPixel']]], - ['_7eneopixeli2ctransport_40',['~NeoPixelI2CTransport',['../classdaisy_1_1_neo_pixel_i2_c_transport.html#aaccf8d062eecbba52cca528cfdd3d22d',1,'daisy::NeoPixelI2CTransport']]], - ['_7eneotrellis_41',['~NeoTrellis',['../classdaisy_1_1_neo_trellis.html#a3b18ee0070030255af6d75616c9a32dd',1,'daisy::NeoTrellis']]], - ['_7eneotrellisi2ctransport_42',['~NeoTrellisI2CTransport',['../classdaisy_1_1_neo_trellis_i2_c_transport.html#a3dc86fbcc81dbdb01289c46bbea12360',1,'daisy::NeoTrellisI2CTransport']]], - ['_7eoleddisplay_43',['~OledDisplay',['../classdaisy_1_1_oled_display.html#aa2242c725c0453ddc879452da41f5d55',1,'daisy::OledDisplay']]], - ['_7eonebitgraphicsdisplay_44',['~OneBitGraphicsDisplay',['../classdaisy_1_1_one_bit_graphics_display.html#ad084bd298378d612956001569aeb9227',1,'daisy::OneBitGraphicsDisplay']]], - ['_7eonebitgraphicsdisplayimpl_45',['~OneBitGraphicsDisplayImpl',['../classdaisy_1_1_one_bit_graphics_display_impl.html#a8c78afdc0f05b1b3400bb87ac1b75801',1,'daisy::OneBitGraphicsDisplayImpl']]], - ['_7eparameter_46',['~Parameter',['../classdaisy_1_1_parameter.html#ad29a1b19206bc6568d085ddb4eaa14d9',1,'daisy::Parameter']]], - ['_7epcm3060_47',['~Pcm3060',['../classdaisy_1_1_pcm3060.html#a0be001ee48d6fe05618b7708c2752ad9',1,'daisy::Pcm3060']]], - ['_7erandom_48',['~Random',['../classdaisy_1_1_random.html#af35ade8b5886cdf4b84f7e37e8989917',1,'daisy::Random']]], - ['_7ergbled_49',['~RgbLed',['../classdaisy_1_1_rgb_led.html#a3bfb8dea14712689cc9343b7efea8902',1,'daisy::RgbLed']]], - ['_7escopedirqblocker_50',['~ScopedIrqBlocker',['../classdaisy_1_1_scoped_irq_blocker.html#a13ed84e1ed7e0abc1c7d8ddd2ac97009',1,'daisy::ScopedIrqBlocker']]], - ['_7esdmmchandler_51',['~SdmmcHandler',['../classdaisy_1_1_sdmmc_handler.html#a0e9d9d3b2fdaaa7a26a543383867bfb8',1,'daisy::SdmmcHandler']]], - ['_7eshiftregister4021_52',['~ShiftRegister4021',['../classdaisy_1_1_shift_register4021.html#a52c77889ae6115bb67a37110cfda30cc',1,'daisy::ShiftRegister4021']]], - ['_7eshiftregister595_53',['~ShiftRegister595',['../class_shift_register595.html#af8bd4833320c0674521dd23d5be874cb',1,'ShiftRegister595']]], - ['_7estackbase_54',['~StackBase',['../classdaisy_1_1_stack_base.html#a0b7176df71ffc6a47e298c73f5236ebf',1,'daisy::StackBase']]], - ['_7eswitch_55',['~Switch',['../classdaisy_1_1_switch.html#a7dd3724c490ea56be8995f2713d4dbc0',1,'daisy::Switch']]], - ['_7eswitch3_56',['~Switch3',['../classdaisy_1_1_switch3.html#afa972e7c993a8dd72f59e61aa6b4b83f',1,'daisy::Switch3']]], - ['_7esystem_57',['~System',['../classdaisy_1_1_system.html#a87b28a10a8104313e2f69560e6811b39',1,'daisy::System']]], - ['_7etimerhandle_58',['~TimerHandle',['../classdaisy_1_1_timer_handle.html#a6e866706cca6b8fd05ece9c744c76873',1,'daisy::TimerHandle']]], - ['_7etlv493d_59',['~Tlv493d',['../classdaisy_1_1_tlv493d.html#aca120bae83e55c83cf20d5f6da48e18b',1,'daisy::Tlv493d']]], - ['_7etlv493di2ctransport_60',['~Tlv493dI2CTransport',['../classdaisy_1_1_tlv493d_i2_c_transport.html#a05168e21580b908652932e953bf15013',1,'daisy::Tlv493dI2CTransport']]], - ['_7eui_61',['~UI',['../classdaisy_1_1_u_i.html#aba414ddadfb6b90b96af10ceffe0b925',1,'daisy::UI']]], - ['_7euieventqueue_62',['~UiEventQueue',['../classdaisy_1_1_ui_event_queue.html#a99c34d386afa2f3b56def5612b98b638',1,'daisy::UiEventQueue']]], - ['_7euipage_63',['~UiPage',['../classdaisy_1_1_ui_page.html#a93029d815bbc871377d25c071a1a11c6',1,'daisy::UiPage']]], - ['_7eusbhandle_64',['~UsbHandle',['../class_usb_handle.html#a6ad15406df47137dddf3edcb6c10c9c1',1,'UsbHandle::~UsbHandle()'],['../class_usb_handle.html#a6ad15406df47137dddf3edcb6c10c9c1',1,'UsbHandle::~UsbHandle()']]], - ['_7evoctcalibration_65',['~VoctCalibration',['../classdaisy_1_1_voct_calibration.html#a900865bfcc294d80a9ea687e79a149e1',1,'daisy::VoctCalibration']]], - ['_7ewavetableloader_66',['~WaveTableLoader',['../classdaisy_1_1_wave_table_loader.html#a5b9d90a405d8b80ce7d186de03e8e768',1,'daisy::WaveTableLoader']]], - ['_7ewavplayer_67',['~WavPlayer',['../classdaisy_1_1_wav_player.html#a5aad333a53f985af43a856b252289b8a',1,'daisy::WavPlayer']]], - ['_7ewavwriter_68',['~WavWriter',['../classdaisy_1_1_wav_writer.html#ab589ae805cb5d3c59c982687894fbdea',1,'daisy::WavWriter']]], - ['_7ewm8731_69',['~Wm8731',['../classdaisy_1_1_wm8731.html#ab71d3f1b08fd45a9d940a2d1a3a4c388',1,'daisy::Wm8731']]] + ['_7emidiparser_35',['~MidiParser',['../classdaisy_1_1_midi_parser.html#a97e189d4b01195b78d6f687e91d4cffd',1,'daisy::MidiParser']]], + ['_7emidiuarttransport_36',['~MidiUartTransport',['../classdaisy_1_1_midi_uart_transport.html#a4934d3331c639115b6bd64ceffa5a888',1,'daisy::MidiUartTransport']]], + ['_7emidiusbtransport_37',['~MidiUsbTransport',['../classdaisy_1_1_midi_usb_transport.html#a6feaa01b40329b31042c2d681bd31956',1,'daisy::MidiUsbTransport']]], + ['_7empr121_38',['~Mpr121',['../classdaisy_1_1_mpr121.html#a59148bf6436c900157138b850d161ef3',1,'daisy::Mpr121']]], + ['_7empr121i2ctransport_39',['~Mpr121I2CTransport',['../classdaisy_1_1_mpr121_i2_c_transport.html#ae9488da639f811e781e6180cc188b426',1,'daisy::Mpr121I2CTransport']]], + ['_7eneopixel_40',['~NeoPixel',['../classdaisy_1_1_neo_pixel.html#a19c887f017f21b1cdf700d156e93b85d',1,'daisy::NeoPixel']]], + ['_7eneopixeli2ctransport_41',['~NeoPixelI2CTransport',['../classdaisy_1_1_neo_pixel_i2_c_transport.html#aaccf8d062eecbba52cca528cfdd3d22d',1,'daisy::NeoPixelI2CTransport']]], + ['_7eneotrellis_42',['~NeoTrellis',['../classdaisy_1_1_neo_trellis.html#a3b18ee0070030255af6d75616c9a32dd',1,'daisy::NeoTrellis']]], + ['_7eneotrellisi2ctransport_43',['~NeoTrellisI2CTransport',['../classdaisy_1_1_neo_trellis_i2_c_transport.html#a3dc86fbcc81dbdb01289c46bbea12360',1,'daisy::NeoTrellisI2CTransport']]], + ['_7eoleddisplay_44',['~OledDisplay',['../classdaisy_1_1_oled_display.html#aa2242c725c0453ddc879452da41f5d55',1,'daisy::OledDisplay']]], + ['_7eonebitgraphicsdisplay_45',['~OneBitGraphicsDisplay',['../classdaisy_1_1_one_bit_graphics_display.html#ad084bd298378d612956001569aeb9227',1,'daisy::OneBitGraphicsDisplay']]], + ['_7eonebitgraphicsdisplayimpl_46',['~OneBitGraphicsDisplayImpl',['../classdaisy_1_1_one_bit_graphics_display_impl.html#a8c78afdc0f05b1b3400bb87ac1b75801',1,'daisy::OneBitGraphicsDisplayImpl']]], + ['_7eparameter_47',['~Parameter',['../classdaisy_1_1_parameter.html#ad29a1b19206bc6568d085ddb4eaa14d9',1,'daisy::Parameter']]], + ['_7epcm3060_48',['~Pcm3060',['../classdaisy_1_1_pcm3060.html#a0be001ee48d6fe05618b7708c2752ad9',1,'daisy::Pcm3060']]], + ['_7erandom_49',['~Random',['../classdaisy_1_1_random.html#af35ade8b5886cdf4b84f7e37e8989917',1,'daisy::Random']]], + ['_7ergbled_50',['~RgbLed',['../classdaisy_1_1_rgb_led.html#a3bfb8dea14712689cc9343b7efea8902',1,'daisy::RgbLed']]], + ['_7escopedirqblocker_51',['~ScopedIrqBlocker',['../classdaisy_1_1_scoped_irq_blocker.html#a13ed84e1ed7e0abc1c7d8ddd2ac97009',1,'daisy::ScopedIrqBlocker']]], + ['_7esdmmchandler_52',['~SdmmcHandler',['../classdaisy_1_1_sdmmc_handler.html#a0e9d9d3b2fdaaa7a26a543383867bfb8',1,'daisy::SdmmcHandler']]], + ['_7eshiftregister4021_53',['~ShiftRegister4021',['../classdaisy_1_1_shift_register4021.html#a52c77889ae6115bb67a37110cfda30cc',1,'daisy::ShiftRegister4021']]], + ['_7eshiftregister595_54',['~ShiftRegister595',['../class_shift_register595.html#af8bd4833320c0674521dd23d5be874cb',1,'ShiftRegister595']]], + ['_7estackbase_55',['~StackBase',['../classdaisy_1_1_stack_base.html#a0b7176df71ffc6a47e298c73f5236ebf',1,'daisy::StackBase']]], + ['_7eswitch_56',['~Switch',['../classdaisy_1_1_switch.html#a7dd3724c490ea56be8995f2713d4dbc0',1,'daisy::Switch']]], + ['_7eswitch3_57',['~Switch3',['../classdaisy_1_1_switch3.html#afa972e7c993a8dd72f59e61aa6b4b83f',1,'daisy::Switch3']]], + ['_7esystem_58',['~System',['../classdaisy_1_1_system.html#a87b28a10a8104313e2f69560e6811b39',1,'daisy::System']]], + ['_7etimerhandle_59',['~TimerHandle',['../classdaisy_1_1_timer_handle.html#a6e866706cca6b8fd05ece9c744c76873',1,'daisy::TimerHandle']]], + ['_7etlv493d_60',['~Tlv493d',['../classdaisy_1_1_tlv493d.html#aca120bae83e55c83cf20d5f6da48e18b',1,'daisy::Tlv493d']]], + ['_7etlv493di2ctransport_61',['~Tlv493dI2CTransport',['../classdaisy_1_1_tlv493d_i2_c_transport.html#a05168e21580b908652932e953bf15013',1,'daisy::Tlv493dI2CTransport']]], + ['_7eui_62',['~UI',['../classdaisy_1_1_u_i.html#aba414ddadfb6b90b96af10ceffe0b925',1,'daisy::UI']]], + ['_7euieventqueue_63',['~UiEventQueue',['../classdaisy_1_1_ui_event_queue.html#a99c34d386afa2f3b56def5612b98b638',1,'daisy::UiEventQueue']]], + ['_7euipage_64',['~UiPage',['../classdaisy_1_1_ui_page.html#a93029d815bbc871377d25c071a1a11c6',1,'daisy::UiPage']]], + ['_7eusbhandle_65',['~UsbHandle',['../class_usb_handle.html#a6ad15406df47137dddf3edcb6c10c9c1',1,'UsbHandle::~UsbHandle()'],['../class_usb_handle.html#a6ad15406df47137dddf3edcb6c10c9c1',1,'UsbHandle::~UsbHandle()']]], + ['_7evoctcalibration_66',['~VoctCalibration',['../classdaisy_1_1_voct_calibration.html#a900865bfcc294d80a9ea687e79a149e1',1,'daisy::VoctCalibration']]], + ['_7ewavetableloader_67',['~WaveTableLoader',['../classdaisy_1_1_wave_table_loader.html#a5b9d90a405d8b80ce7d186de03e8e768',1,'daisy::WaveTableLoader']]], + ['_7ewavplayer_68',['~WavPlayer',['../classdaisy_1_1_wav_player.html#a5aad333a53f985af43a856b252289b8a',1,'daisy::WavPlayer']]], + ['_7ewavwriter_69',['~WavWriter',['../classdaisy_1_1_wav_writer.html#ab589ae805cb5d3c59c982687894fbdea',1,'daisy::WavWriter']]], + ['_7ewm8731_70',['~Wm8731',['../classdaisy_1_1_wm8731.html#ab71d3f1b08fd45a9d940a2d1a3a4c388',1,'daisy::Wm8731']]] ]; diff --git a/search/functions_4.js b/search/functions_4.js index be090d7bc..78a0c41c5 100644 --- a/search/functions_4.js +++ b/search/functions_4.js @@ -16,42 +16,43 @@ var searchData= ['deinit_13',['Deinit',['../classdaisy_1_1_u_s_b_host_handle.html#acb7c3bbcfa35120d737cd97de448986a',1,'daisy::USBHostHandle']]], ['deinit_14',['DeInit',['../classdaisy_1_1_g_p_i_o.html#a0858299f2acc196b1236473fef011219',1,'daisy::GPIO']]], ['delay_15',['Delay',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a0cda289d881c60e8d19de900c3f4767a',1,'daisy::patch_sm::DaisyPatchSM::Delay()'],['../classdaisy_1_1_system.html#a760572ff8248511b8b5825c8085d33c6',1,'daisy::System::Delay()']]], - ['delayms_16',['DelayMs',['../classdaisy_1_1_daisy_field.html#ac4fcce34f2c6698dee2d4d424a86dadb',1,'daisy::DaisyField::DelayMs()'],['../classdaisy_1_1_timer_handle.html#a531b75a2a21aa12def4de1355cf49e19',1,'daisy::TimerHandle::DelayMs()'],['../classdaisy_1_1_daisy_versio.html#ad546da132a10c6300f5a20ff22b3855e',1,'daisy::DaisyVersio::DelayMs()'],['../classdaisy_1_1_daisy_seed.html#a1cf2d8617a21e7cfba8d61f9c2551daf',1,'daisy::DaisySeed::DelayMs()'],['../classdaisy_1_1_daisy_pod.html#ac6a34858e9341fafa30d8cec8619a96f',1,'daisy::DaisyPod::DelayMs()'],['../classdaisy_1_1_daisy_petal.html#a927afd75574f8fdd509e23a38c176ed9',1,'daisy::DaisyPetal::DelayMs()'],['../classdaisy_1_1_daisy_patch.html#ad1d37ebfcfe6e45f7a4e334ea8409c5a',1,'daisy::DaisyPatch::DelayMs()'],['../classdaisy_1_1_daisy_legio.html#add79a4119ebce14368928b87d0f63aa0',1,'daisy::DaisyLegio::DelayMs()']]], + ['delayms_16',['DelayMs',['../classdaisy_1_1_daisy_legio.html#add79a4119ebce14368928b87d0f63aa0',1,'daisy::DaisyLegio::DelayMs()'],['../classdaisy_1_1_timer_handle.html#a531b75a2a21aa12def4de1355cf49e19',1,'daisy::TimerHandle::DelayMs()'],['../classdaisy_1_1_daisy_versio.html#ad546da132a10c6300f5a20ff22b3855e',1,'daisy::DaisyVersio::DelayMs()'],['../classdaisy_1_1_daisy_seed.html#a1cf2d8617a21e7cfba8d61f9c2551daf',1,'daisy::DaisySeed::DelayMs()'],['../classdaisy_1_1_daisy_pod.html#ac6a34858e9341fafa30d8cec8619a96f',1,'daisy::DaisyPod::DelayMs()'],['../classdaisy_1_1_daisy_petal.html#a927afd75574f8fdd509e23a38c176ed9',1,'daisy::DaisyPetal::DelayMs()'],['../classdaisy_1_1_daisy_patch.html#ad1d37ebfcfe6e45f7a4e334ea8409c5a',1,'daisy::DaisyPatch::DelayMs()'],['../classdaisy_1_1_daisy_field.html#ac4fcce34f2c6698dee2d4d424a86dadb',1,'daisy::DaisyField::DelayMs()']]], ['delaytick_17',['DelayTick',['../classdaisy_1_1_timer_handle.html#aadbb2bcfa6fd675de3f5510bd8a6b6a7',1,'daisy::TimerHandle']]], ['delayticks_18',['DelayTicks',['../classdaisy_1_1_system.html#a93151b0dbf6dafd33550c472418a4b29',1,'daisy::System']]], - ['delayus_19',['DelayUs',['../classdaisy_1_1_system.html#a74cb8753b9a5b8c36be56bf92378dd39',1,'daisy::System::DelayUs()'],['../classdaisy_1_1_timer_handle.html#a14970bd2fa7b0e6a21bfa08c60644c3c',1,'daisy::TimerHandle::DelayUs()']]], + ['delayus_19',['DelayUs',['../classdaisy_1_1_timer_handle.html#a14970bd2fa7b0e6a21bfa08c60644c3c',1,'daisy::TimerHandle::DelayUs()'],['../classdaisy_1_1_system.html#a74cb8753b9a5b8c36be56bf92378dd39',1,'daisy::System::DelayUs()']]], ['disablepin_20',['DisablePin',['../classdaisy_1_1_m_a_x11300_driver.html#ade8b77085dd9256664bdc9a1f314eaf2',1,'daisy::MAX11300Driver']]], ['displaycontrols_21',['DisplayControls',['../classdaisy_1_1_daisy_patch.html#a92c7dc12ffda2fff994a19935cd251e1',1,'daisy::DaisyPatch']]], - ['dmareceive_22',['DmaReceive',['../classdaisy_1_1_spi_handle.html#a31e8c1a9d346d0bed9de92cdeeaef792',1,'daisy::SpiHandle::DmaReceive()'],['../classdaisy_1_1_multi_slave_spi_handle.html#acf833858186cd740fc66a2124a323999',1,'daisy::MultiSlaveSpiHandle::DmaReceive()'],['../classdaisy_1_1_uart_handler.html#afd959cfbc7efbc2a0357185da61a4ba6',1,'daisy::UartHandler::DmaReceive(uint8_t *buff, size_t size, UartHandler::StartCallbackFunctionPtr start_callback, UartHandler::EndCallbackFunctionPtr end_callback, void *callback_context)']]], - ['dmareceivefifo_23',['DmaReceiveFifo',['../classdaisy_1_1_uart_handler.html#a07c27d8f78518caed8bc2485986b456a',1,'daisy::UartHandler']]], - ['dmatransmit_24',['DmaTransmit',['../classdaisy_1_1_spi_handle.html#a196ed2de11f4a57996e3be5f427d7a12',1,'daisy::SpiHandle::DmaTransmit()'],['../classdaisy_1_1_multi_slave_spi_handle.html#af1cbbafeed04cf3683921eb34176603a',1,'daisy::MultiSlaveSpiHandle::DmaTransmit()'],['../classdaisy_1_1_uart_handler.html#a4565d3868c0d92e6955da3416c309cad',1,'daisy::UartHandler::DmaTransmit()']]], - ['dmatransmitandreceive_25',['DmaTransmitAndReceive',['../classdaisy_1_1_spi_handle.html#a335f8b3b3535880dd1b31eb413ca76c2',1,'daisy::SpiHandle::DmaTransmitAndReceive()'],['../classdaisy_1_1_multi_slave_spi_handle.html#af4a6d59338d72c69b9f65e79d3333b50',1,'daisy::MultiSlaveSpiHandle::DmaTransmitAndReceive()']]], - ['dotstar_26',['DotStar',['../classdaisy_1_1_dot_star.html#a791a6a1041ad7b5fec5b9d1ff04f383a',1,'daisy::DotStar']]], - ['dps310_27',['Dps310',['../classdaisy_1_1_dps310.html#a517b62d6784cdd062c6f57966a4f9dc7',1,'daisy::Dps310']]], - ['dps310i2ctransport_28',['Dps310I2CTransport',['../classdaisy_1_1_dps310_i2_c_transport.html#ad434201c752796986a79ed38d5231c01',1,'daisy::Dps310I2CTransport']]], - ['dps310spitransport_29',['Dps310SpiTransport',['../classdaisy_1_1_dps310_spi_transport.html#a0ed6dec0b7bac5e7de8861d4426d2c5a',1,'daisy::Dps310SpiTransport']]], - ['draw_30',['Draw',['../classdaisy_1_1_abstract_menu_1_1_custom_item.html#a9b437113b341524afddd8f48cc1a2dac',1,'daisy::AbstractMenu::CustomItem::Draw()'],['../classdaisy_1_1_full_screen_item_menu.html#a1273d096262ab4e8be04be11afb7c6e3',1,'daisy::FullScreenItemMenu::Draw()'],['../classdaisy_1_1_ui_page.html#a0b2bcaa60892042f99196c68c0cf11c2',1,'daisy::UiPage::Draw()']]], - ['drawarc_31',['DrawArc',['../classdaisy_1_1_one_bit_graphics_display.html#a7fa0b22cf59787a5685ead819c42d44f',1,'daisy::OneBitGraphicsDisplay::DrawArc()'],['../classdaisy_1_1_one_bit_graphics_display_impl.html#ababfa95bfb894280f844982098852c77',1,'daisy::OneBitGraphicsDisplayImpl::DrawArc()']]], - ['drawcircle_32',['DrawCircle',['../classdaisy_1_1_one_bit_graphics_display.html#afa0a3190d8bd5aba8d796b3bc8d929f8',1,'daisy::OneBitGraphicsDisplay']]], - ['drawline_33',['DrawLine',['../classdaisy_1_1_one_bit_graphics_display_impl.html#ab66752cabb5f46c75d52584d4047bad8',1,'daisy::OneBitGraphicsDisplayImpl::DrawLine()'],['../classdaisy_1_1_one_bit_graphics_display.html#a2f7d2cc00f9f9ffc7b0e96d1e4e56381',1,'daisy::OneBitGraphicsDisplay::DrawLine()']]], - ['drawpixel_34',['DrawPixel',['../classdaisy_1_1_s_s_d130x_driver.html#aaf41184adec775e3b8340a1d6c2bf3e5',1,'daisy::SSD130xDriver::DrawPixel()'],['../classdaisy_1_1_one_bit_graphics_display.html#a5f639b7391b31f023ac1c81e4e0dc7d0',1,'daisy::OneBitGraphicsDisplay::DrawPixel()'],['../classdaisy_1_1_oled_display.html#acbb5c0e9f3c63b5892c4501361a9268d',1,'daisy::OledDisplay::DrawPixel()']]], - ['drawrect_35',['DrawRect',['../classdaisy_1_1_one_bit_graphics_display.html#a19ffcc402319e8cbdbc009949d0a1965',1,'daisy::OneBitGraphicsDisplay::DrawRect(uint_fast8_t x1, uint_fast8_t y1, uint_fast8_t x2, uint_fast8_t y2, bool on, bool fill=false)=0'],['../classdaisy_1_1_one_bit_graphics_display.html#a787b511df887ba3fa5f466fddd3d1fc2',1,'daisy::OneBitGraphicsDisplay::DrawRect(const Rectangle &rect, bool on, bool fill=false)'],['../classdaisy_1_1_one_bit_graphics_display_impl.html#ad6ade3d06a68bb80d09fc0c894941a8c',1,'daisy::OneBitGraphicsDisplayImpl::DrawRect()']]], - ['dsy_5fdma_5fclear_5fcache_5ffor_5fbuffer_36',['dsy_dma_clear_cache_for_buffer',['../group__system.html#ga925b1db78b1a6747c0eb2862d70040c8',1,'dma.h']]], - ['dsy_5fdma_5fdeinit_37',['dsy_dma_deinit',['../group__system.html#ga5033012e804fa9d1e86601106dd86360',1,'dma.h']]], - ['dsy_5fdma_5finit_38',['dsy_dma_init',['../group__system.html#ga7c62c5b1a9ac157a3752d6dfb296596c',1,'dma.h']]], - ['dsy_5fdma_5finvalidate_5fcache_5ffor_5fbuffer_39',['dsy_dma_invalidate_cache_for_buffer',['../group__system.html#ga0f0b7eae521c107641f2a43b6a9a3fae',1,'dma.h']]], - ['dsy_5fget_5funique_5fid_40',['dsy_get_unique_id',['../group__utility.html#ga26efbc690d82e90be4ce40161b9e30e5',1,'unique_id.h']]], - ['dsy_5fgpio_5fdeinit_41',['dsy_gpio_deinit',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga2bba6d53e42b953af6b14a8f29f7807c',1,'gpio.h']]], - ['dsy_5fgpio_5finit_42',['dsy_gpio_init',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga2fa512c8eff950e56bb2206955fc7483',1,'gpio.h']]], - ['dsy_5fgpio_5fread_43',['dsy_gpio_read',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga4ffc8add3d336195e96d111ed56531a9',1,'gpio.h']]], - ['dsy_5fgpio_5ftoggle_44',['dsy_gpio_toggle',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#gaea7ecc4e322ff749af69f9062a01093c',1,'gpio.h']]], - ['dsy_5fgpio_5fwrite_45',['dsy_gpio_write',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga05d023b1e65d46f0d1be16e38d3c6db5',1,'gpio.h']]], - ['dsy_5fhal_5fmap_5fget_5fpin_46',['dsy_hal_map_get_pin',['../group__utility.html#gae70dbeafb6bd918ef4c8159f32fb3c4a',1,'hal_map.h']]], - ['dsy_5fhal_5fmap_5fget_5fport_47',['dsy_hal_map_get_port',['../group__utility.html#ga12684781d7d5d2b8353ab77bcaf951e9',1,'hal_map.h']]], - ['dsy_5fhal_5fmap_5fgpio_5fclk_5fenable_48',['dsy_hal_map_gpio_clk_enable',['../group__utility.html#ga1a26e0c495987189e763471d0d86f9a1',1,'hal_map.h']]], - ['dsy_5fi2c_5fglobal_5finit_49',['dsy_i2c_global_init',['../namespacedaisy.html#ae0b19c7433a9a4943496c1223cd410b2',1,'daisy']]], - ['dsy_5fpin_50',['dsy_pin',['../group__utility.html#gad7373cbfc19efe2d0e1477997bcf3636',1,'daisy_core.h']]], - ['dsy_5fpin_5fcmp_51',['dsy_pin_cmp',['../group__utility.html#ga89ddc0dd121b51c448840b2c56b23d3d',1,'daisy_core.h']]], - ['dsy_5fspi_5fglobal_5finit_52',['dsy_spi_global_init',['../group__serial.html#ga6d59bd4c60c6568d42ded1cbad96d8fd',1,'daisy']]], - ['dsy_5fuart_5fglobal_5finit_53',['dsy_uart_global_init',['../group__serial.html#ga37eef21ee03ddb02591affa3708f28b1',1,'daisy']]] + ['dmalistenstart_22',['DmaListenStart',['../classdaisy_1_1_uart_handler.html#a4dc3e5abdb8cd03db80eaef2b2332876',1,'daisy::UartHandler']]], + ['dmalistenstop_23',['DmaListenStop',['../classdaisy_1_1_uart_handler.html#ab46af079191f4ece2c046ac9b9eded4a',1,'daisy::UartHandler']]], + ['dmareceive_24',['DmaReceive',['../classdaisy_1_1_spi_handle.html#a31e8c1a9d346d0bed9de92cdeeaef792',1,'daisy::SpiHandle::DmaReceive()'],['../classdaisy_1_1_multi_slave_spi_handle.html#acf833858186cd740fc66a2124a323999',1,'daisy::MultiSlaveSpiHandle::DmaReceive()'],['../classdaisy_1_1_uart_handler.html#afd959cfbc7efbc2a0357185da61a4ba6',1,'daisy::UartHandler::DmaReceive()']]], + ['dmatransmit_25',['DmaTransmit',['../classdaisy_1_1_spi_handle.html#a196ed2de11f4a57996e3be5f427d7a12',1,'daisy::SpiHandle::DmaTransmit()'],['../classdaisy_1_1_multi_slave_spi_handle.html#af1cbbafeed04cf3683921eb34176603a',1,'daisy::MultiSlaveSpiHandle::DmaTransmit()'],['../classdaisy_1_1_uart_handler.html#a4565d3868c0d92e6955da3416c309cad',1,'daisy::UartHandler::DmaTransmit()']]], + ['dmatransmitandreceive_26',['DmaTransmitAndReceive',['../classdaisy_1_1_spi_handle.html#a335f8b3b3535880dd1b31eb413ca76c2',1,'daisy::SpiHandle::DmaTransmitAndReceive()'],['../classdaisy_1_1_multi_slave_spi_handle.html#af4a6d59338d72c69b9f65e79d3333b50',1,'daisy::MultiSlaveSpiHandle::DmaTransmitAndReceive()']]], + ['dotstar_27',['DotStar',['../classdaisy_1_1_dot_star.html#a791a6a1041ad7b5fec5b9d1ff04f383a',1,'daisy::DotStar']]], + ['dps310_28',['Dps310',['../classdaisy_1_1_dps310.html#a517b62d6784cdd062c6f57966a4f9dc7',1,'daisy::Dps310']]], + ['dps310i2ctransport_29',['Dps310I2CTransport',['../classdaisy_1_1_dps310_i2_c_transport.html#ad434201c752796986a79ed38d5231c01',1,'daisy::Dps310I2CTransport']]], + ['dps310spitransport_30',['Dps310SpiTransport',['../classdaisy_1_1_dps310_spi_transport.html#a0ed6dec0b7bac5e7de8861d4426d2c5a',1,'daisy::Dps310SpiTransport']]], + ['draw_31',['Draw',['../classdaisy_1_1_abstract_menu_1_1_custom_item.html#a9b437113b341524afddd8f48cc1a2dac',1,'daisy::AbstractMenu::CustomItem::Draw()'],['../classdaisy_1_1_full_screen_item_menu.html#a1273d096262ab4e8be04be11afb7c6e3',1,'daisy::FullScreenItemMenu::Draw()'],['../classdaisy_1_1_ui_page.html#a0b2bcaa60892042f99196c68c0cf11c2',1,'daisy::UiPage::Draw()']]], + ['drawarc_32',['DrawArc',['../classdaisy_1_1_one_bit_graphics_display.html#a7fa0b22cf59787a5685ead819c42d44f',1,'daisy::OneBitGraphicsDisplay::DrawArc()'],['../classdaisy_1_1_one_bit_graphics_display_impl.html#ababfa95bfb894280f844982098852c77',1,'daisy::OneBitGraphicsDisplayImpl::DrawArc()']]], + ['drawcircle_33',['DrawCircle',['../classdaisy_1_1_one_bit_graphics_display.html#afa0a3190d8bd5aba8d796b3bc8d929f8',1,'daisy::OneBitGraphicsDisplay']]], + ['drawline_34',['DrawLine',['../classdaisy_1_1_one_bit_graphics_display_impl.html#ab66752cabb5f46c75d52584d4047bad8',1,'daisy::OneBitGraphicsDisplayImpl::DrawLine()'],['../classdaisy_1_1_one_bit_graphics_display.html#a2f7d2cc00f9f9ffc7b0e96d1e4e56381',1,'daisy::OneBitGraphicsDisplay::DrawLine()']]], + ['drawpixel_35',['DrawPixel',['../classdaisy_1_1_s_s_d130x_driver.html#aaf41184adec775e3b8340a1d6c2bf3e5',1,'daisy::SSD130xDriver::DrawPixel()'],['../classdaisy_1_1_one_bit_graphics_display.html#a5f639b7391b31f023ac1c81e4e0dc7d0',1,'daisy::OneBitGraphicsDisplay::DrawPixel()'],['../classdaisy_1_1_oled_display.html#acbb5c0e9f3c63b5892c4501361a9268d',1,'daisy::OledDisplay::DrawPixel()']]], + ['drawrect_36',['DrawRect',['../classdaisy_1_1_one_bit_graphics_display.html#a19ffcc402319e8cbdbc009949d0a1965',1,'daisy::OneBitGraphicsDisplay::DrawRect(uint_fast8_t x1, uint_fast8_t y1, uint_fast8_t x2, uint_fast8_t y2, bool on, bool fill=false)=0'],['../classdaisy_1_1_one_bit_graphics_display.html#a787b511df887ba3fa5f466fddd3d1fc2',1,'daisy::OneBitGraphicsDisplay::DrawRect(const Rectangle &rect, bool on, bool fill=false)'],['../classdaisy_1_1_one_bit_graphics_display_impl.html#ad6ade3d06a68bb80d09fc0c894941a8c',1,'daisy::OneBitGraphicsDisplayImpl::DrawRect()']]], + ['dsy_5fdma_5fclear_5fcache_5ffor_5fbuffer_37',['dsy_dma_clear_cache_for_buffer',['../group__system.html#ga925b1db78b1a6747c0eb2862d70040c8',1,'dma.h']]], + ['dsy_5fdma_5fdeinit_38',['dsy_dma_deinit',['../group__system.html#ga5033012e804fa9d1e86601106dd86360',1,'dma.h']]], + ['dsy_5fdma_5finit_39',['dsy_dma_init',['../group__system.html#ga7c62c5b1a9ac157a3752d6dfb296596c',1,'dma.h']]], + ['dsy_5fdma_5finvalidate_5fcache_5ffor_5fbuffer_40',['dsy_dma_invalidate_cache_for_buffer',['../group__system.html#ga0f0b7eae521c107641f2a43b6a9a3fae',1,'dma.h']]], + ['dsy_5fget_5funique_5fid_41',['dsy_get_unique_id',['../group__utility.html#ga26efbc690d82e90be4ce40161b9e30e5',1,'unique_id.h']]], + ['dsy_5fgpio_5fdeinit_42',['dsy_gpio_deinit',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga2bba6d53e42b953af6b14a8f29f7807c',1,'gpio.h']]], + ['dsy_5fgpio_5finit_43',['dsy_gpio_init',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga2fa512c8eff950e56bb2206955fc7483',1,'gpio.h']]], + ['dsy_5fgpio_5fread_44',['dsy_gpio_read',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga4ffc8add3d336195e96d111ed56531a9',1,'gpio.h']]], + ['dsy_5fgpio_5ftoggle_45',['dsy_gpio_toggle',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#gaea7ecc4e322ff749af69f9062a01093c',1,'gpio.h']]], + ['dsy_5fgpio_5fwrite_46',['dsy_gpio_write',['../group___d_e_p_r_e_c_a_t_e_d-_o_l_d-_g_p_i_o.html#ga05d023b1e65d46f0d1be16e38d3c6db5',1,'gpio.h']]], + ['dsy_5fhal_5fmap_5fget_5fpin_47',['dsy_hal_map_get_pin',['../group__utility.html#gae70dbeafb6bd918ef4c8159f32fb3c4a',1,'hal_map.h']]], + ['dsy_5fhal_5fmap_5fget_5fport_48',['dsy_hal_map_get_port',['../group__utility.html#ga12684781d7d5d2b8353ab77bcaf951e9',1,'hal_map.h']]], + ['dsy_5fhal_5fmap_5fgpio_5fclk_5fenable_49',['dsy_hal_map_gpio_clk_enable',['../group__utility.html#ga1a26e0c495987189e763471d0d86f9a1',1,'hal_map.h']]], + ['dsy_5fi2c_5fglobal_5finit_50',['dsy_i2c_global_init',['../namespacedaisy.html#ae0b19c7433a9a4943496c1223cd410b2',1,'daisy']]], + ['dsy_5fpin_51',['dsy_pin',['../group__utility.html#gad7373cbfc19efe2d0e1477997bcf3636',1,'daisy_core.h']]], + ['dsy_5fpin_5fcmp_52',['dsy_pin_cmp',['../group__utility.html#ga89ddc0dd121b51c448840b2c56b23d3d',1,'daisy_core.h']]], + ['dsy_5fspi_5fglobal_5finit_53',['dsy_spi_global_init',['../group__serial.html#ga6d59bd4c60c6568d42ded1cbad96d8fd',1,'daisy']]], + ['dsy_5fuart_5fglobal_5finit_54',['dsy_uart_global_init',['../group__serial.html#ga37eef21ee03ddb02591affa3708f28b1',1,'daisy']]] ]; diff --git a/search/functions_6.js b/search/functions_6.js index c5d770038..d52f56e32 100644 --- a/search/functions_6.js +++ b/search/functions_6.js @@ -11,10 +11,9 @@ var searchData= ['fifobase_8',['FIFOBase',['../classdaisy_1_1_f_i_f_o_base.html#ac7249ea0264e9bdfee1d7cca393a7400',1,'daisy::FIFOBase::FIFOBase(T *buffer, size_t bufferSize, std::initializer_list< T > valuesToAdd)'],['../classdaisy_1_1_f_i_f_o_base.html#a15637244c53a116c8e6805d2481744fe',1,'daisy::FIFOBase::FIFOBase(T *buffer, size_t bufferSize)']]], ['fill_9',['Fill',['../classdaisy_1_1_oled_display.html#a0502509e0a15e5546131121e6ef38819',1,'daisy::OledDisplay::Fill()'],['../classdaisy_1_1_dot_star.html#afcd4a0fae4f53f1824c79e9c851ba81e',1,'daisy::DotStar::Fill(const Color &color)'],['../classdaisy_1_1_dot_star.html#ab05eb4bcdbfccdef250373242400bd05',1,'daisy::DotStar::Fill(uint32_t color)'],['../classdaisy_1_1_dot_star.html#acabff3c34a6549b249de5249f4515f7d',1,'daisy::DotStar::Fill(uint8_t r, uint8_t g, uint8_t b)'],['../classdaisy_1_1_s_s_d130x_driver.html#a1abfa4aa65a905e9b1d97669bde5057b',1,'daisy::SSD130xDriver::Fill()'],['../classdaisy_1_1_one_bit_graphics_display.html#a0d2a8bb3bebc78ea794180803cbf7089',1,'daisy::OneBitGraphicsDisplay::Fill()']]], ['filtereddata_10',['FilteredData',['../classdaisy_1_1_mpr121.html#a5dd0cbce7221b3a46f8fe0ecd5d07663',1,'daisy::Mpr121']]], - ['fixedcapstr_11',['FixedCapStr',['../classdaisy_1_1_fixed_cap_str.html#a757091c8cc8dc86bca3a28279157c324',1,'daisy::FixedCapStr::FixedCapStr(const CharType *str, std::size_t length) noexcept'],['../classdaisy_1_1_fixed_cap_str.html#aa2ac5582f63ce3425677a64eb0b78679',1,'daisy::FixedCapStr::FixedCapStr() noexcept'],['../classdaisy_1_1_fixed_cap_str.html#a4a196b00b2ef38d5515618826cb3c816',1,'daisy::FixedCapStr::FixedCapStr(const FixedCapStr &str) noexcept'],['../classdaisy_1_1_fixed_cap_str.html#a63751c4ed40c4bc143398ced0b332faf',1,'daisy::FixedCapStr::FixedCapStr(const FixedCapStr< otherSize > &str) noexcept'],['../classdaisy_1_1_fixed_cap_str.html#a636a964eaa715b220bade86d0fc0252c',1,'daisy::FixedCapStr::FixedCapStr(const CharType *str) noexcept']]], - ['fixedcapstrbase_12',['FixedCapStrBase',['../classdaisy_1_1_fixed_cap_str_base.html#a5269ed4939c9fcac41d254f17c06d1e6',1,'daisy::FixedCapStrBase::FixedCapStrBase(const FixedCapStrBase &other)=delete'],['../classdaisy_1_1_fixed_cap_str_base.html#a485d917f9739b946862f8815ad277c21',1,'daisy::FixedCapStrBase::FixedCapStrBase(CharType *buffer, size_t capacity)']]], - ['flush_13',['Flush',['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#aba6d429d965956722e32388f8348befc',1,'daisy::RingBuffer< T, 0 >::Flush()'],['../classdaisy_1_1_ring_buffer.html#a672e1f1325d26d51186622204c1ea669',1,'daisy::RingBuffer::Flush()']]], - ['flushfifo_14',['FlushFifo',['../classdaisy_1_1_uart_handler.html#a4e2b04c72be034995175ec3d1229815d',1,'daisy::UartHandler']]], - ['flushrx_15',['FlushRx',['../classdaisy_1_1_midi_uart_transport.html#a7e498cbcb29bc447db934b96252a547f',1,'daisy::MidiUartTransport::FlushRx()'],['../classdaisy_1_1_midi_usb_transport.html#a4509734f8dee64bc260a1a5e940b4b9c',1,'daisy::MidiUsbTransport::FlushRx()'],['../classdaisy_1_1_uart_handler.html#a8282a20746be60a208cde90a8eea1529',1,'daisy::UartHandler::FlushRx()']]], - ['front_16',['Front',['../classdaisy_1_1_f_i_f_o_base.html#a000168a5fe90823b7c671a1eeaa03d4a',1,'daisy::FIFOBase::Front()'],['../classdaisy_1_1_f_i_f_o_base.html#a1574a70a644e265fe1a07d68d2ae3a31',1,'daisy::FIFOBase::Front() const']]] + ['fixedcapstr_11',['FixedCapStr',['../classdaisy_1_1_fixed_cap_str.html#a636a964eaa715b220bade86d0fc0252c',1,'daisy::FixedCapStr::FixedCapStr(const CharType *str) noexcept'],['../classdaisy_1_1_fixed_cap_str.html#a757091c8cc8dc86bca3a28279157c324',1,'daisy::FixedCapStr::FixedCapStr(const CharType *str, std::size_t length) noexcept'],['../classdaisy_1_1_fixed_cap_str.html#a63751c4ed40c4bc143398ced0b332faf',1,'daisy::FixedCapStr::FixedCapStr(const FixedCapStr< otherSize > &str) noexcept'],['../classdaisy_1_1_fixed_cap_str.html#a4a196b00b2ef38d5515618826cb3c816',1,'daisy::FixedCapStr::FixedCapStr(const FixedCapStr &str) noexcept'],['../classdaisy_1_1_fixed_cap_str.html#aa2ac5582f63ce3425677a64eb0b78679',1,'daisy::FixedCapStr::FixedCapStr() noexcept']]], + ['fixedcapstrbase_12',['FixedCapStrBase',['../classdaisy_1_1_fixed_cap_str_base.html#a485d917f9739b946862f8815ad277c21',1,'daisy::FixedCapStrBase::FixedCapStrBase(CharType *buffer, size_t capacity)'],['../classdaisy_1_1_fixed_cap_str_base.html#a5269ed4939c9fcac41d254f17c06d1e6',1,'daisy::FixedCapStrBase::FixedCapStrBase(const FixedCapStrBase &other)=delete']]], + ['flush_13',['Flush',['../classdaisy_1_1_ring_buffer.html#a672e1f1325d26d51186622204c1ea669',1,'daisy::RingBuffer::Flush()'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#aba6d429d965956722e32388f8348befc',1,'daisy::RingBuffer< T, 0 >::Flush()']]], + ['flushrx_14',['FlushRx',['../classdaisy_1_1_midi_uart_transport.html#a7e498cbcb29bc447db934b96252a547f',1,'daisy::MidiUartTransport::FlushRx()'],['../classdaisy_1_1_midi_usb_transport.html#a4509734f8dee64bc260a1a5e940b4b9c',1,'daisy::MidiUsbTransport::FlushRx()']]], + ['front_15',['Front',['../classdaisy_1_1_f_i_f_o_base.html#a000168a5fe90823b7c671a1eeaa03d4a',1,'daisy::FIFOBase::Front()'],['../classdaisy_1_1_f_i_f_o_base.html#a1574a70a644e265fe1a07d68d2ae3a31',1,'daisy::FIFOBase::Front() const']]] ]; diff --git a/search/functions_9.js b/search/functions_9.js index 7d11705de..25c606e52 100644 --- a/search/functions_9.js +++ b/search/functions_9.js @@ -7,7 +7,7 @@ var searchData= ['immediateread_4',['ImmediateRead',['../classdaisy_1_1_ring_buffer.html#a0dd518872cd6b113549a93223f3b1ec7',1,'daisy::RingBuffer::ImmediateRead()'],['../classdaisy_1_1_ring_buffer.html#ae77037eb83533028e4abcdd3a649ecfa',1,'daisy::RingBuffer::ImmediateRead(T *destination, size_t num_elements)'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#a253d509d65e4898723b20e9110e9ba4b',1,'daisy::RingBuffer< T, 0 >::ImmediateRead()'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#ac5f5954e54efc54d1fedbd8d1526fae8',1,'daisy::RingBuffer< T, 0 >::ImmediateRead(T *destination, size_t num_elements)']]], ['import_5',['Import',['../classdaisy_1_1_wave_table_loader.html#a95b0b8da2b594e99193bcd197b80bde6',1,'daisy::WaveTableLoader']]], ['increment_6',['Increment',['../classdaisy_1_1_encoder.html#ae0f2d9d22a006a45daa1ac9cbcba4050',1,'daisy::Encoder']]], - ['init_7',['Init',['../classdaisy_1_1_i2_c_handle.html#a3010881bcac1d32f6f974edc9bbc6c0d',1,'daisy::I2CHandle::Init()'],['../class_usb_handle.html#a0e30c290afb4d303ecf3b0c83d71f24d',1,'UsbHandle::Init()'],['../classdaisy_1_1_u_s_b_host_handle.html#aaf6e11074b3f982dc723bb014ceb1390',1,'daisy::USBHostHandle::Init()'],['../classdaisy_1_1_midi_usb_transport.html#a11cf837f61be46669ced0fe3345d9625',1,'daisy::MidiUsbTransport::Init()'],['../classdaisy_1_1_wav_player.html#a098078377eb545263538e56c53b56e4e',1,'daisy::WavPlayer::Init()'],['../class_usb_handle.html#a0e30c290afb4d303ecf3b0c83d71f24d',1,'UsbHandle::Init()'],['../classdaisy_1_1_adc_handle.html#ab93340170ed44feced69fcdafc6c13ed',1,'daisy::AdcHandle::Init()'],['../classdaisy_1_1_dac_handle.html#acc45a993a9a43ba443e07ba4dd15ed57',1,'daisy::DacHandle::Init()'],['../classdaisy_1_1_g_p_i_o.html#a56572310bb54b2c847d2129dc293693b',1,'daisy::GPIO::Init(const Config &cfg)'],['../classdaisy_1_1_g_p_i_o.html#a18443f33a5e5346f522908ad555b54dc',1,'daisy::GPIO::Init(Pin p, const Config &cfg)'],['../classdaisy_1_1_g_p_i_o.html#ad1ccf2f88576b9f86467db1cea61bbde',1,'daisy::GPIO::Init(Pin p, Mode m=Mode::INPUT, Pull pu=Pull::NOPULL, Speed sp=Speed::LOW)'],['../classdaisy_1_1_gate_in.html#af9c75a81b23b1b268ca2eeeadd004c0c',1,'daisy::GateIn::Init()'],['../classdaisy_1_1_switch3.html#a7d1b5b64a03773fae37ed0de0e861aa3',1,'daisy::Switch3::Init()'],['../classdaisy_1_1_switch.html#a40c083b0e9e30e878723cd985bc4ec2a',1,'daisy::Switch::Init(dsy_gpio_pin pin, float update_rate=0.f)'],['../classdaisy_1_1_switch.html#a8ca509a85dbe09f1d27bcc4ae03fc17a',1,'daisy::Switch::Init(dsy_gpio_pin pin, float update_rate, Type t, Polarity pol, Pull pu)'],['../classdaisy_1_1_rgb_led.html#aff3dc6ce4e2415a32ad09c41f003b7fe',1,'daisy::RgbLed::Init()'],['../classdaisy_1_1_parameter.html#a0dc0293e425569511a73c311bfa54f48',1,'daisy::Parameter::Init()'],['../classdaisy_1_1_midi_handler.html#ae449f82ffeae9ef7f71d725349fdffef',1,'daisy::MidiHandler::Init()'],['../classdaisy_1_1_midi_uart_transport.html#affbd429d68f111dd01161591f2736012',1,'daisy::MidiUartTransport::Init()'],['../classdaisy_1_1_logger_impl_3_01_l_o_g_g_e_r___e_x_t_e_r_n_a_l_01_4.html#a95532c749fa4e876d9d577f77d075a78',1,'daisy::LoggerImpl< LOGGER_EXTERNAL >::Init()'],['../classdaisy_1_1_logger_impl_3_01_l_o_g_g_e_r___i_n_t_e_r_n_a_l_01_4.html#a06c48eeab0904a078889b535d8c62ec8',1,'daisy::LoggerImpl< LOGGER_INTERNAL >::Init()'],['../classdaisy_1_1_logger_impl.html#a2e574776282ceda67942634a283cf51d',1,'daisy::LoggerImpl::Init()'],['../classdaisy_1_1_led.html#a0af3ce433660d9f21e94368d5d84fe6e',1,'daisy::Led::Init()'],['../classdaisy_1_1_logger_impl_3_01_l_o_g_g_e_r___s_e_m_i_h_o_s_t_01_4.html#af1ab65a3d6517da68ab13eafefe6d5fe',1,'daisy::LoggerImpl< LOGGER_SEMIHOST >::Init()'],['../classdaisy_1_1_abstract_menu.html#a4bfab9891a3376162118e5d955033977',1,'daisy::AbstractMenu::Init()'],['../classdaisy_1_1_wav_writer.html#aea2d493b6d04b6d395eea6acc7e60055',1,'daisy::WavWriter::Init()'],['../classdaisy_1_1_wave_table_loader.html#ab68b6dd9b098a3bbce0128c1da53d6ea',1,'daisy::WaveTableLoader::Init()'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#a1ff2978078c3d5e92dbeb72892668b68',1,'daisy::RingBuffer< T, 0 >::Init()'],['../classdaisy_1_1_ring_buffer.html#a4b4d3a025463e06d6a62a1ede1491401',1,'daisy::RingBuffer::Init()'],['../classdaisy_1_1_persistent_storage.html#a250a8352eb62ed2db360d89c06d4aa17',1,'daisy::PersistentStorage::Init()'],['../classdaisy_1_1_cpu_load_meter.html#a79ef32518b6eaa259c76690e0d956cc4',1,'daisy::CpuLoadMeter::Init()'],['../classdaisy_1_1_color.html#a44cd04ee19a41442be79ec47711a2bf5',1,'daisy::Color::Init(float red, float green, float blue)'],['../classdaisy_1_1_color.html#a0ebd169976dd93434e4523697b16559b',1,'daisy::Color::Init(PresetColor c)'],['../classdaisy_1_1_u_i.html#a45d45bd85253906cae5dc7e113c73c89',1,'daisy::UI::Init()'],['../classdaisy_1_1_pot_monitor.html#a3100de81d603dbac5914a1d4cfa26f5f',1,'daisy::PotMonitor::Init()'],['../classdaisy_1_1_full_screen_item_menu.html#a523e9103e7529a297021e45071c34d16',1,'daisy::FullScreenItemMenu::Init()'],['../classdaisy_1_1_button_monitor.html#a560eafea070347241b536948a6992180',1,'daisy::ButtonMonitor::Init()'],['../classdaisy_1_1_q_s_p_i_handle.html#a835072d362f51e74c2e2c842bded97f0',1,'daisy::QSPIHandle::Init()'],['../classdaisy_1_1_system.html#a17ca63fdd1043c8509e467073b5fd497',1,'daisy::System::Init(const Config &config)'],['../classdaisy_1_1_system.html#a191c10f3ac6b471cce23aa46623c72fa',1,'daisy::System::Init()'],['../classdaisy_1_1_fat_f_s_interface.html#a8e32ecdd5525abf348353bfbc81f989b',1,'daisy::FatFSInterface::Init(const uint8_t media)'],['../classdaisy_1_1_fat_f_s_interface.html#a9c3f879208f63d8901f0651790c55171',1,'daisy::FatFSInterface::Init(const Config &cfg)'],['../classdaisy_1_1_uart_handler.html#aa25c871d2fb9d382ef779ba92b4d2ada',1,'daisy::UartHandler::Init()'],['../classdaisy_1_1_timer_handle.html#ace505f2c685767f7e9dbb39172646c4e',1,'daisy::TimerHandle::Init()'],['../classdaisy_1_1_multi_slave_spi_handle.html#a0ddc3024b08b9a934dbb80b7594b4bc7',1,'daisy::MultiSlaveSpiHandle::Init()'],['../classdaisy_1_1_spi_handle.html#a9bec410bfc0d743be479be9856560c71',1,'daisy::SpiHandle::Init()'],['../classdaisy_1_1_sdmmc_handler.html#a5df27501002b728908d18bcc279cb6df',1,'daisy::SdmmcHandler::Init()'],['../classdaisy_1_1_sai_handle.html#ae81d7a93aa5f48f643ac157f612c21cd',1,'daisy::SaiHandle::Init()'],['../classdaisy_1_1_random.html#a3e4df2eab7bd06b463ca681552b17abd',1,'daisy::Random::Init()'],['../classdaisy_1_1_pcm3060.html#a40f95112173ba827d160e69215a7cde6',1,'daisy::Pcm3060::Init()'],['../classdaisy_1_1_m_a_x11300_multi_slave_spi_transport.html#a4511d39640b3cb149cf97fc5f206638c',1,'daisy::MAX11300MultiSlaveSpiTransport::Init()'],['../classdaisy_1_1_led_driver_pca9685.html#a468206d813cff0033a50e7ce613ad8cb',1,'daisy::LedDriverPca9685::Init()'],['../classdaisy_1_1_lcd_h_d44780.html#a559e0af82ce6958d0c8b7a62fd19647d',1,'daisy::LcdHD44780::Init()'],['../classdaisy_1_1_icm20948.html#a0ea987e535b4f5bcc0c0d06877ddda74',1,'daisy::Icm20948::Init()'],['../classdaisy_1_1_icm20948_spi_transport.html#aeda45856d48ca16e80df40e6eee8d5d4',1,'daisy::Icm20948SpiTransport::Init()'],['../classdaisy_1_1_icm20948_i2_c_transport.html#ab749f713a91ac603b958080205c36181',1,'daisy::Icm20948I2CTransport::Init()'],['../classdaisy_1_1_dps310.html#a8037a8a10e239c5cca75b9e6f380771f',1,'daisy::Dps310::Init()'],['../classdaisy_1_1_dps310_spi_transport.html#a66b0440313b267da0a87b98d816d02fe',1,'daisy::Dps310SpiTransport::Init()'],['../classdaisy_1_1_dps310_i2_c_transport.html#af085d9eaba116b7dc287e8925d3da9c4',1,'daisy::Dps310I2CTransport::Init()'],['../classdaisy_1_1_dot_star.html#a5c82a302c01a806ec7c0e5ba4e8b4731',1,'daisy::DotStar::Init()'],['../classdaisy_1_1_dot_star_spi_transport.html#ac39572f5fe669f1da402046be2e832f4',1,'daisy::DotStarSpiTransport::Init()'],['../classdaisy_1_1_wm8731.html#a42f8e6070918905a6aa317ed3fb20627',1,'daisy::Wm8731::Init()'],['../classdaisy_1_1_encoder.html#aebee661fcf4faf8ca2bc6550bcffee68',1,'daisy::Encoder::Init()'],['../classdaisy_1_1_ak4556.html#ac92bd71a03cb93ce380533f9775c16da',1,'daisy::Ak4556::Init()'],['../classdaisy_1_1_apds9960.html#a3f4e889772c6170099623fc62b04dce6',1,'daisy::Apds9960::Init()'],['../classdaisy_1_1_apds9960_i2_c_transport.html#a4b1d6f0db098b9f5c94575dfac6e5ca4',1,'daisy::Apds9960I2CTransport::Init()'],['../classdaisy_1_1_daisy_versio.html#ad50e0740d75a92c6c5117a2c1ec68f40',1,'daisy::DaisyVersio::Init()'],['../classdaisy_1_1_daisy_seed.html#a218cbf64aa64572a1b5bbc57fd00c895',1,'daisy::DaisySeed::Init()'],['../classdaisy_1_1_daisy_pod.html#aac199ade5be95744d134f0fa48ba929b',1,'daisy::DaisyPod::Init()'],['../classdaisy_1_1_daisy_petal.html#ad015b70ff11f86c745bf180466c67cac',1,'daisy::DaisyPetal::Init()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a19435eb6b6785544317a436846790374',1,'daisy::patch_sm::DaisyPatchSM::Init()'],['../classdaisy_1_1_daisy_patch.html#aedb7ece87c5d7d85d68e22d142b55518',1,'daisy::DaisyPatch::Init()'],['../classdaisy_1_1_daisy_legio.html#a760bdefd4cc75e4e566987c8f8045001',1,'daisy::DaisyLegio::Init()'],['../classdaisy_1_1_daisy_field.html#a30e655b910f9e844917a82359c7f4c2f',1,'daisy::DaisyField::Init()'],['../classdaisy_1_1_mcp23017_transport.html#a973912314bf828734554ce9a61d4e450',1,'daisy::Mcp23017Transport::Init()'],['../classdaisy_1_1_gate_in.html#a965077b2d1bffa4d103b4d497e64a7b6',1,'daisy::GateIn::Init()'],['../classdaisy_1_1_oled_display.html#a20febfc6699586dcde5fff70f81b6d6c',1,'daisy::OledDisplay::Init()'],['../classdaisy_1_1_analog_control.html#a516499f0788d7405024eff550386a59e',1,'daisy::AnalogControl::Init()'],['../classdaisy_1_1_audio_handle.html#af4e61088880609884a50b830c2a50af6',1,'daisy::AudioHandle::Init(const Config &config, SaiHandle sai1, SaiHandle sai2)'],['../classdaisy_1_1_audio_handle.html#ac949d6b1ffbb916da8386afbdde5fd8f',1,'daisy::AudioHandle::Init(const Config &config, SaiHandle sai)'],['../classdaisy_1_1_tlv493d.html#ab32b6b2d1d32ce7d50f7e3210003f10b',1,'daisy::Tlv493d::Init()'],['../classdaisy_1_1_tlv493d_i2_c_transport.html#af72585ffc69c5aadefe327ea424309b0',1,'daisy::Tlv493dI2CTransport::Init()'],['../class_shift_register595.html#acc9e7d74069edd4b2711a9de01e9617c',1,'ShiftRegister595::Init()'],['../classdaisy_1_1_shift_register4021.html#a8f6d648bed2d03b56c9b833f45b077d7',1,'daisy::ShiftRegister4021::Init()'],['../class_sdram_handle.html#abe37a0af8d94b9745942385f2299792e',1,'SdramHandle::Init()'],['../classdaisy_1_1_s_s_d130x_driver.html#a47cb4fe280876881fc1f2eb7e3ae8809',1,'daisy::SSD130xDriver::Init()'],['../classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html#ac1e762aa00be0d04972c51853b5caa33',1,'daisy::SSD130x4WireSoftSpiTransport::Init()'],['../classdaisy_1_1_mcp23_x17.html#a8887330312af7951a8a45912b6de8a82',1,'daisy::Mcp23X17::Init()'],['../classdaisy_1_1_s_s_d130x4_wire_spi_transport.html#adfdf96d17c5754ea048e74a179ead274',1,'daisy::SSD130x4WireSpiTransport::Init()'],['../classdaisy_1_1_m_a_x11300_driver.html#aa25a33ae08e18604aea0d3ab4af5a156',1,'daisy::MAX11300Driver::Init()'],['../classdaisy_1_1_mcp23017_transport.html#a5c95f1b6faa873d56861c27328720cf4',1,'daisy::Mcp23017Transport::Init()'],['../classdaisy_1_1_mcp23_x17.html#ac21c01342949be85f73eb38168c216ab',1,'daisy::Mcp23X17::Init()'],['../classdaisy_1_1_mpr121_i2_c_transport.html#a4038e5bc1ba98d6a0968f43dc5c8259b',1,'daisy::Mpr121I2CTransport::Init()'],['../classdaisy_1_1_mpr121.html#ac99982dd29c485b9af192ff20f8048fe',1,'daisy::Mpr121::Init()'],['../classdaisy_1_1_neo_pixel_i2_c_transport.html#a8c9aa0f692fbef7a313877fb4ea3d453',1,'daisy::NeoPixelI2CTransport::Init()'],['../classdaisy_1_1_neo_pixel.html#a597e94d940bb0746d15b0c1669eff2ae',1,'daisy::NeoPixel::Init()'],['../classdaisy_1_1_neo_trellis_i2_c_transport.html#a5c82812bec22d8ef70df345f7d5b853f',1,'daisy::NeoTrellisI2CTransport::Init()'],['../classdaisy_1_1_neo_trellis.html#a3b1d59ec7eb519021b9f210d68ceb376',1,'daisy::NeoTrellis::Init()'],['../classdaisy_1_1_s_s_d130x_i2_c_transport.html#aa9b9a2f7fae4b790ac84a53ba7aefd13',1,'daisy::SSD130xI2CTransport::Init()']]], + ['init_7',['Init',['../classdaisy_1_1_i2_c_handle.html#a3010881bcac1d32f6f974edc9bbc6c0d',1,'daisy::I2CHandle::Init()'],['../class_usb_handle.html#a0e30c290afb4d303ecf3b0c83d71f24d',1,'UsbHandle::Init(UsbPeriph dev)'],['../class_usb_handle.html#a0e30c290afb4d303ecf3b0c83d71f24d',1,'UsbHandle::Init(UsbPeriph dev)'],['../classdaisy_1_1_u_s_b_host_handle.html#aaf6e11074b3f982dc723bb014ceb1390',1,'daisy::USBHostHandle::Init()'],['../classdaisy_1_1_midi_usb_transport.html#a11cf837f61be46669ced0fe3345d9625',1,'daisy::MidiUsbTransport::Init()'],['../classdaisy_1_1_wav_player.html#a098078377eb545263538e56c53b56e4e',1,'daisy::WavPlayer::Init()'],['../classdaisy_1_1_switch3.html#a7d1b5b64a03773fae37ed0de0e861aa3',1,'daisy::Switch3::Init()'],['../classdaisy_1_1_adc_handle.html#ab93340170ed44feced69fcdafc6c13ed',1,'daisy::AdcHandle::Init()'],['../classdaisy_1_1_dac_handle.html#acc45a993a9a43ba443e07ba4dd15ed57',1,'daisy::DacHandle::Init()'],['../classdaisy_1_1_g_p_i_o.html#a56572310bb54b2c847d2129dc293693b',1,'daisy::GPIO::Init(const Config &cfg)'],['../classdaisy_1_1_g_p_i_o.html#a18443f33a5e5346f522908ad555b54dc',1,'daisy::GPIO::Init(Pin p, const Config &cfg)'],['../classdaisy_1_1_g_p_i_o.html#ad1ccf2f88576b9f86467db1cea61bbde',1,'daisy::GPIO::Init(Pin p, Mode m=Mode::INPUT, Pull pu=Pull::NOPULL, Speed sp=Speed::LOW)'],['../classdaisy_1_1_gate_in.html#af9c75a81b23b1b268ca2eeeadd004c0c',1,'daisy::GateIn::Init()'],['../classdaisy_1_1_switch.html#a40c083b0e9e30e878723cd985bc4ec2a',1,'daisy::Switch::Init(dsy_gpio_pin pin, float update_rate=0.f)'],['../classdaisy_1_1_switch.html#a8ca509a85dbe09f1d27bcc4ae03fc17a',1,'daisy::Switch::Init(dsy_gpio_pin pin, float update_rate, Type t, Polarity pol, Pull pu)'],['../classdaisy_1_1_rgb_led.html#aff3dc6ce4e2415a32ad09c41f003b7fe',1,'daisy::RgbLed::Init()'],['../classdaisy_1_1_parameter.html#a0dc0293e425569511a73c311bfa54f48',1,'daisy::Parameter::Init()'],['../classdaisy_1_1_midi_parser.html#adddae08eba63035e5d7d49fb3de201f8',1,'daisy::MidiParser::Init()'],['../classdaisy_1_1_midi_handler.html#ae449f82ffeae9ef7f71d725349fdffef',1,'daisy::MidiHandler::Init()'],['../classdaisy_1_1_logger_impl_3_01_l_o_g_g_e_r___s_e_m_i_h_o_s_t_01_4.html#af1ab65a3d6517da68ab13eafefe6d5fe',1,'daisy::LoggerImpl< LOGGER_SEMIHOST >::Init()'],['../classdaisy_1_1_logger_impl_3_01_l_o_g_g_e_r___e_x_t_e_r_n_a_l_01_4.html#a95532c749fa4e876d9d577f77d075a78',1,'daisy::LoggerImpl< LOGGER_EXTERNAL >::Init()'],['../classdaisy_1_1_logger_impl_3_01_l_o_g_g_e_r___i_n_t_e_r_n_a_l_01_4.html#a06c48eeab0904a078889b535d8c62ec8',1,'daisy::LoggerImpl< LOGGER_INTERNAL >::Init()'],['../classdaisy_1_1_logger_impl.html#a2e574776282ceda67942634a283cf51d',1,'daisy::LoggerImpl::Init()'],['../classdaisy_1_1_led.html#a0af3ce433660d9f21e94368d5d84fe6e',1,'daisy::Led::Init()'],['../classdaisy_1_1_midi_uart_transport.html#affbd429d68f111dd01161591f2736012',1,'daisy::MidiUartTransport::Init()'],['../classdaisy_1_1_abstract_menu.html#a4bfab9891a3376162118e5d955033977',1,'daisy::AbstractMenu::Init()'],['../classdaisy_1_1_wav_writer.html#aea2d493b6d04b6d395eea6acc7e60055',1,'daisy::WavWriter::Init()'],['../classdaisy_1_1_wave_table_loader.html#ab68b6dd9b098a3bbce0128c1da53d6ea',1,'daisy::WaveTableLoader::Init()'],['../classdaisy_1_1_ring_buffer_3_01_t_00_010_01_4.html#a1ff2978078c3d5e92dbeb72892668b68',1,'daisy::RingBuffer< T, 0 >::Init()'],['../classdaisy_1_1_ring_buffer.html#a4b4d3a025463e06d6a62a1ede1491401',1,'daisy::RingBuffer::Init()'],['../classdaisy_1_1_persistent_storage.html#a250a8352eb62ed2db360d89c06d4aa17',1,'daisy::PersistentStorage::Init()'],['../classdaisy_1_1_cpu_load_meter.html#a79ef32518b6eaa259c76690e0d956cc4',1,'daisy::CpuLoadMeter::Init()'],['../classdaisy_1_1_color.html#a44cd04ee19a41442be79ec47711a2bf5',1,'daisy::Color::Init(float red, float green, float blue)'],['../classdaisy_1_1_color.html#a0ebd169976dd93434e4523697b16559b',1,'daisy::Color::Init(PresetColor c)'],['../classdaisy_1_1_u_i.html#a45d45bd85253906cae5dc7e113c73c89',1,'daisy::UI::Init()'],['../classdaisy_1_1_pot_monitor.html#a3100de81d603dbac5914a1d4cfa26f5f',1,'daisy::PotMonitor::Init()'],['../classdaisy_1_1_full_screen_item_menu.html#a523e9103e7529a297021e45071c34d16',1,'daisy::FullScreenItemMenu::Init()'],['../classdaisy_1_1_button_monitor.html#a560eafea070347241b536948a6992180',1,'daisy::ButtonMonitor::Init()'],['../classdaisy_1_1_q_s_p_i_handle.html#a835072d362f51e74c2e2c842bded97f0',1,'daisy::QSPIHandle::Init()'],['../classdaisy_1_1_system.html#a17ca63fdd1043c8509e467073b5fd497',1,'daisy::System::Init(const Config &config)'],['../classdaisy_1_1_system.html#a191c10f3ac6b471cce23aa46623c72fa',1,'daisy::System::Init()'],['../classdaisy_1_1_fat_f_s_interface.html#a8e32ecdd5525abf348353bfbc81f989b',1,'daisy::FatFSInterface::Init(const uint8_t media)'],['../classdaisy_1_1_fat_f_s_interface.html#a9c3f879208f63d8901f0651790c55171',1,'daisy::FatFSInterface::Init(const Config &cfg)'],['../classdaisy_1_1_uart_handler.html#aa25c871d2fb9d382ef779ba92b4d2ada',1,'daisy::UartHandler::Init()'],['../classdaisy_1_1_timer_handle.html#ace505f2c685767f7e9dbb39172646c4e',1,'daisy::TimerHandle::Init()'],['../classdaisy_1_1_multi_slave_spi_handle.html#a0ddc3024b08b9a934dbb80b7594b4bc7',1,'daisy::MultiSlaveSpiHandle::Init()'],['../classdaisy_1_1_spi_handle.html#a9bec410bfc0d743be479be9856560c71',1,'daisy::SpiHandle::Init()'],['../classdaisy_1_1_sdmmc_handler.html#a5df27501002b728908d18bcc279cb6df',1,'daisy::SdmmcHandler::Init()'],['../classdaisy_1_1_sai_handle.html#ae81d7a93aa5f48f643ac157f612c21cd',1,'daisy::SaiHandle::Init()'],['../classdaisy_1_1_random.html#a3e4df2eab7bd06b463ca681552b17abd',1,'daisy::Random::Init()'],['../classdaisy_1_1_pcm3060.html#a40f95112173ba827d160e69215a7cde6',1,'daisy::Pcm3060::Init()'],['../classdaisy_1_1_m_a_x11300_multi_slave_spi_transport.html#a4511d39640b3cb149cf97fc5f206638c',1,'daisy::MAX11300MultiSlaveSpiTransport::Init()'],['../classdaisy_1_1_led_driver_pca9685.html#a468206d813cff0033a50e7ce613ad8cb',1,'daisy::LedDriverPca9685::Init()'],['../classdaisy_1_1_lcd_h_d44780.html#a559e0af82ce6958d0c8b7a62fd19647d',1,'daisy::LcdHD44780::Init()'],['../classdaisy_1_1_icm20948.html#a0ea987e535b4f5bcc0c0d06877ddda74',1,'daisy::Icm20948::Init()'],['../classdaisy_1_1_icm20948_spi_transport.html#aeda45856d48ca16e80df40e6eee8d5d4',1,'daisy::Icm20948SpiTransport::Init()'],['../classdaisy_1_1_icm20948_i2_c_transport.html#ab749f713a91ac603b958080205c36181',1,'daisy::Icm20948I2CTransport::Init()'],['../classdaisy_1_1_dps310.html#a8037a8a10e239c5cca75b9e6f380771f',1,'daisy::Dps310::Init()'],['../classdaisy_1_1_dps310_spi_transport.html#a66b0440313b267da0a87b98d816d02fe',1,'daisy::Dps310SpiTransport::Init()'],['../classdaisy_1_1_dps310_i2_c_transport.html#af085d9eaba116b7dc287e8925d3da9c4',1,'daisy::Dps310I2CTransport::Init()'],['../classdaisy_1_1_dot_star.html#a5c82a302c01a806ec7c0e5ba4e8b4731',1,'daisy::DotStar::Init()'],['../classdaisy_1_1_dot_star_spi_transport.html#ac39572f5fe669f1da402046be2e832f4',1,'daisy::DotStarSpiTransport::Init()'],['../classdaisy_1_1_wm8731.html#a42f8e6070918905a6aa317ed3fb20627',1,'daisy::Wm8731::Init()'],['../classdaisy_1_1_encoder.html#aebee661fcf4faf8ca2bc6550bcffee68',1,'daisy::Encoder::Init()'],['../classdaisy_1_1_ak4556.html#ac92bd71a03cb93ce380533f9775c16da',1,'daisy::Ak4556::Init()'],['../classdaisy_1_1_apds9960.html#a3f4e889772c6170099623fc62b04dce6',1,'daisy::Apds9960::Init()'],['../classdaisy_1_1_apds9960_i2_c_transport.html#a4b1d6f0db098b9f5c94575dfac6e5ca4',1,'daisy::Apds9960I2CTransport::Init()'],['../classdaisy_1_1_daisy_versio.html#ad50e0740d75a92c6c5117a2c1ec68f40',1,'daisy::DaisyVersio::Init()'],['../classdaisy_1_1_daisy_seed.html#a218cbf64aa64572a1b5bbc57fd00c895',1,'daisy::DaisySeed::Init()'],['../classdaisy_1_1_daisy_pod.html#aac199ade5be95744d134f0fa48ba929b',1,'daisy::DaisyPod::Init()'],['../classdaisy_1_1_daisy_petal.html#ad015b70ff11f86c745bf180466c67cac',1,'daisy::DaisyPetal::Init()'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a19435eb6b6785544317a436846790374',1,'daisy::patch_sm::DaisyPatchSM::Init()'],['../classdaisy_1_1_daisy_patch.html#aedb7ece87c5d7d85d68e22d142b55518',1,'daisy::DaisyPatch::Init()'],['../classdaisy_1_1_daisy_legio.html#a760bdefd4cc75e4e566987c8f8045001',1,'daisy::DaisyLegio::Init()'],['../classdaisy_1_1_daisy_field.html#a30e655b910f9e844917a82359c7f4c2f',1,'daisy::DaisyField::Init()'],['../classdaisy_1_1_mcp23017_transport.html#a973912314bf828734554ce9a61d4e450',1,'daisy::Mcp23017Transport::Init()'],['../classdaisy_1_1_gate_in.html#a965077b2d1bffa4d103b4d497e64a7b6',1,'daisy::GateIn::Init()'],['../classdaisy_1_1_oled_display.html#a20febfc6699586dcde5fff70f81b6d6c',1,'daisy::OledDisplay::Init()'],['../classdaisy_1_1_analog_control.html#a516499f0788d7405024eff550386a59e',1,'daisy::AnalogControl::Init()'],['../classdaisy_1_1_audio_handle.html#af4e61088880609884a50b830c2a50af6',1,'daisy::AudioHandle::Init(const Config &config, SaiHandle sai1, SaiHandle sai2)'],['../classdaisy_1_1_audio_handle.html#ac949d6b1ffbb916da8386afbdde5fd8f',1,'daisy::AudioHandle::Init(const Config &config, SaiHandle sai)'],['../classdaisy_1_1_tlv493d.html#ab32b6b2d1d32ce7d50f7e3210003f10b',1,'daisy::Tlv493d::Init()'],['../classdaisy_1_1_tlv493d_i2_c_transport.html#af72585ffc69c5aadefe327ea424309b0',1,'daisy::Tlv493dI2CTransport::Init()'],['../class_shift_register595.html#acc9e7d74069edd4b2711a9de01e9617c',1,'ShiftRegister595::Init()'],['../classdaisy_1_1_shift_register4021.html#a8f6d648bed2d03b56c9b833f45b077d7',1,'daisy::ShiftRegister4021::Init()'],['../class_sdram_handle.html#abe37a0af8d94b9745942385f2299792e',1,'SdramHandle::Init()'],['../classdaisy_1_1_s_s_d130x_driver.html#a47cb4fe280876881fc1f2eb7e3ae8809',1,'daisy::SSD130xDriver::Init()'],['../classdaisy_1_1_s_s_d130x4_wire_soft_spi_transport.html#ac1e762aa00be0d04972c51853b5caa33',1,'daisy::SSD130x4WireSoftSpiTransport::Init()'],['../classdaisy_1_1_mcp23_x17.html#a8887330312af7951a8a45912b6de8a82',1,'daisy::Mcp23X17::Init()'],['../classdaisy_1_1_s_s_d130x4_wire_spi_transport.html#adfdf96d17c5754ea048e74a179ead274',1,'daisy::SSD130x4WireSpiTransport::Init()'],['../classdaisy_1_1_m_a_x11300_driver.html#aa25a33ae08e18604aea0d3ab4af5a156',1,'daisy::MAX11300Driver::Init()'],['../classdaisy_1_1_mcp23017_transport.html#a5c95f1b6faa873d56861c27328720cf4',1,'daisy::Mcp23017Transport::Init()'],['../classdaisy_1_1_mcp23_x17.html#ac21c01342949be85f73eb38168c216ab',1,'daisy::Mcp23X17::Init()'],['../classdaisy_1_1_mpr121_i2_c_transport.html#a4038e5bc1ba98d6a0968f43dc5c8259b',1,'daisy::Mpr121I2CTransport::Init()'],['../classdaisy_1_1_mpr121.html#ac99982dd29c485b9af192ff20f8048fe',1,'daisy::Mpr121::Init()'],['../classdaisy_1_1_neo_pixel_i2_c_transport.html#a8c9aa0f692fbef7a313877fb4ea3d453',1,'daisy::NeoPixelI2CTransport::Init()'],['../classdaisy_1_1_neo_pixel.html#a597e94d940bb0746d15b0c1669eff2ae',1,'daisy::NeoPixel::Init()'],['../classdaisy_1_1_neo_trellis_i2_c_transport.html#a5c82812bec22d8ef70df345f7d5b853f',1,'daisy::NeoTrellisI2CTransport::Init()'],['../classdaisy_1_1_neo_trellis.html#a3b1d59ec7eb519021b9f210d68ceb376',1,'daisy::NeoTrellis::Init()'],['../classdaisy_1_1_s_s_d130x_i2_c_transport.html#aa9b9a2f7fae4b790ac84a53ba7aefd13',1,'daisy::SSD130xI2CTransport::Init()']]], ['initbipolarcv_8',['InitBipolarCv',['../classdaisy_1_1_analog_control.html#aec736f5848fc9badbec878a48a7cd7c5',1,'daisy::AnalogControl']]], ['initialized_9',['Initialized',['../classdaisy_1_1_fat_f_s_interface.html#a54f915d84ddae48e28d75573f8b0a655',1,'daisy::FatFSInterface']]], ['initmux_10',['InitMux',['../structdaisy_1_1_adc_channel_config.html#a253f14fa84c6996b5238827608bc85f2',1,'daisy::AdcChannelConfig']]], @@ -15,15 +15,16 @@ var searchData= ['insert_12',['Insert',['../classdaisy_1_1_stack_base.html#a5e8792111c7bf05b6bc6249bda302951',1,'daisy::StackBase::Insert()'],['../classdaisy_1_1_f_i_f_o_base.html#a682a813929a55d7fcc24a7aee662fef0',1,'daisy::FIFOBase::Insert()']]], ['isactive_13',['IsActive',['../classdaisy_1_1_ui_page.html#adf73666aa856dc693ea3322f945afe40',1,'daisy::UiPage']]], ['isbuttonpressed_14',['IsButtonPressed',['../classdaisy_1_1_button_monitor.html#a2bd6ee32dff40b4c583fb93d23373964',1,'daisy::ButtonMonitor']]], - ['isempty_15',['IsEmpty',['../classdaisy_1_1_rectangle.html#a975458f91d73cc015139b310e92954b8',1,'daisy::Rectangle::IsEmpty()'],['../classdaisy_1_1_f_i_f_o_base.html#af648b72bde5a8beda3d360862f4ec54b',1,'daisy::FIFOBase::IsEmpty()'],['../classdaisy_1_1_stack_base.html#ab0bd440696640c163ab14e28165454c9',1,'daisy::StackBase::IsEmpty()']]], - ['isempty_16',['isEmpty',['../classdaisy_1_1_ring_buffer.html#a36c20746c8c375782ddfb113d3ff96aa',1,'daisy::RingBuffer']]], - ['isfull_17',['IsFull',['../classdaisy_1_1_stack_base.html#aff76243c27fd8bdfb0f768d0ad1ae0ed',1,'daisy::StackBase::IsFull()'],['../classdaisy_1_1_f_i_f_o_base.html#addd7b5bd7a4e9147ec439d02dacdddad',1,'daisy::FIFOBase::IsFull()']]], + ['isempty_15',['isEmpty',['../classdaisy_1_1_ring_buffer.html#a36c20746c8c375782ddfb113d3ff96aa',1,'daisy::RingBuffer']]], + ['isempty_16',['IsEmpty',['../classdaisy_1_1_rectangle.html#a975458f91d73cc015139b310e92954b8',1,'daisy::Rectangle::IsEmpty()'],['../classdaisy_1_1_f_i_f_o_base.html#af648b72bde5a8beda3d360862f4ec54b',1,'daisy::FIFOBase::IsEmpty()'],['../classdaisy_1_1_stack_base.html#ab0bd440696640c163ab14e28165454c9',1,'daisy::StackBase::IsEmpty()']]], + ['isfull_17',['IsFull',['../classdaisy_1_1_f_i_f_o_base.html#addd7b5bd7a4e9147ec439d02dacdddad',1,'daisy::FIFOBase::IsFull()'],['../classdaisy_1_1_stack_base.html#aff76243c27fd8bdfb0f768d0ad1ae0ed',1,'daisy::StackBase::IsFull()']]], ['isfunctionbuttondown_18',['IsFunctionButtonDown',['../classdaisy_1_1_abstract_menu.html#aeff946df401f00f02eb9af1dd81801f4',1,'daisy::AbstractMenu']]], ['isinitialized_19',['IsInitialized',['../classdaisy_1_1_sai_handle.html#abf1bb17119fb207c3681d02a66e32291',1,'daisy::SaiHandle']]], - ['ismoving_20',['IsMoving',['../classdaisy_1_1_pot_monitor.html#a20c68cced121ad6151799c95be06c15e',1,'daisy::PotMonitor']]], - ['isopaque_21',['IsOpaque',['../classdaisy_1_1_ui_page.html#a2af031d1b92672e255e106168a477dad',1,'daisy::UiPage']]], - ['isqueueempty_22',['IsQueueEmpty',['../classdaisy_1_1_ui_event_queue.html#a9fe4f90f267c39d57a068ee676eae18e',1,'daisy::UiEventQueue']]], - ['isready_23',['IsReady',['../classdaisy_1_1_random.html#a6292d9bf55a0b294d427a36efb7c39a4',1,'daisy::Random']]], - ['isrecording_24',['IsRecording',['../classdaisy_1_1_wav_writer.html#a245c0a0bda80385bc3c293f301c468de',1,'daisy::WavWriter']]], - ['isvalid_25',['IsValid',['../structdaisy_1_1_pin.html#ac72ec3d38c8a42f047a3bead1b2c5ee7',1,'daisy::Pin']]] + ['islistening_20',['IsListening',['../classdaisy_1_1_uart_handler.html#a47f395c1ae6530b8b497c8fd76cb6d59',1,'daisy::UartHandler']]], + ['ismoving_21',['IsMoving',['../classdaisy_1_1_pot_monitor.html#a20c68cced121ad6151799c95be06c15e',1,'daisy::PotMonitor']]], + ['isopaque_22',['IsOpaque',['../classdaisy_1_1_ui_page.html#a2af031d1b92672e255e106168a477dad',1,'daisy::UiPage']]], + ['isqueueempty_23',['IsQueueEmpty',['../classdaisy_1_1_ui_event_queue.html#a9fe4f90f267c39d57a068ee676eae18e',1,'daisy::UiEventQueue']]], + ['isready_24',['IsReady',['../classdaisy_1_1_random.html#a6292d9bf55a0b294d427a36efb7c39a4',1,'daisy::Random']]], + ['isrecording_25',['IsRecording',['../classdaisy_1_1_wav_writer.html#a245c0a0bda80385bc3c293f301c468de',1,'daisy::WavWriter']]], + ['isvalid_26',['IsValid',['../structdaisy_1_1_pin.html#ac72ec3d38c8a42f047a3bead1b2c5ee7',1,'daisy::Pin']]] ]; diff --git a/search/functions_d.js b/search/functions_d.js index 444bdf971..1d92a2095 100644 --- a/search/functions_d.js +++ b/search/functions_d.js @@ -5,11 +5,12 @@ var searchData= ['mappedstringlistvalue_2',['MappedStringListValue',['../classdaisy_1_1_mapped_string_list_value.html#a52c9b15b2f8c0a917969a744f028efa1',1,'daisy::MappedStringListValue']]], ['max11300driver_3',['MAX11300Driver',['../classdaisy_1_1_m_a_x11300_driver.html#a02f3e91fe3a70e5b70c81acf0566ee52',1,'daisy::MAX11300Driver']]], ['midihandler_4',['MidiHandler',['../classdaisy_1_1_midi_handler.html#a7194c67c1ac71934581b37ebafb0fc0a',1,'daisy::MidiHandler']]], - ['midiuarttransport_5',['MidiUartTransport',['../classdaisy_1_1_midi_uart_transport.html#add8bebc579df1cdbe95f66660b2b412d',1,'daisy::MidiUartTransport']]], - ['midiusbtransport_6',['MidiUsbTransport',['../classdaisy_1_1_midi_usb_transport.html#a7f04168895972a3bb8d98670ca9ca6b0',1,'daisy::MidiUsbTransport::MidiUsbTransport()'],['../classdaisy_1_1_midi_usb_transport.html#ace2a362aa40470215a9c77994937352f',1,'daisy::MidiUsbTransport::MidiUsbTransport(const MidiUsbTransport &other)=default']]], - ['modifyvalue_7',['ModifyValue',['../classdaisy_1_1_abstract_menu_1_1_custom_item.html#a5e3041b957344369e785d53b0b8def40',1,'daisy::AbstractMenu::CustomItem::ModifyValue(int16_t increments, uint16_t stepsPerRevolution, bool isFunctionButtonPressed)'],['../classdaisy_1_1_abstract_menu_1_1_custom_item.html#a73315232a9ac1809623de3bd4c57aca6',1,'daisy::AbstractMenu::CustomItem::ModifyValue(float valueSliderPosition0To1, bool isFunctionButtonPressed)']]], - ['mpr121_8',['Mpr121',['../classdaisy_1_1_mpr121.html#a423dfd228ca7e1304bf449f0559cba84',1,'daisy::Mpr121']]], - ['mpr121i2ctransport_9',['Mpr121I2CTransport',['../classdaisy_1_1_mpr121_i2_c_transport.html#a38f985567ef23c8f1e03d829a6fb5aaf',1,'daisy::Mpr121I2CTransport']]], - ['multislavespihandle_10',['MultiSlaveSpiHandle',['../classdaisy_1_1_multi_slave_spi_handle.html#a04c84637b158d7f362f88ecfcf1fbdb8',1,'daisy::MultiSlaveSpiHandle::MultiSlaveSpiHandle()'],['../classdaisy_1_1_multi_slave_spi_handle.html#abb9ab2ccf9b7750d3346194e6e495c63',1,'daisy::MultiSlaveSpiHandle::MultiSlaveSpiHandle(const MultiSlaveSpiHandle &other)=delete']]], - ['mute_11',['Mute',['../classdaisy_1_1_u_i.html#a0ce9a7071de333627b2b2329b01fb45b',1,'daisy::UI']]] + ['midiparser_5',['MidiParser',['../classdaisy_1_1_midi_parser.html#a7c8613042df01c8fbd96f38618266c93',1,'daisy::MidiParser']]], + ['midiuarttransport_6',['MidiUartTransport',['../classdaisy_1_1_midi_uart_transport.html#add8bebc579df1cdbe95f66660b2b412d',1,'daisy::MidiUartTransport']]], + ['midiusbtransport_7',['MidiUsbTransport',['../classdaisy_1_1_midi_usb_transport.html#a7f04168895972a3bb8d98670ca9ca6b0',1,'daisy::MidiUsbTransport::MidiUsbTransport()'],['../classdaisy_1_1_midi_usb_transport.html#ace2a362aa40470215a9c77994937352f',1,'daisy::MidiUsbTransport::MidiUsbTransport(const MidiUsbTransport &other)=default']]], + ['modifyvalue_8',['ModifyValue',['../classdaisy_1_1_abstract_menu_1_1_custom_item.html#a5e3041b957344369e785d53b0b8def40',1,'daisy::AbstractMenu::CustomItem::ModifyValue(int16_t increments, uint16_t stepsPerRevolution, bool isFunctionButtonPressed)'],['../classdaisy_1_1_abstract_menu_1_1_custom_item.html#a73315232a9ac1809623de3bd4c57aca6',1,'daisy::AbstractMenu::CustomItem::ModifyValue(float valueSliderPosition0To1, bool isFunctionButtonPressed)']]], + ['mpr121_9',['Mpr121',['../classdaisy_1_1_mpr121.html#a423dfd228ca7e1304bf449f0559cba84',1,'daisy::Mpr121']]], + ['mpr121i2ctransport_10',['Mpr121I2CTransport',['../classdaisy_1_1_mpr121_i2_c_transport.html#a38f985567ef23c8f1e03d829a6fb5aaf',1,'daisy::Mpr121I2CTransport']]], + ['multislavespihandle_11',['MultiSlaveSpiHandle',['../classdaisy_1_1_multi_slave_spi_handle.html#a04c84637b158d7f362f88ecfcf1fbdb8',1,'daisy::MultiSlaveSpiHandle::MultiSlaveSpiHandle()'],['../classdaisy_1_1_multi_slave_spi_handle.html#abb9ab2ccf9b7750d3346194e6e495c63',1,'daisy::MultiSlaveSpiHandle::MultiSlaveSpiHandle(const MultiSlaveSpiHandle &other)=delete']]], + ['mute_12',['Mute',['../classdaisy_1_1_u_i.html#a0ce9a7071de333627b2b2329b01fb45b',1,'daisy::UI']]] ]; diff --git a/search/typedefs_1.js b/search/typedefs_1.js index eab5838a6..e783461a7 100644 --- a/search/typedefs_1.js +++ b/search/typedefs_1.js @@ -1,7 +1,8 @@ var searchData= [ ['callbackfunctionptr_0',['CallbackFunctionPtr',['../classdaisy_1_1_i2_c_handle.html#a865f3f2c45b937c4084081f807e15d7b',1,'daisy::I2CHandle::CallbackFunctionPtr'],['../classdaisy_1_1_sai_handle.html#ac7ca41a3568296357b71b6848d95c69c',1,'daisy::SaiHandle::CallbackFunctionPtr']]], - ['classactivecallback_1',['ClassActiveCallback',['../classdaisy_1_1_u_s_b_host_handle.html#a4fad5644a1e1b85f2cbfc27780f65058',1,'daisy::USBHostHandle']]], - ['clearfuncptr_2',['ClearFuncPtr',['../structdaisy_1_1_ui_canvas_descriptor.html#a86d5bbc9e9fcbb65dac28fe78a2c51ec',1,'daisy::UiCanvasDescriptor']]], - ['connectcallback_3',['ConnectCallback',['../classdaisy_1_1_u_s_b_host_handle.html#a271a5fe3869cae850c6422a964c8e005',1,'daisy::USBHostHandle']]] + ['circularrxcallbackfunctionptr_1',['CircularRxCallbackFunctionPtr',['../classdaisy_1_1_uart_handler.html#a95993666d3498111f123382022967946',1,'daisy::UartHandler']]], + ['classactivecallback_2',['ClassActiveCallback',['../classdaisy_1_1_u_s_b_host_handle.html#a4fad5644a1e1b85f2cbfc27780f65058',1,'daisy::USBHostHandle']]], + ['clearfuncptr_3',['ClearFuncPtr',['../structdaisy_1_1_ui_canvas_descriptor.html#a86d5bbc9e9fcbb65dac28fe78a2c51ec',1,'daisy::UiCanvasDescriptor']]], + ['connectcallback_4',['ConnectCallback',['../classdaisy_1_1_u_s_b_host_handle.html#a271a5fe3869cae850c6422a964c8e005',1,'daisy::USBHostHandle']]] ]; diff --git a/search/typedefs_6.js b/search/typedefs_6.js index 2b07dcbae..5de600972 100644 --- a/search/typedefs_6.js +++ b/search/typedefs_6.js @@ -2,7 +2,8 @@ var searchData= [ ['max11300_0',['MAX11300',['../group___m_a_x11300.html#gab0d61b51c537d727e16e6d61a114a91a',1,'daisy']]], ['mcp23017_1',['Mcp23017',['../namespacedaisy.html#a3f595bc253392d5e44b18fd5426577ad',1,'daisy']]], - ['midiuarthandler_2',['MidiUartHandler',['../group__midi.html#gaaa674dd8cc356904785b384ed493b201',1,'daisy']]], - ['midiusbhandler_3',['MidiUsbHandler',['../group__midi.html#gaae7397a71c41654e7d4236b47185ced1',1,'daisy']]], - ['mpr121i2c_4',['Mpr121I2C',['../group__external.html#gadff605cfc4e7944ed1eb8b5bc68cf4b8',1,'daisy']]] + ['midirxparsecallback_2',['MidiRxParseCallback',['../classdaisy_1_1_midi_uart_transport.html#a7fcae1da16a65ff64e023942843ceffa',1,'daisy::MidiUartTransport::MidiRxParseCallback'],['../classdaisy_1_1_midi_usb_transport.html#ad4ea4fdde06e5e46f5f1054a878558aa',1,'daisy::MidiUsbTransport::MidiRxParseCallback']]], + ['midiuarthandler_3',['MidiUartHandler',['../group__midi.html#gaaa674dd8cc356904785b384ed493b201',1,'daisy']]], + ['midiusbhandler_4',['MidiUsbHandler',['../group__midi.html#gaae7397a71c41654e7d4236b47185ced1',1,'daisy']]], + ['mpr121i2c_5',['Mpr121I2C',['../group__external.html#gadff605cfc4e7944ed1eb8b5bc68cf4b8',1,'daisy']]] ]; diff --git a/search/variables_10.js b/search/variables_10.js index 69ec412aa..0e8fd8bd1 100644 --- a/search/variables_10.js +++ b/search/variables_10.js @@ -5,12 +5,13 @@ var searchData= ['regmasks_2',['RegMasks',['../classdaisy_1_1_tlv493d.html#a62c6342362ff4c6bba74c7a186771244',1,'daisy::Tlv493d']]], ['relcardadd_3',['RelCardAdd',['../struct_d_s_y___s_d___card_info_type_def.html#a5c530fb4ff9a3032125d75a44e9b0a0a',1,'DSY_SD_CardInfoTypeDef']]], ['release_5fthreshold_4',['release_threshold',['../structdaisy_1_1_mpr121_1_1_config.html#a0c336f8c4c4d0ce11dfcc442ae1297a8',1,'daisy::Mpr121::Config']]], - ['reset_5',['reset',['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#af882736a325872cbb3814e8b25805742',1,'daisy::SSD130x4WireSoftSpiTransport::Config::reset'],['../structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a3040b9e73290c3c0d562169b5f630c0e',1,'daisy::SSD130x4WireSpiTransport::Config::reset']]], + ['reset_5',['reset',['../structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a3040b9e73290c3c0d562169b5f630c0e',1,'daisy::SSD130x4WireSpiTransport::Config::reset'],['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#af882736a325872cbb3814e8b25805742',1,'daisy::SSD130x4WireSoftSpiTransport::Config::reset']]], ['rightbttnid_6',['rightBttnId',['../structdaisy_1_1_u_i_1_1_special_control_ids.html#a8a771125e84075486d861414aec5bdb5',1,'daisy::UI::SpecialControlIds']]], ['ring_5fled_7',['ring_led',['../classdaisy_1_1_daisy_petal.html#a24abaac2327c0057f99b5d5a4f15bd5a',1,'daisy::DaisyPetal']]], ['roffset_8',['rOffset',['../classdaisy_1_1_neo_pixel.html#a5dc6778be3278c19b0c3175fed30d988',1,'daisy::NeoPixel']]], ['rs_9',['rs',['../structdaisy_1_1_lcd_h_d44780_1_1_config.html#a2c6c623ffd463f0de93f2eb6706cffd3',1,'daisy::LcdHD44780::Config']]], ['rw_10',['rw',['../structdaisy_1_1_tlv493d_1_1_reg_mask__t.html#a3914e04c88276908f21fed1db9b7e4fa',1,'daisy::Tlv493d::RegMask_t']]], ['rx_11',['rx',['../structdaisy_1_1_midi_uart_transport_1_1_config.html#a84c3f711773c994ae22fbb3969573a11',1,'daisy::MidiUartTransport::Config::rx'],['../structdaisy_1_1_uart_handler_1_1_config.html#adb318e26f13636e1bee740fa47497392',1,'daisy::UartHandler::Config::rx']]], - ['rx_5fbuffer_12',['rx_buffer',['../structdaisy_1_1_m_a_x11300_types_1_1_dma_buffer.html#abdc1eea126a4dca4ecc83c41ed988758',1,'daisy::MAX11300Types::DmaBuffer']]] + ['rx_5fbuffer_12',['rx_buffer',['../structdaisy_1_1_m_a_x11300_types_1_1_dma_buffer.html#abdc1eea126a4dca4ecc83c41ed988758',1,'daisy::MAX11300Types::DmaBuffer::rx_buffer'],['../structdaisy_1_1_midi_uart_transport_1_1_config.html#aef5688ab3707e03afb90a53356386d6c',1,'daisy::MidiUartTransport::Config::rx_buffer']]], + ['rx_5fbuffer_5fsize_13',['rx_buffer_size',['../structdaisy_1_1_midi_uart_transport_1_1_config.html#ac9c46f68be9880b9f0479f8162f77007',1,'daisy::MidiUartTransport::Config']]] ]; diff --git a/search/variables_11.js b/search/variables_11.js index c58546a2d..a29bf779b 100644 --- a/search/variables_11.js +++ b/search/variables_11.js @@ -1,41 +1,40 @@ var searchData= [ ['sa_0',['sa',['../structdaisy_1_1_sai_handle_1_1_config.html#aec46ca01070e5cb40c457f7ba3e7b871',1,'daisy::SaiHandle::Config']]], - ['samplerate_1',['samplerate',['../structdaisy_1_1_audio_handle_1_1_config.html#a744d708032c448f1eec1a78a9a45e7c6',1,'daisy::AudioHandle::Config']]], - ['samplerate_2',['SampleRate',['../structdaisy_1_1_w_a_v___format_type_def.html#af94f78ad6e950a2084e143fdc4b4ba04',1,'daisy::WAV_FormatTypeDef']]], - ['samplerate_3',['samplerate',['../structdaisy_1_1_wav_writer_1_1_config.html#a143f2278359597869a0de80cc8edba86',1,'daisy::WavWriter::Config']]], - ['sb_4',['sb',['../structdaisy_1_1_sai_handle_1_1_config.html#a8fdd5be3f876f377d45c30baa49f41e2',1,'daisy::SaiHandle::Config']]], - ['sc_5ftype_5',['sc_type',['../structdaisy_1_1_midi_event.html#a8f58f94c7adcb1974372ce1379958b76',1,'daisy::MidiEvent']]], - ['sck_6',['sck',['../structdaisy_1_1_sai_handle_1_1_config.html#a1c687b656fe1214692da9386cad76d42',1,'daisy::SaiHandle::Config']]], - ['scl_7',['scl',['../structdaisy_1_1_i2_c_handle_1_1_config.html#a168960729dc107c030c3a7cfe5c4b138',1,'daisy::I2CHandle::Config::scl'],['../structdaisy_1_1_tlv493d_i2_c_transport_1_1_config.html#a2263b3d6675048f9b943dddf6d329e0d',1,'daisy::Tlv493dI2CTransport::Config::scl'],['../structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#acec420c950ea14c1fe0ae358e7578be3',1,'daisy::NeoTrellisI2CTransport::Config::scl'],['../structdaisy_1_1_neo_pixel_i2_c_transport_1_1_config.html#a805c5ff2daee5bf272b97cb202ddba2c',1,'daisy::NeoPixelI2CTransport::Config::scl'],['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html#a0d7c2c2c6443ba8bdb5dbbd1fd390289',1,'daisy::Mpr121I2CTransport::Config::scl'],['../structdaisy_1_1_icm20948_i2_c_transport_1_1_config.html#adcf7e6dbe01e4e5852fb90f6355d18c2',1,'daisy::Icm20948I2CTransport::Config::scl'],['../structdaisy_1_1_dps310_i2_c_transport_1_1_config.html#a2c155bec51ecf377f1ca58d5ee4d00be',1,'daisy::Dps310I2CTransport::Config::scl'],['../structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a19aca0bbb0d3386d5808506c6d8e0743',1,'daisy::Apds9960I2CTransport::Config::scl']]], - ['sclk_8',['sclk',['../structdaisy_1_1_dps310_spi_transport_1_1_config.html#a61a43e53da6addbc3c2ce5f93c26f61f',1,'daisy::Dps310SpiTransport::Config::sclk'],['../structdaisy_1_1_icm20948_spi_transport_1_1_config.html#a22c73f2afaf0943392a63cf4e6e0d07c',1,'daisy::Icm20948SpiTransport::Config::sclk'],['../structdaisy_1_1_m_a_x11300_multi_slave_spi_transport_1_1_config_1_1_pin_config.html#ae430b77c7c2b347299811a30bde18653',1,'daisy::MAX11300MultiSlaveSpiTransport::Config::PinConfig::sclk'],['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a54c84e1f05573803c9196b54ec89c897',1,'daisy::SSD130x4WireSoftSpiTransport::Config::sclk'],['../structdaisy_1_1_spi_handle_1_1_config.html#a2f789b2a42c5a05c271b01e735aebcde',1,'daisy::SpiHandle::Config::sclk'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#a0490cabfbea30e846bf7ce04ca80dc8c',1,'daisy::MultiSlaveSpiHandle::Config::sclk']]], - ['sclk_5fdelay_9',['sclk_delay',['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a21662ebfa665bc9c4e8e8c73278de342',1,'daisy::SSD130x4WireSoftSpiTransport::Config']]], - ['screensaveron_10',['screenSaverOn',['../structdaisy_1_1_ui_canvas_descriptor.html#a55b3a4dbe2ee58537b098ce50bae6c93',1,'daisy::UiCanvasDescriptor']]], - ['screensavertimeout_11',['screenSaverTimeOut',['../structdaisy_1_1_ui_canvas_descriptor.html#a467cc6b1c0e64d27a392c65ac977abb3',1,'daisy::UiCanvasDescriptor']]], - ['sd_5fdriver_12',['SD_Driver',['../sd__diskio_8h.html#a1a12762eb7b74c246045197fa41f1296',1,'sd_diskio.h']]], - ['sda_13',['sda',['../structdaisy_1_1_icm20948_i2_c_transport_1_1_config.html#aa0e03d9fa57e9c8f1e6015db2c65efa4',1,'daisy::Icm20948I2CTransport::Config::sda'],['../structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a776e12358363059e096dd614fa9bb4d6',1,'daisy::Apds9960I2CTransport::Config::sda'],['../structdaisy_1_1_i2_c_handle_1_1_config.html#a8d0a82df1f49113e5e4e2aff071e16e3',1,'daisy::I2CHandle::Config::sda'],['../structdaisy_1_1_tlv493d_i2_c_transport_1_1_config.html#a6e762e3e996721f300f002344753f2a2',1,'daisy::Tlv493dI2CTransport::Config::sda'],['../structdaisy_1_1_neo_pixel_i2_c_transport_1_1_config.html#a1ed8c7da7c5796171a6b1fbac06eabd9',1,'daisy::NeoPixelI2CTransport::Config::sda'],['../structdaisy_1_1_dps310_i2_c_transport_1_1_config.html#acb5ed659e3fc6eafadbad73a3b42d438',1,'daisy::Dps310I2CTransport::Config::sda'],['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html#a0276e08101dcc3c65153367dba880010',1,'daisy::Mpr121I2CTransport::Config::sda'],['../structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a65146322b1ea8590e25abdfcd2f8b159',1,'daisy::NeoTrellisI2CTransport::Config::sda']]], - ['sdram_14',['sdram',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a898f9882aa60b6f16336fd613e1653d1',1,'daisy::patch_sm::DaisyPatchSM']]], - ['sdram_5fhandle_15',['sdram_handle',['../classdaisy_1_1_daisy_seed.html#a48b3da45f3fda4a6960cc15f427daa96',1,'daisy::DaisySeed']]], - ['seed_16',['seed',['../classdaisy_1_1_daisy_legio.html#ad6d6cadb3ea1ca30e4a0020575225b09',1,'daisy::DaisyLegio::seed'],['../classdaisy_1_1_daisy_versio.html#ad7fb38b8d273231caa2d158db39c82da',1,'daisy::DaisyVersio::seed'],['../classdaisy_1_1_daisy_pod.html#a75907b96ea78262bf52dd7b565136f58',1,'daisy::DaisyPod::seed'],['../classdaisy_1_1_daisy_patch.html#a4705ca24e5ebc4d8add7d83232162fd7',1,'daisy::DaisyPatch::seed'],['../classdaisy_1_1_daisy_field.html#a3f51b16d7d9d50f8f906e04eac8cc0bf',1,'daisy::DaisyField::seed'],['../classdaisy_1_1_daisy_petal.html#a2ef75f14bf008985bf6635e9ce87106a',1,'daisy::DaisyPetal::seed']]], - ['selecteditemidx_5f_17',['selectedItemIdx_',['../classdaisy_1_1_abstract_menu.html#a452a319456f718cc729207ce803fe4a4',1,'daisy::AbstractMenu']]], - ['shift_18',['shift',['../structdaisy_1_1_tlv493d_1_1_reg_mask__t.html#a2a4e889d529ac949c802f37913911c27',1,'daisy::Tlv493d::RegMask_t']]], - ['size_5f_19',['size_',['../classdaisy_1_1_fixed_cap_str_base.html#aff6f8a265b888819509106fcee39c4a2',1,'daisy::FixedCapStrBase']]], - ['skip_5fclocks_20',['skip_clocks',['../structdaisy_1_1_system_1_1_config.html#aaf361be5637d24e6042949679305dd11',1,'daisy::System::Config']]], - ['song_21',['song',['../structdaisy_1_1_song_select_event.html#ab8348fcb912c6ba63200a15eb0386975',1,'daisy::SongSelectEvent']]], - ['speed_22',['speed',['../structdaisy_1_1_icm20948_i2_c_transport_1_1_config.html#a6023229b2ec0f69bcc4386e837125b0d',1,'daisy::Icm20948I2CTransport::Config::speed'],['../structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a33d3e4f8290feaeafaf6129817623b88',1,'daisy::Apds9960I2CTransport::Config::speed'],['../structdaisy_1_1_sdmmc_handler_1_1_config.html#a6daf591d4a6e9f9c064f2c1f5a9a098f',1,'daisy::SdmmcHandler::Config::speed'],['../structdaisy_1_1_i2_c_handle_1_1_config.html#a7795ab9b3b85bd2f51950b6985a31b97',1,'daisy::I2CHandle::Config::speed'],['../structdaisy_1_1_g_p_i_o_1_1_config.html#a1fa17cb5a2f58bf0be3272ef9511aaf3',1,'daisy::GPIO::Config::speed'],['../structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a58eb60473ecc33d01fa04720d47bc275',1,'daisy::NeoTrellisI2CTransport::Config::speed'],['../structdaisy_1_1_dps310_i2_c_transport_1_1_config.html#a83d3b69cfb0b8a9371e6498e493984d8',1,'daisy::Dps310I2CTransport::Config::speed'],['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html#a74c4e8b11ada7fa42c0481d7aab53df7',1,'daisy::Mpr121I2CTransport::Config::speed'],['../structdaisy_1_1_neo_pixel_i2_c_transport_1_1_config.html#a87e19b1180c6450aaab7cfc383c67d72',1,'daisy::NeoPixelI2CTransport::Config::speed'],['../structdaisy_1_1_tlv493d_i2_c_transport_1_1_config.html#a42bef4f93adfee472ee2d65f595dd598',1,'daisy::Tlv493dI2CTransport::Config::speed']]], - ['speed_5f_23',['speed_',['../structdaisy_1_1_adc_channel_config.html#a93bf7aebe5faa56c19d2254b90e6c83b',1,'daisy::AdcChannelConfig']]], - ['spi_5fconfig_24',['spi_config',['../structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a2725b473c07c6bf9e8b57a0a810799c1',1,'daisy::SSD130x4WireSpiTransport::Config']]], - ['sr_25',['sr',['../structdaisy_1_1_sai_handle_1_1_config.html#a05f5f92b5f15f31c8ffef09403412370',1,'daisy::SaiHandle::Config']]], - ['srt_5ftype_26',['srt_type',['../structdaisy_1_1_midi_event.html#a6981641c0057f45e3a8556a55948b9fc',1,'daisy::MidiEvent']]], - ['state_27',['STATE',['../uniondaisy_1_1_neo_trellis_1_1key_state.html#a0e5950baf19bbe6ec35f5354a9ae02e1',1,'daisy::NeoTrellis::keyState']]], - ['stopbits_28',['stopbits',['../structdaisy_1_1_uart_handler_1_1_config.html#a490845e58271053432b93ec8cc56798e',1,'daisy::UartHandler::Config']]], - ['subchunk1id_29',['SubChunk1ID',['../structdaisy_1_1_w_a_v___format_type_def.html#a027b8307b27f1648d55fbcc9be8fa02f',1,'daisy::WAV_FormatTypeDef']]], - ['subchunk1size_30',['SubChunk1Size',['../structdaisy_1_1_w_a_v___format_type_def.html#a3f00bebc16e12c569d7a30d4d0da5abc',1,'daisy::WAV_FormatTypeDef']]], - ['subchunk2id_31',['SubChunk2ID',['../structdaisy_1_1_w_a_v___format_type_def.html#ae31021692b18b35a7f33e9e5e8d0a3f1',1,'daisy::WAV_FormatTypeDef']]], - ['subchunk2size_32',['SubCHunk2Size',['../structdaisy_1_1_w_a_v___format_type_def.html#a93968350c8f1abcd287e79ded8b6a81d',1,'daisy::WAV_FormatTypeDef']]], - ['sw_33',['sw',['../classdaisy_1_1_daisy_field.html#ac57dd57a3cbf308ae2215ba8f4134e8f',1,'daisy::DaisyField::sw'],['../classdaisy_1_1_daisy_legio.html#a5e379882fca42288ccc90e4c3f98cf43',1,'daisy::DaisyLegio::sw'],['../classdaisy_1_1_daisy_versio.html#aa40cf7681aed764ecf3529b3573f0a25',1,'daisy::DaisyVersio::sw']]], - ['switches_34',['switches',['../classdaisy_1_1_daisy_petal.html#a4c23c5086d0620b98c2d4a86fde53af2',1,'daisy::DaisyPetal']]], - ['sysex_5fdata_35',['sysex_data',['../structdaisy_1_1_midi_event.html#a3832d8ac412e42359eff562b56362cbb',1,'daisy::MidiEvent']]], - ['sysex_5fmessage_5flen_36',['sysex_message_len',['../structdaisy_1_1_midi_event.html#a63fe8f48ba2e932b407a8fb4d74f8cc1',1,'daisy::MidiEvent']]], - ['system_37',['system',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#aee9989e96b489f7726676140ac0b9c26',1,'daisy::patch_sm::DaisyPatchSM::system'],['../classdaisy_1_1_daisy_seed.html#aa47f39a45d5cda87a428853a92c42f18',1,'daisy::DaisySeed::system']]] + ['samplerate_1',['SampleRate',['../structdaisy_1_1_w_a_v___format_type_def.html#af94f78ad6e950a2084e143fdc4b4ba04',1,'daisy::WAV_FormatTypeDef']]], + ['samplerate_2',['samplerate',['../structdaisy_1_1_wav_writer_1_1_config.html#a143f2278359597869a0de80cc8edba86',1,'daisy::WavWriter::Config::samplerate'],['../structdaisy_1_1_audio_handle_1_1_config.html#a744d708032c448f1eec1a78a9a45e7c6',1,'daisy::AudioHandle::Config::samplerate']]], + ['sb_3',['sb',['../structdaisy_1_1_sai_handle_1_1_config.html#a8fdd5be3f876f377d45c30baa49f41e2',1,'daisy::SaiHandle::Config']]], + ['sc_5ftype_4',['sc_type',['../structdaisy_1_1_midi_event.html#a8f58f94c7adcb1974372ce1379958b76',1,'daisy::MidiEvent']]], + ['sck_5',['sck',['../structdaisy_1_1_sai_handle_1_1_config.html#a1c687b656fe1214692da9386cad76d42',1,'daisy::SaiHandle::Config']]], + ['scl_6',['scl',['../structdaisy_1_1_i2_c_handle_1_1_config.html#a168960729dc107c030c3a7cfe5c4b138',1,'daisy::I2CHandle::Config::scl'],['../structdaisy_1_1_tlv493d_i2_c_transport_1_1_config.html#a2263b3d6675048f9b943dddf6d329e0d',1,'daisy::Tlv493dI2CTransport::Config::scl'],['../structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#acec420c950ea14c1fe0ae358e7578be3',1,'daisy::NeoTrellisI2CTransport::Config::scl'],['../structdaisy_1_1_neo_pixel_i2_c_transport_1_1_config.html#a805c5ff2daee5bf272b97cb202ddba2c',1,'daisy::NeoPixelI2CTransport::Config::scl'],['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html#a0d7c2c2c6443ba8bdb5dbbd1fd390289',1,'daisy::Mpr121I2CTransport::Config::scl'],['../structdaisy_1_1_icm20948_i2_c_transport_1_1_config.html#adcf7e6dbe01e4e5852fb90f6355d18c2',1,'daisy::Icm20948I2CTransport::Config::scl'],['../structdaisy_1_1_dps310_i2_c_transport_1_1_config.html#a2c155bec51ecf377f1ca58d5ee4d00be',1,'daisy::Dps310I2CTransport::Config::scl'],['../structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a19aca0bbb0d3386d5808506c6d8e0743',1,'daisy::Apds9960I2CTransport::Config::scl']]], + ['sclk_7',['sclk',['../structdaisy_1_1_dps310_spi_transport_1_1_config.html#a61a43e53da6addbc3c2ce5f93c26f61f',1,'daisy::Dps310SpiTransport::Config::sclk'],['../structdaisy_1_1_icm20948_spi_transport_1_1_config.html#a22c73f2afaf0943392a63cf4e6e0d07c',1,'daisy::Icm20948SpiTransport::Config::sclk'],['../structdaisy_1_1_m_a_x11300_multi_slave_spi_transport_1_1_config_1_1_pin_config.html#ae430b77c7c2b347299811a30bde18653',1,'daisy::MAX11300MultiSlaveSpiTransport::Config::PinConfig::sclk'],['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a54c84e1f05573803c9196b54ec89c897',1,'daisy::SSD130x4WireSoftSpiTransport::Config::sclk'],['../structdaisy_1_1_spi_handle_1_1_config.html#a2f789b2a42c5a05c271b01e735aebcde',1,'daisy::SpiHandle::Config::sclk'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#a0490cabfbea30e846bf7ce04ca80dc8c',1,'daisy::MultiSlaveSpiHandle::Config::sclk']]], + ['sclk_5fdelay_8',['sclk_delay',['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a21662ebfa665bc9c4e8e8c73278de342',1,'daisy::SSD130x4WireSoftSpiTransport::Config']]], + ['screensaveron_9',['screenSaverOn',['../structdaisy_1_1_ui_canvas_descriptor.html#a55b3a4dbe2ee58537b098ce50bae6c93',1,'daisy::UiCanvasDescriptor']]], + ['screensavertimeout_10',['screenSaverTimeOut',['../structdaisy_1_1_ui_canvas_descriptor.html#a467cc6b1c0e64d27a392c65ac977abb3',1,'daisy::UiCanvasDescriptor']]], + ['sd_5fdriver_11',['SD_Driver',['../sd__diskio_8h.html#a1a12762eb7b74c246045197fa41f1296',1,'sd_diskio.h']]], + ['sda_12',['sda',['../structdaisy_1_1_icm20948_i2_c_transport_1_1_config.html#aa0e03d9fa57e9c8f1e6015db2c65efa4',1,'daisy::Icm20948I2CTransport::Config::sda'],['../structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a776e12358363059e096dd614fa9bb4d6',1,'daisy::Apds9960I2CTransport::Config::sda'],['../structdaisy_1_1_i2_c_handle_1_1_config.html#a8d0a82df1f49113e5e4e2aff071e16e3',1,'daisy::I2CHandle::Config::sda'],['../structdaisy_1_1_tlv493d_i2_c_transport_1_1_config.html#a6e762e3e996721f300f002344753f2a2',1,'daisy::Tlv493dI2CTransport::Config::sda'],['../structdaisy_1_1_neo_pixel_i2_c_transport_1_1_config.html#a1ed8c7da7c5796171a6b1fbac06eabd9',1,'daisy::NeoPixelI2CTransport::Config::sda'],['../structdaisy_1_1_dps310_i2_c_transport_1_1_config.html#acb5ed659e3fc6eafadbad73a3b42d438',1,'daisy::Dps310I2CTransport::Config::sda'],['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html#a0276e08101dcc3c65153367dba880010',1,'daisy::Mpr121I2CTransport::Config::sda'],['../structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a65146322b1ea8590e25abdfcd2f8b159',1,'daisy::NeoTrellisI2CTransport::Config::sda']]], + ['sdram_13',['sdram',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a898f9882aa60b6f16336fd613e1653d1',1,'daisy::patch_sm::DaisyPatchSM']]], + ['sdram_5fhandle_14',['sdram_handle',['../classdaisy_1_1_daisy_seed.html#a48b3da45f3fda4a6960cc15f427daa96',1,'daisy::DaisySeed']]], + ['seed_15',['seed',['../classdaisy_1_1_daisy_legio.html#ad6d6cadb3ea1ca30e4a0020575225b09',1,'daisy::DaisyLegio::seed'],['../classdaisy_1_1_daisy_versio.html#ad7fb38b8d273231caa2d158db39c82da',1,'daisy::DaisyVersio::seed'],['../classdaisy_1_1_daisy_pod.html#a75907b96ea78262bf52dd7b565136f58',1,'daisy::DaisyPod::seed'],['../classdaisy_1_1_daisy_patch.html#a4705ca24e5ebc4d8add7d83232162fd7',1,'daisy::DaisyPatch::seed'],['../classdaisy_1_1_daisy_field.html#a3f51b16d7d9d50f8f906e04eac8cc0bf',1,'daisy::DaisyField::seed'],['../classdaisy_1_1_daisy_petal.html#a2ef75f14bf008985bf6635e9ce87106a',1,'daisy::DaisyPetal::seed']]], + ['selecteditemidx_5f_16',['selectedItemIdx_',['../classdaisy_1_1_abstract_menu.html#a452a319456f718cc729207ce803fe4a4',1,'daisy::AbstractMenu']]], + ['shift_17',['shift',['../structdaisy_1_1_tlv493d_1_1_reg_mask__t.html#a2a4e889d529ac949c802f37913911c27',1,'daisy::Tlv493d::RegMask_t']]], + ['size_5f_18',['size_',['../classdaisy_1_1_fixed_cap_str_base.html#aff6f8a265b888819509106fcee39c4a2',1,'daisy::FixedCapStrBase']]], + ['skip_5fclocks_19',['skip_clocks',['../structdaisy_1_1_system_1_1_config.html#aaf361be5637d24e6042949679305dd11',1,'daisy::System::Config']]], + ['song_20',['song',['../structdaisy_1_1_song_select_event.html#ab8348fcb912c6ba63200a15eb0386975',1,'daisy::SongSelectEvent']]], + ['speed_21',['speed',['../structdaisy_1_1_icm20948_i2_c_transport_1_1_config.html#a6023229b2ec0f69bcc4386e837125b0d',1,'daisy::Icm20948I2CTransport::Config::speed'],['../structdaisy_1_1_apds9960_i2_c_transport_1_1_config.html#a33d3e4f8290feaeafaf6129817623b88',1,'daisy::Apds9960I2CTransport::Config::speed'],['../structdaisy_1_1_sdmmc_handler_1_1_config.html#a6daf591d4a6e9f9c064f2c1f5a9a098f',1,'daisy::SdmmcHandler::Config::speed'],['../structdaisy_1_1_i2_c_handle_1_1_config.html#a7795ab9b3b85bd2f51950b6985a31b97',1,'daisy::I2CHandle::Config::speed'],['../structdaisy_1_1_g_p_i_o_1_1_config.html#a1fa17cb5a2f58bf0be3272ef9511aaf3',1,'daisy::GPIO::Config::speed'],['../structdaisy_1_1_neo_trellis_i2_c_transport_1_1_config.html#a58eb60473ecc33d01fa04720d47bc275',1,'daisy::NeoTrellisI2CTransport::Config::speed'],['../structdaisy_1_1_dps310_i2_c_transport_1_1_config.html#a83d3b69cfb0b8a9371e6498e493984d8',1,'daisy::Dps310I2CTransport::Config::speed'],['../structdaisy_1_1_mpr121_i2_c_transport_1_1_config.html#a74c4e8b11ada7fa42c0481d7aab53df7',1,'daisy::Mpr121I2CTransport::Config::speed'],['../structdaisy_1_1_neo_pixel_i2_c_transport_1_1_config.html#a87e19b1180c6450aaab7cfc383c67d72',1,'daisy::NeoPixelI2CTransport::Config::speed'],['../structdaisy_1_1_tlv493d_i2_c_transport_1_1_config.html#a42bef4f93adfee472ee2d65f595dd598',1,'daisy::Tlv493dI2CTransport::Config::speed']]], + ['speed_5f_22',['speed_',['../structdaisy_1_1_adc_channel_config.html#a93bf7aebe5faa56c19d2254b90e6c83b',1,'daisy::AdcChannelConfig']]], + ['spi_5fconfig_23',['spi_config',['../structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a2725b473c07c6bf9e8b57a0a810799c1',1,'daisy::SSD130x4WireSpiTransport::Config']]], + ['sr_24',['sr',['../structdaisy_1_1_sai_handle_1_1_config.html#a05f5f92b5f15f31c8ffef09403412370',1,'daisy::SaiHandle::Config']]], + ['srt_5ftype_25',['srt_type',['../structdaisy_1_1_midi_event.html#a6981641c0057f45e3a8556a55948b9fc',1,'daisy::MidiEvent']]], + ['state_26',['STATE',['../uniondaisy_1_1_neo_trellis_1_1key_state.html#a0e5950baf19bbe6ec35f5354a9ae02e1',1,'daisy::NeoTrellis::keyState']]], + ['stopbits_27',['stopbits',['../structdaisy_1_1_uart_handler_1_1_config.html#a490845e58271053432b93ec8cc56798e',1,'daisy::UartHandler::Config']]], + ['subchunk1id_28',['SubChunk1ID',['../structdaisy_1_1_w_a_v___format_type_def.html#a027b8307b27f1648d55fbcc9be8fa02f',1,'daisy::WAV_FormatTypeDef']]], + ['subchunk1size_29',['SubChunk1Size',['../structdaisy_1_1_w_a_v___format_type_def.html#a3f00bebc16e12c569d7a30d4d0da5abc',1,'daisy::WAV_FormatTypeDef']]], + ['subchunk2id_30',['SubChunk2ID',['../structdaisy_1_1_w_a_v___format_type_def.html#ae31021692b18b35a7f33e9e5e8d0a3f1',1,'daisy::WAV_FormatTypeDef']]], + ['subchunk2size_31',['SubCHunk2Size',['../structdaisy_1_1_w_a_v___format_type_def.html#a93968350c8f1abcd287e79ded8b6a81d',1,'daisy::WAV_FormatTypeDef']]], + ['sw_32',['sw',['../classdaisy_1_1_daisy_field.html#ac57dd57a3cbf308ae2215ba8f4134e8f',1,'daisy::DaisyField::sw'],['../classdaisy_1_1_daisy_legio.html#a5e379882fca42288ccc90e4c3f98cf43',1,'daisy::DaisyLegio::sw'],['../classdaisy_1_1_daisy_versio.html#aa40cf7681aed764ecf3529b3573f0a25',1,'daisy::DaisyVersio::sw']]], + ['switches_33',['switches',['../classdaisy_1_1_daisy_petal.html#a4c23c5086d0620b98c2d4a86fde53af2',1,'daisy::DaisyPetal']]], + ['sysex_5fdata_34',['sysex_data',['../structdaisy_1_1_midi_event.html#a7a51f09a3214731e5c02b6bf72985ac9',1,'daisy::MidiEvent']]], + ['sysex_5fmessage_5flen_35',['sysex_message_len',['../structdaisy_1_1_midi_event.html#a63fe8f48ba2e932b407a8fb4d74f8cc1',1,'daisy::MidiEvent']]], + ['system_36',['system',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#aee9989e96b489f7726676140ac0b9c26',1,'daisy::patch_sm::DaisyPatchSM::system'],['../classdaisy_1_1_daisy_seed.html#aa47f39a45d5cda87a428853a92c42f18',1,'daisy::DaisySeed::system']]] ]; diff --git a/search/variables_3.js b/search/variables_3.js index c11f7ef6c..0022f16b5 100644 --- a/search/variables_3.js +++ b/search/variables_3.js @@ -38,7 +38,7 @@ var searchData= ['d8_35',['D8',['../namespacedaisy_1_1seed.html#a927afe3a2e59951fb2736005e1338a7d',1,'daisy::seed::D8'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a16006e018bd72399abcf5fa8cad52c93',1,'daisy::patch_sm::DaisyPatchSM::D8']]], ['d9_36',['D9',['../namespacedaisy_1_1seed.html#a04f5e37bbf8cd986dbb02b78ed7220ff',1,'daisy::seed::D9'],['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#ac855ae2ae385231433a7acdec95b7d4b',1,'daisy::patch_sm::DaisyPatchSM::D9']]], ['dac_37',['dac',['../classdaisy_1_1patch__sm_1_1_daisy_patch_s_m.html#a8edc6e6381df08552e3894c887d79b4e',1,'daisy::patch_sm::DaisyPatchSM::dac'],['../classdaisy_1_1_daisy_seed.html#a7455ff1229e1e6d47bd635e92f17142a',1,'daisy::DaisySeed::dac']]], - ['data_38',['data',['../structdaisy_1_1_shift_register4021_1_1_config.html#a72204442078e6c1cc46406ee69ca4c6b',1,'daisy::ShiftRegister4021::Config::data'],['../structdaisy_1_1_system_exclusive_event.html#a784689ef707c6a80e2b90b7996887e9b',1,'daisy::SystemExclusiveEvent::data'],['../structdaisy_1_1_midi_event.html#acec5e71c5a91871bdeb46f6e39125670',1,'daisy::MidiEvent::data'],['../struct_font_def.html#a864722845b4def15a6c53bdc4e94a24a',1,'FontDef::data']]], + ['data_38',['data',['../structdaisy_1_1_shift_register4021_1_1_config.html#a72204442078e6c1cc46406ee69ca4c6b',1,'daisy::ShiftRegister4021::Config::data'],['../structdaisy_1_1_system_exclusive_event.html#ab93fc459d6ccd356113d077f67e08109',1,'daisy::SystemExclusiveEvent::data'],['../structdaisy_1_1_midi_event.html#acec5e71c5a91871bdeb46f6e39125670',1,'daisy::MidiEvent::data'],['../struct_font_def.html#a864722845b4def15a6c53bdc4e94a24a',1,'FontDef::data']]], ['data_5fpin_39',['data_pin',['../structdaisy_1_1_dot_star_spi_transport_1_1_config.html#a5d4de04e658aeb9c6c8a77223ae49776',1,'daisy::DotStarSpiTransport::Config']]], ['datasize_40',['datasize',['../structdaisy_1_1_spi_handle_1_1_config.html#af67ea87634b7b76240fb970ca98f5f2f',1,'daisy::SpiHandle::Config::datasize'],['../structdaisy_1_1_multi_slave_spi_handle_1_1_config.html#af0d046026cab26489faeda2d49aaff16',1,'daisy::MultiSlaveSpiHandle::Config::datasize']]], ['dc_41',['dc',['../structdaisy_1_1_s_s_d130x4_wire_spi_transport_1_1_config.html#a0e71fcc1289ae82c2ea9cad6413d21f5',1,'daisy::SSD130x4WireSpiTransport::Config::dc'],['../structdaisy_1_1_s_s_d130x4_wire_soft_spi_transport_1_1_config.html#a9518cb4063728948abcd2e59b878692a',1,'daisy::SSD130x4WireSoftSpiTransport::Config::dc']]], diff --git a/structdaisy_1_1_midi_event-members.html b/structdaisy_1_1_midi_event-members.html index 5edb99fad..7c6b169ff 100644 --- a/structdaisy_1_1_midi_event-members.html +++ b/structdaisy_1_1_midi_event-members.html @@ -130,7 +130,7 @@ datadaisy::MidiEvent sc_typedaisy::MidiEvent srt_typedaisy::MidiEvent - sysex_datadaisy::MidiEvent + sysex_datadaisy::MidiEvent sysex_message_lendaisy::MidiEvent typedaisy::MidiEvent diff --git a/structdaisy_1_1_midi_event.html b/structdaisy_1_1_midi_event.html index 737f71889..5113bb5de 100644 --- a/structdaisy_1_1_midi_event.html +++ b/structdaisy_1_1_midi_event.html @@ -162,8 +162,8 @@   uint8_t data [2]   -uint8_t sysex_data [SYSEX_BUFFER_LEN] -  +uint8_t sysex_data [128] +  uint8_t sysex_message_len   SystemCommonType sc_type @@ -754,14 +754,14 @@

-

◆ sysex_data

+ +

◆ sysex_data

- +
uint8_t daisy::MidiEvent::sysex_data[SYSEX_BUFFER_LEN]uint8_t daisy::MidiEvent::sysex_data[128]
diff --git a/structdaisy_1_1_midi_event.js b/structdaisy_1_1_midi_event.js index fd5aeb918..0e418579a 100644 --- a/structdaisy_1_1_midi_event.js +++ b/structdaisy_1_1_midi_event.js @@ -25,7 +25,7 @@ var structdaisy_1_1_midi_event = [ "data", "structdaisy_1_1_midi_event.html#acec5e71c5a91871bdeb46f6e39125670", null ], [ "sc_type", "structdaisy_1_1_midi_event.html#a8f58f94c7adcb1974372ce1379958b76", null ], [ "srt_type", "structdaisy_1_1_midi_event.html#a6981641c0057f45e3a8556a55948b9fc", null ], - [ "sysex_data", "structdaisy_1_1_midi_event.html#a3832d8ac412e42359eff562b56362cbb", null ], + [ "sysex_data", "structdaisy_1_1_midi_event.html#a7a51f09a3214731e5c02b6bf72985ac9", null ], [ "sysex_message_len", "structdaisy_1_1_midi_event.html#a63fe8f48ba2e932b407a8fb4d74f8cc1", null ], [ "type", "structdaisy_1_1_midi_event.html#aeb9a8c018a3f54c7cafd11b6f8e63e91", null ] ]; \ No newline at end of file diff --git a/structdaisy_1_1_midi_uart_transport_1_1_config-members.html b/structdaisy_1_1_midi_uart_transport_1_1_config-members.html index 83186edef..8fe2794d7 100644 --- a/structdaisy_1_1_midi_uart_transport_1_1_config-members.html +++ b/structdaisy_1_1_midi_uart_transport_1_1_config-members.html @@ -105,9 +105,11 @@

This is the complete list of members for daisy::MidiUartTransport::Config, including all inherited members.

- + + +
Config()daisy::MidiUartTransport::Configinline
Config()daisy::MidiUartTransport::Config
periphdaisy::MidiUartTransport::Config
rxdaisy::MidiUartTransport::Config
rx_bufferdaisy::MidiUartTransport::Config
rx_buffer_sizedaisy::MidiUartTransport::Config
txdaisy::MidiUartTransport::Config
diff --git a/structdaisy_1_1_midi_uart_transport_1_1_config.html b/structdaisy_1_1_midi_uart_transport_1_1_config.html index 8e3e4451b..91638aaa9 100644 --- a/structdaisy_1_1_midi_uart_transport_1_1_config.html +++ b/structdaisy_1_1_midi_uart_transport_1_1_config.html @@ -107,6 +107,11 @@
+

Configuration structure for UART MIDI. + More...

+

Detailed Description

+

Configuration structure for UART MIDI.

+

#include <midi.h>

+ + + +

@@ -122,6 +127,10 @@

 
dsy_gpio_pin tx
 
uint8_t * rx_buffer
 
size_t rx_buffer_size
 

Constructor & Destructor Documentation

@@ -129,9 +138,6 @@

- - - - - + +
@@ -140,11 +146,6 @@

-inline -

-
daisy::MidiUartTransport::Config::Config
@@ -176,6 +177,38 @@

+ + + +

◆ rx_buffer

+ +
+
+ + + + +
uint8_t* daisy::MidiUartTransport::Config::rx_buffer
+
+

Pointer to buffer for DMA UART rx byte transfer in background.

+

By default this uses a shared buffer in DMA_BUFFER_MEM_SECTION, which can only be utilized for a single UART peripheral. To use MIDI with multiple UART peripherals, you must provide your own buffer, allocated to a DMA-capable memory section.

+ +
+
+ +

◆ rx_buffer_size

+ +
+
+ + + + +
size_t daisy::MidiUartTransport::Config::rx_buffer_size
+
+

Size in bytes of rx_buffer.

+

This size determines the maximum Rx bytes readable by the UART in the background. By default it's set to the size of the default shared rx_buffer (256 bytes). While much smaller sizes can be used, data can get missed if the buffer is too small.

+
diff --git a/structdaisy_1_1_midi_uart_transport_1_1_config.js b/structdaisy_1_1_midi_uart_transport_1_1_config.js index bee099c98..05ff68c02 100644 --- a/structdaisy_1_1_midi_uart_transport_1_1_config.js +++ b/structdaisy_1_1_midi_uart_transport_1_1_config.js @@ -3,5 +3,7 @@ var structdaisy_1_1_midi_uart_transport_1_1_config = [ "Config", "structdaisy_1_1_midi_uart_transport_1_1_config.html#acf3aaf63941621f4dc93aa42026293bf", null ], [ "periph", "structdaisy_1_1_midi_uart_transport_1_1_config.html#a7b90ff952ac1811fa126e29549482732", null ], [ "rx", "structdaisy_1_1_midi_uart_transport_1_1_config.html#a84c3f711773c994ae22fbb3969573a11", null ], + [ "rx_buffer", "structdaisy_1_1_midi_uart_transport_1_1_config.html#aef5688ab3707e03afb90a53356386d6c", null ], + [ "rx_buffer_size", "structdaisy_1_1_midi_uart_transport_1_1_config.html#ac9c46f68be9880b9f0479f8162f77007", null ], [ "tx", "structdaisy_1_1_midi_uart_transport_1_1_config.html#a1637525e57e5aa3773d32d3f619f71f0", null ] ]; \ No newline at end of file diff --git a/structdaisy_1_1_system_exclusive_event-members.html b/structdaisy_1_1_system_exclusive_event-members.html index 820a40027..415d7e1bc 100644 --- a/structdaisy_1_1_system_exclusive_event-members.html +++ b/structdaisy_1_1_system_exclusive_event-members.html @@ -105,7 +105,7 @@

This is the complete list of members for daisy::SystemExclusiveEvent, including all inherited members.

- +
datadaisy::SystemExclusiveEvent
datadaisy::SystemExclusiveEvent
lengthdaisy::SystemExclusiveEvent
diff --git a/structdaisy_1_1_system_exclusive_event.html b/structdaisy_1_1_system_exclusive_event.html index 798571442..3c3e6456b 100644 --- a/structdaisy_1_1_system_exclusive_event.html +++ b/structdaisy_1_1_system_exclusive_event.html @@ -114,18 +114,18 @@ Public Attributes
int length
 
uint8_t data [SYSEX_BUFFER_LEN]
 
uint8_t data [128]
 

Member Data Documentation

-
-

◆ data

+ +

◆ data

- +
uint8_t daisy::SystemExclusiveEvent::data[SYSEX_BUFFER_LEN]uint8_t daisy::SystemExclusiveEvent::data[128]
diff --git a/structdaisy_1_1_system_exclusive_event.js b/structdaisy_1_1_system_exclusive_event.js index 12ad38571..18a8c6c80 100644 --- a/structdaisy_1_1_system_exclusive_event.js +++ b/structdaisy_1_1_system_exclusive_event.js @@ -1,5 +1,5 @@ var structdaisy_1_1_system_exclusive_event = [ - [ "data", "structdaisy_1_1_system_exclusive_event.html#a784689ef707c6a80e2b90b7996887e9b", null ], + [ "data", "structdaisy_1_1_system_exclusive_event.html#ab93fc459d6ccd356113d077f67e08109", null ], [ "length", "structdaisy_1_1_system_exclusive_event.html#a975aabec2f3903d767b50652a877d2b0", null ] ]; \ No newline at end of file diff --git a/uart_8h_source.html b/uart_8h_source.html index 989a79b77..07b22e096 100644 --- a/uart_8h_source.html +++ b/uart_8h_source.html @@ -104,223 +104,211 @@
Go to the documentation of this file.
1/*
2TODO
-
3- UART1 defaults to DMA, add flexible config for DMA on all periphs
-
4- Transmit function improvements.
-
5- Overflow handling, etc. for Rx Queue.
-
6*/
-
7
-
8#pragma once
-
9#ifndef DSY_UART_H
-
10#define DSY_UART_H
-
11#include "daisy_core.h"
-
12
-
13
-
14namespace daisy
-
15{
- -
26{
-
27 public:
-
28 struct Config
-
29 {
-
30 enum class Peripheral
-
31 {
-
32 USART_1,
-
33 USART_2,
-
34 USART_3,
-
35 UART_4,
-
36 UART_5,
-
37 USART_6,
-
38 UART_7,
-
39 UART_8,
- -
41 };
-
42
-
43 enum class StopBits
-
44 {
- -
46 BITS_1,
- -
48 BITS_2,
-
49 };
-
50
-
51 enum class Parity
-
52 {
-
53 NONE,
-
54 EVEN,
-
55 ODD,
-
56 };
-
57
-
58 enum class Mode
-
59 {
-
60 RX,
-
61 TX,
-
62 TX_RX,
-
63 };
-
64
-
65 enum class WordLength
-
66 {
-
67 BITS_7,
-
68 BITS_8,
-
69 BITS_9,
-
70 };
-
71
-
72 struct
-
73 {
- - - - -
79 {
-
80 // user must init periph, pin_config, and mode
- - - -
84 baudrate = 4800;
-
85 // baudrate = 31250;
-
86 }
-
87
- - - - - -
93 uint32_t baudrate;
-
94 };
-
95
-
96
-
97 UartHandler() : pimpl_(nullptr) {}
-
98 UartHandler(const UartHandler& other) = default;
-
99 UartHandler& operator=(const UartHandler& other) = default;
-
100
-
102 enum class Result
-
103 {
-
104 OK,
-
105 ERR
-
106 };
-
107
-
108 enum class DmaDirection
-
109 {
-
110 RX,
-
111 TX
-
112 };
+
3- Overflow handling, etc. for Rx Queue.
+
4*/
+
5
+
6#pragma once
+
7#ifndef DSY_UART_H
+
8#define DSY_UART_H
+
9#include "daisy_core.h"
+
10
+
11
+
12namespace daisy
+
13{
+ +
24{
+
25 public:
+
26 struct Config
+
27 {
+
28 enum class Peripheral
+
29 {
+
30 USART_1,
+
31 USART_2,
+
32 USART_3,
+
33 UART_4,
+
34 UART_5,
+
35 USART_6,
+
36 UART_7,
+
37 UART_8,
+ +
39 };
+
40
+
41 enum class StopBits
+
42 {
+ +
44 BITS_1,
+ +
46 BITS_2,
+
47 };
+
48
+
49 enum class Parity
+
50 {
+
51 NONE,
+
52 EVEN,
+
53 ODD,
+
54 };
+
55
+
56 enum class Mode
+
57 {
+
58 RX,
+
59 TX,
+
60 TX_RX,
+
61 };
+
62
+
63 enum class WordLength
+
64 {
+
65 BITS_7,
+
66 BITS_8,
+
67 BITS_9,
+
68 };
+
69
+
70 struct
+
71 {
+ + + + +
77 {
+
78 // user must init periph, pin_config, and mode
+ + + +
82 baudrate = 31250;
+
83 }
+
84
+ + + + + +
90 uint32_t baudrate;
+
91 };
+
92
+
93
+
94 UartHandler() : pimpl_(nullptr) {}
+
95 UartHandler(const UartHandler& other) = default;
+
96 UartHandler& operator=(const UartHandler& other) = default;
+
97
+
99 enum class Result
+
100 {
+
101 OK,
+
102 ERR
+
103 };
+
104
+
105 enum class DmaDirection
+
106 {
+
107 RX,
+
108 TX
+
109 };
+
110
+
112 Result Init(const Config& config);
113
-
115 Result Init(const Config& config);
+
115 const Config& GetConfig() const;
116
-
118 const Config& GetConfig() const;
-
119
-
121 typedef void (*StartCallbackFunctionPtr)(void* context);
-
123 typedef void (*EndCallbackFunctionPtr)(void* context, Result result);
-
124
-
131 Result BlockingTransmit(uint8_t* buff, size_t size, uint32_t timeout = 100);
-
132
-
139 Result
-
140 BlockingReceive(uint8_t* buffer, uint16_t size, uint32_t timeout = 100);
-
141
-
152 Result DmaTransmit(uint8_t* buff,
-
153 size_t size,
- - -
156 void* callback_context);
-
157
-
168 Result DmaReceive(uint8_t* buff,
-
169 size_t size,
- - -
172 void* callback_context);
-
173
- -
176
- -
181
- +
118 typedef void (*StartCallbackFunctionPtr)(void* context);
+
120 typedef void (*EndCallbackFunctionPtr)(void* context, Result result);
+
121
+
133 typedef void (*CircularRxCallbackFunctionPtr)(uint8_t* data,
+
134 size_t size,
+
135 void* context,
+
136 Result result);
+
137
+
144 Result BlockingTransmit(uint8_t* buff, size_t size, uint32_t timeout = 100);
+
145
+
152 Result
+
153 BlockingReceive(uint8_t* buffer, uint16_t size, uint32_t timeout = 100);
+
154
+
165 Result DmaTransmit(uint8_t* buff,
+
166 size_t size,
+ + +
169 void* callback_context);
+
170
+
181 Result DmaReceive(uint8_t* buff,
+
182 size_t size,
+ + +
185 void* callback_context);
186
-
190 uint8_t PopFifo();
-
191
-
195 size_t ReadableFifo();
-
196
-
198 int PollReceive(uint8_t* buff, size_t size, uint32_t timeout);
-
199
-
201 Result PollTx(uint8_t* buff, size_t size);
-
202
- +
201 Result DmaListenStart(uint8_t* buff,
+
202 size_t size,
+ +
204 void* callback_context);
205
-
209 bool RxActive() { return true; }
-
210
- -
213
-
215 uint8_t PopRx();
-
216
-
218 size_t Readable();
-
219
-
220 class Impl;
-
222 private:
-
223 Impl* pimpl_;
-
224};
-
225
-
226extern "C"
-
227{
- -
230};
-
231
-
233} // namespace daisy
-
234
-
235#endif
-
Definition uart.h:26
-
Result DmaReceiveFifo()
-
void(* EndCallbackFunctionPtr)(void *context, Result result)
Definition uart.h:123
+ +
208
+
210 bool IsListening() const;
+
211
+ +
214
+
216 int PollReceive(uint8_t* buff, size_t size, uint32_t timeout);
+
217
+
219 Result PollTx(uint8_t* buff, size_t size);
+
220
+
221 class Impl;
+
223 private:
+
224 Impl* pimpl_;
+
225};
+
226
+
227extern "C"
+
228{
+ +
231};
+
232
+
234} // namespace daisy
+
235
+
236#endif
+
Definition uart.h:24
+
void(* EndCallbackFunctionPtr)(void *context, Result result)
Definition uart.h:120
Result BlockingTransmit(uint8_t *buff, size_t size, uint32_t timeout=100)
-
Result DmaTransmit(uint8_t *buff, size_t size, UartHandler::StartCallbackFunctionPtr start_callback, UartHandler::EndCallbackFunctionPtr end_callback, void *callback_context)
- - +
bool IsListening() const
+
Result DmaListenStart(uint8_t *buff, size_t size, CircularRxCallbackFunctionPtr cb, void *callback_context)
const Config & GetConfig() const
UartHandler(const UartHandler &other)=default
-
void(* StartCallbackFunctionPtr)(void *context)
Definition uart.h:121
- +
void(* StartCallbackFunctionPtr)(void *context)
Definition uart.h:118
Result PollTx(uint8_t *buff, size_t size)
+
void(* CircularRxCallbackFunctionPtr)(uint8_t *data, size_t size, void *context, Result result)
Definition uart.h:133
int PollReceive(uint8_t *buff, size_t size, uint32_t timeout)
Result Init(const Config &config)
Result BlockingReceive(uint8_t *buffer, uint16_t size, uint32_t timeout=100)
- -
Result
Definition uart.h:103
+
Result DmaListenStop()
+
Result
Definition uart.h:100
-
UartHandler()
Definition uart.h:97
+
UartHandler()
Definition uart.h:94
-
DmaDirection
Definition uart.h:109
+
DmaDirection
Definition uart.h:106
- -
UartHandler & operator=(const UartHandler &other)=default
-
bool RxActive()
Definition uart.h:209
Result DmaReceive(uint8_t *buff, size_t size, UartHandler::StartCallbackFunctionPtr start_callback, UartHandler::EndCallbackFunctionPtr end_callback, void *callback_context)
void dsy_uart_global_init()
Hardware defines and helpers for daisy field platform.
Definition index.h:2
-
Definition uart.h:29
-
StopBits
Definition uart.h:44
+
Definition uart.h:27
+
StopBits
Definition uart.h:42
-
Mode mode
Definition uart.h:91
-
StopBits stopbits
Definition uart.h:89
-
WordLength wordlength
Definition uart.h:92
-
Peripheral periph
Definition uart.h:88
-
Parity
Definition uart.h:52
+
Mode mode
Definition uart.h:88
+
StopBits stopbits
Definition uart.h:86
+
WordLength wordlength
Definition uart.h:89
+
Peripheral periph
Definition uart.h:85
+
Parity
Definition uart.h:50
-
Config()
Definition uart.h:78
+
Config()
Definition uart.h:76
struct daisy::UartHandler::Config::@18 pin_config
-
uint32_t baudrate
Definition uart.h:93
-
WordLength
Definition uart.h:66
+
uint32_t baudrate
Definition uart.h:90
+
WordLength
Definition uart.h:64
-
Parity parity
Definition uart.h:90
-
Peripheral
Definition uart.h:31
+
Parity parity
Definition uart.h:87
+
Peripheral
Definition uart.h:29
@@ -330,12 +318,12 @@ -
dsy_gpio_pin rx
Definition uart.h:75
-
Mode
Definition uart.h:59
+
dsy_gpio_pin rx
Definition uart.h:73
+
Mode
Definition uart.h:57
-
dsy_gpio_pin tx
Definition uart.h:74
+
dsy_gpio_pin tx
Definition uart.h:72
Definition daisy_core.h:205
diff --git a/usb__midi_8h_source.html b/usb__midi_8h_source.html index c6eb229c1..0f68a193c 100644 --- a/usb__midi_8h_source.html +++ b/usb__midi_8h_source.html @@ -115,36 +115,36 @@
15{
16 public:
-
17 // MidiUsbTransport() {}
- -
19
-
20 struct Config
-
21 {
-
22 enum Periph
-
23 {
- - -
26 };
-
27
- -
29
- -
41
- -
43 };
-
44
-
45 void Init(Config config);
-
46
-
47 void StartRx();
-
48 size_t Readable();
-
49 uint8_t Rx();
-
50 bool RxActive();
-
51 void FlushRx();
-
52 void Tx(uint8_t* buffer, size_t size);
-
53
-
54 class Impl;
-
55
-
56 MidiUsbTransport() : pimpl_(nullptr) {}
+
17 typedef void (*MidiRxParseCallback)(uint8_t* data,
+
18 size_t size,
+
19 void* context);
+
20
+
21 struct Config
+
22 {
+
23 enum Periph
+
24 {
+ + +
27 };
+
28
+ +
30
+ +
42
+ +
44 };
+
45
+
46 void Init(Config config);
+
47
+
48 void StartRx(MidiRxParseCallback callback, void* context);
+
49 bool RxActive();
+
50 void FlushRx();
+
51 void Tx(uint8_t* buffer, size_t size);
+
52
+
53 class Impl;
+
54
+
55 MidiUsbTransport() : pimpl_(nullptr) {}
+
57 MidiUsbTransport(const MidiUsbTransport& other) = default;
59
@@ -157,25 +157,24 @@
66#endif // __DSY_MIDIUSBTRANSPORT_H__
USB Transport for MIDI.
Definition usb_midi.h:15
void Init(Config config)
- - -
~MidiUsbTransport()
Definition usb_midi.h:18
-
MidiUsbTransport()
Definition usb_midi.h:56
- +
~MidiUsbTransport()
Definition usb_midi.h:56
+
MidiUsbTransport()
Definition usb_midi.h:55
void Tx(uint8_t *buffer, size_t size)
MidiUsbTransport(const MidiUsbTransport &other)=default
+
void(* MidiRxParseCallback)(uint8_t *data, size_t size, void *context)
Definition usb_midi.h:17
+
void StartRx(MidiRxParseCallback callback, void *context)
MidiUsbTransport & operator=(const MidiUsbTransport &other)=default
Hardware defines and helpers for daisy field platform.
Definition index.h:2
-
Definition usb_midi.h:21
-
Periph periph
Definition usb_midi.h:28
-
uint8_t tx_retry_count
Definition usb_midi.h:40
-
Periph
Definition usb_midi.h:23
-
@ EXTERNAL
Definition usb_midi.h:25
-
@ INTERNAL
Definition usb_midi.h:24
-
Config()
Definition usb_midi.h:42
+
Definition usb_midi.h:22
+
Periph periph
Definition usb_midi.h:29
+
uint8_t tx_retry_count
Definition usb_midi.h:41
+
Periph
Definition usb_midi.h:24
+
@ EXTERNAL
Definition usb_midi.h:26
+
@ INTERNAL
Definition usb_midi.h:25
+
Config()
Definition usb_midi.h:43