FastLED 3.9.15
Loading...
Searching...
No Matches

◆ I2SCommFormat

enum class fl::audio::I2SCommFormat
strong
Enumerator
Philips 
MSB 
PCMShort 
PCMLong 
Max 

Definition at line 34 of file input.h.

34 {
35 Philips = 0X01, // I2S communication I2S Philips standard, data launch at
36 // second BCK
37 MSB = 0X02, // I2S communication MSB alignment standard, data launch at
38 // first BCK
39 PCMShort = 0x04, // PCM Short standard, also known as DSP mode. The period
40 // of synchronization signal (WS) is 1 bck cycle.
41 PCMLong = 0x0C, // PCM Long standard. The period of synchronization signal
42 // (WS) is channel_bit*bck cycles.
43 Max = 0x0F, // standard max
44};