• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

src/04-Jan-2025-11790

CMakeLists.txtD04-Jan-2025192 95

README.rstD04-Jan-2025661 3724

prj.confD04-Jan-2025124 65

sample.yamlD04-Jan-2025252 1412

README.rst

1:orphan:
2
3.. _i2s_litex_example:
4
5#####################
6I2S example
7#####################
8
9Overview
10********
11
12This is a simple I2S audio transceiver example. You can plug any source of music and listen to it.
13
14Audio Format
15************
16
17The driver requires and provides Audio data with the following parameters:
18
19* 44100 kHz sample rate
20* Signed 24 bit PCM
21* Stereo
22* Little endian
23
24Building
25********
26
27.. code-block::
28
29   mkdir build && cd build
30   cmake -DBOARD=litex_vexriscv ..
31   make
32
33Known issues
34************
35
36It 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.
37