I2S with callback stream #1765
-
Hello, I2SStream codec_in_out; Should I define separated streams for in/out and how to assign the pins? auto config = codec_in_out.defaultConfig(RXTX_MODE); |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In your example you define I2S as in douplex mode: so you can read and write to it! There is an example whre I just copy the data from i2s to i2s! |
Beta Was this translation helpful? Give feedback.
In your example you define I2S as in douplex mode: so you can read and write to it!
In your logic however you only read from it: the writing part is missing!
There is an example whre I just copy the data from i2s to i2s!