1.. _i2s_litex_example: 2 3##################### 4I2S example 5##################### 6 7Overview 8******** 9 10This is a simple I2S audio transceiver example. You can plug any source of music and listen to it. 11 12Audio Format 13************ 14 15The driver requires and provides Audio data with the following parameters: 16 17* 44100 kHz sample rate 18* Signed 24 bit PCM 19* Stereo 20* Little endian 21 22Building 23******** 24 25.. code-block:: 26 27 mkdir build && cd build 28 cmake -DBOARD=litex_vexriscv .. 29 make 30 31Known issues 32************ 33 34It seems that after a few minutes some music delay occurs, this is because the sound driver is not able to send data as fast as it receives it. 35