i2s.rst 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. I2S
  2. ===
  3. Overview
  4. --------
  5. I2S (Inter-IC Sound) is a serial, synchronous communication protocol that is usually used for transmitting audio data between two digital audio devices.
  6. .. only:: esp32
  7. {IDF_TARGET_NAME} contains two I2S peripherals. These peripherals can be configured to input and output sample data via the I2S driver.
  8. .. only:: esp32s2
  9. {IDF_TARGET_NAME} contains one I2S peripheral. These peripherals can be configured to input and output sample data via the I2S driver.
  10. An I2S bus consists of the following lines:
  11. - Bit clock line
  12. - Channel select line
  13. - Serial data line
  14. Each I2S controller has the following features that can be configured using the I2S driver:
  15. - Operation as system master or slave
  16. - Capable of acting as transmitter or receiver
  17. - Dedicated DMA controller that allows for streaming sample data without requiring the CPU to copy each data sample
  18. Each controller can operate in half-duplex communication mode. Thus, the two controllers can be combined to establish full-duplex communication.
  19. I2S0 output can be routed directly to the digital-to-analog converter's (DAC) output channels (GPIO 25 & GPIO 26) to produce direct analog output without involving any external I2S codecs. I2S0 can also be used for transmitting PDM (Pulse-density modulation) signals.
  20. The I2S peripherals also support LCD mode for communicating data over a parallel bus, as used by some LCD displays and camera modules. LCD mode has the following operational modes:
  21. - LCD master transmitting mode
  22. - Camera slave receiving mode
  23. - ADC/DAC mode
  24. .. only:: esp32
  25. For more information, see the `ESP32 Technical Reference Manual <https://espressif.com/sites/default/files/documentation/esp32_technical_reference_manual_en.pdf#page=306>`_.
  26. .. note::
  27. For high accuracy clock applications, use the APLL_CLK clock source, which has the frequency range of 16 ~ 128 MHz. You can enable the APLL_CLK clock source by setting :cpp:member:`i2s_config_t::use_apll` to ``TRUE``.
  28. If :cpp:member:`i2s_config_t::use_apll` = ``TRUE`` and :cpp:member:`i2s_config_t::fixed_mclk` > ``0``, then the master clock output frequency for I2S will be equal to the value of :cpp:member:`i2s_config_t::fixed_mclk`, which means that the mclk frequency is provided by the user, instead of being calculated by the driver.
  29. The clock rate of the word select line, which is called audio left-right clock rate (LRCK) here, is always the divisor of the master clock output frequency and for which the following is always true: 0 < MCLK/LRCK/channels/bits_per_sample < 64.
  30. Functional Overview
  31. -------------------
  32. Installing the Driver
  33. ^^^^^^^^^^^^^^^^^^^^^
  34. Install the I2S driver by calling the function :cpp:func`i2s_driver_install` and passing the following arguments:
  35. - Port number
  36. - The structure :cpp:type:`i2s_config_t` with defined communication parameters
  37. - Event queue size and handle
  38. Configuration example:
  39. .. code-block:: c
  40. static const int i2s_num = 0; // i2s port number
  41. static const i2s_config_t i2s_config = {
  42. .mode = I2S_MODE_MASTER | I2S_MODE_TX,
  43. .sample_rate = 44100,
  44. .bits_per_sample = 16,
  45. .channel_format = I2S_CHANNEL_FMT_RIGHT_LEFT,
  46. .communication_format = I2S_COMM_FORMAT_STAND_I2S,
  47. .intr_alloc_flags = 0, // default interrupt priority
  48. .dma_buf_count = 8,
  49. .dma_buf_len = 64,
  50. .use_apll = false
  51. };
  52. i2s_driver_install(I2S_NUM, &i2s_config, 0, NULL);
  53. Setting Communication Pins
  54. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  55. Once the driver is installed, configure physical GPIO pins to which signals will be routed. For this, call the function :cpp:func`i2s_set_pin` and pass the following arguments to it:
  56. - Port number
  57. - The structure :cpp:type:`i2s_pin_config_t` defining the GPIO pin numbers to which the driver should route the BCK, WS, DATA out, and DATA in signals. If you want to keep a currently allocated pin number for a specific signal, or if this signal is unused, then pass the macro :c:macro:`I2S_PIN_NO_CHANGE`. See the example below.
  58. .. code-block:: c
  59. static const i2s_pin_config_t pin_config = {
  60. .bck_io_num = 26,
  61. .ws_io_num = 25,
  62. .data_out_num = 22,
  63. .data_in_num = I2S_PIN_NO_CHANGE
  64. };
  65. i2s_set_pin(i2s_num, &pin_config);
  66. Running I2S Communication
  67. ^^^^^^^^^^^^^^^^^^^^^^^^^
  68. To perform a transmission:
  69. - Prepare the data for sending
  70. - Call the function :cpp:func:`i2s_write` and pass the data buffer address and data length to it
  71. The function will write the data to the I2S DMA Tx buffer, and then the data will be transmitted automatically.
  72. .. code-block:: c
  73. i2s_write(I2S_NUM, samples_data, ((bits+8)/16)*SAMPLE_PER_CYCLE*4, &i2s_bytes_write, 100);
  74. To retrieve received data, use the function :cpp:func:`i2s_read`. It will retrieve the data from the I2S DMA Rx buffer, once the data is received by the I2S controller.
  75. You can temporarily stop the I2S driver by calling the function :cpp:func:`i2s_stop`, which will disable the I2S Tx/Rx units until the function :cpp:func:`i2s_start` is called. If the function :cpp:func`i2s_driver_install` is used, the driver will start up automatically eliminating the need to call :cpp:func:`i2s_start`.
  76. Deleting the Driver
  77. ^^^^^^^^^^^^^^^^^^^
  78. If the established communication is no longer required, the driver can be removed to free allocated resources by calling :cpp:func:`i2s_driver_uninstall`.
  79. Application Example
  80. -------------------
  81. A code example for the I2S driver can be found in the directory :example:`peripherals/i2s`.
  82. In addition, there are two short configuration examples for the I2S driver.
  83. I2S configuration
  84. ^^^^^^^^^^^^^^^^^
  85. .. code-block:: c
  86. #include "driver/i2s.h"
  87. #include "freertos/queue.h"
  88. static const int i2s_num = 0; // i2s port number
  89. static const i2s_config_t i2s_config = {
  90. .mode = I2S_MODE_MASTER | I2S_MODE_TX,
  91. .sample_rate = 44100,
  92. .bits_per_sample = 16,
  93. .channel_format = I2S_CHANNEL_FMT_RIGHT_LEFT,
  94. .communication_format = I2S_COMM_FORMAT_STAND_I2S,
  95. .intr_alloc_flags = 0, // default interrupt priority
  96. .dma_buf_count = 8,
  97. .dma_buf_len = 64,
  98. .use_apll = false
  99. };
  100. static const i2s_pin_config_t pin_config = {
  101. .bck_io_num = 26,
  102. .ws_io_num = 25,
  103. .data_out_num = 22,
  104. .data_in_num = I2S_PIN_NO_CHANGE
  105. };
  106. ...
  107. i2s_driver_install(i2s_num, &i2s_config, 0, NULL); //install and start i2s driver
  108. i2s_set_pin(i2s_num, &pin_config);
  109. i2s_set_sample_rates(i2s_num, 22050); //set sample rates
  110. i2s_driver_uninstall(i2s_num); //stop & destroy i2s driver
  111. Configuring I2S to use internal DAC for analog output
  112. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  113. .. code-block:: c
  114. #include "driver/i2s.h"
  115. #include "freertos/queue.h"
  116. static const int i2s_num = 0; // i2s port number
  117. static const i2s_config_t i2s_config = {
  118. .mode = I2S_MODE_MASTER | I2S_MODE_TX | I2S_MODE_DAC_BUILT_IN,
  119. .sample_rate = 44100,
  120. .bits_per_sample = 16, /* the DAC module will only take the 8bits from MSB */
  121. .channel_format = I2S_CHANNEL_FMT_RIGHT_LEFT,
  122. .intr_alloc_flags = 0, // default interrupt priority
  123. .dma_buf_count = 8,
  124. .dma_buf_len = 64,
  125. .use_apll = false
  126. };
  127. ...
  128. i2s_driver_install(i2s_num, &i2s_config, 0, NULL); //install and start i2s driver
  129. i2s_set_pin(i2s_num, NULL); //for internal DAC, this will enable both of the internal channels
  130. //You can call i2s_set_dac_mode to set built-in DAC output mode.
  131. //i2s_set_dac_mode(I2S_DAC_CHANNEL_BOTH_EN);
  132. i2s_set_sample_rates(i2s_num, 22050); //set sample rates
  133. i2s_driver_uninstall(i2s_num); //stop & destroy i2s driver
  134. API Reference
  135. -------------
  136. .. include-build-file:: inc/i2s.inc
  137. .. include-build-file:: inc/i2s_types.inc