i2s.rst 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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. ESP32 integrates two I2S controllers, referred to as I2S0 and I2S1, both of which can be used for streaming audio and video digital data.
  7. An I2S bus consists of the following lines:
  8. - Bit clock line
  9. - Channel select line
  10. - Serial data line
  11. Each I2S controller has the following features that can be configured using the I2S driver:
  12. - Operation as system master or slave
  13. - Capable of acting as transmitter or receiver
  14. - Dedicated DMA controller that allows for streaming sample data without requiring the CPU to copy each data sample
  15. Each controller can operate in half-duplex communication mode. Thus, the two controllers can be combined to establish full-duplex communication.
  16. 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.
  17. 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:
  18. - LCD master transmitting mode
  19. - Camera slave receiving mode
  20. - ADC/DAC mode
  21. For more information, see the `ESP32 Technical Reference Manual <https://espressif.com/sites/default/files/documentation/esp32_technical_reference_manual_en.pdf#page=306>`_.
  22. .. note::
  23. 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``.
  24. 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.
  25. 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.
  26. Functional Overview
  27. -------------------
  28. Installing the Driver
  29. ^^^^^^^^^^^^^^^^^^^^^
  30. Install the I2S driver by calling the function :cpp:func`i2s_driver_install` and passing the following arguments:
  31. - Port number
  32. - The structure :cpp:type:`i2s_config_t` with defined communication parameters
  33. - Event queue size and handle
  34. Configuration example:
  35. .. code-block:: c
  36. static const int i2s_num = 0; // i2s port number
  37. static const i2s_config_t i2s_config = {
  38. .mode = I2S_MODE_MASTER | I2S_MODE_TX,
  39. .sample_rate = 44100,
  40. .bits_per_sample = 16,
  41. .channel_format = I2S_CHANNEL_FMT_RIGHT_LEFT,
  42. .communication_format = I2S_COMM_FORMAT_I2S | I2S_COMM_FORMAT_I2S_MSB,
  43. .intr_alloc_flags = 0, // default interrupt priority
  44. .dma_buf_count = 8,
  45. .dma_buf_len = 64,
  46. .use_apll = false
  47. };
  48. i2s_driver_install(I2S_NUM, &i2s_config, 0, NULL);
  49. Setting Communication Pins
  50. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  51. 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:
  52. - Port number
  53. - 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.
  54. .. code-block:: c
  55. static const i2s_pin_config_t pin_config = {
  56. .bck_io_num = 26,
  57. .ws_io_num = 25,
  58. .data_out_num = 22,
  59. .data_in_num = I2S_PIN_NO_CHANGE
  60. };
  61. i2s_set_pin(i2s_num, &pin_config);
  62. Running I2S Communication
  63. ^^^^^^^^^^^^^^^^^^^^^^^^^
  64. To perform a transmission:
  65. - Prepare the data for sending
  66. - Call the function :cpp:func:`i2s_write` and pass the data buffer address and data length to it
  67. The function will write the data to the I2S DMA Tx buffer, and then the data will be transmitted automatically.
  68. .. code-block:: c
  69. i2s_write(I2S_NUM, samples_data, ((bits+8)/16)*SAMPLE_PER_CYCLE*4, &i2s_bytes_write, 100);
  70. 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.
  71. 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`.
  72. Deleting the Driver
  73. ^^^^^^^^^^^^^^^^^^^
  74. If the established communication is no longer required, the driver can be removed to free allocated resources by calling :cpp:func:`i2s_driver_uninstall`.
  75. Application Example
  76. -------------------
  77. A code example for the I2S driver can be found in the directory :example:`peripherals/i2s`.
  78. In addition, there are two short configuration examples for the I2S driver.
  79. I2S configuration
  80. ^^^^^^^^^^^^^^^^^
  81. .. code-block:: c
  82. #include "driver/i2s.h"
  83. #include "freertos/queue.h"
  84. static const int i2s_num = 0; // i2s port number
  85. static const i2s_config_t i2s_config = {
  86. .mode = I2S_MODE_MASTER | I2S_MODE_TX,
  87. .sample_rate = 44100,
  88. .bits_per_sample = 16,
  89. .channel_format = I2S_CHANNEL_FMT_RIGHT_LEFT,
  90. .communication_format = I2S_COMM_FORMAT_I2S | I2S_COMM_FORMAT_I2S_MSB,
  91. .intr_alloc_flags = 0, // default interrupt priority
  92. .dma_buf_count = 8,
  93. .dma_buf_len = 64,
  94. .use_apll = false
  95. };
  96. static const i2s_pin_config_t pin_config = {
  97. .bck_io_num = 26,
  98. .ws_io_num = 25,
  99. .data_out_num = 22,
  100. .data_in_num = I2S_PIN_NO_CHANGE
  101. };
  102. ...
  103. i2s_driver_install(i2s_num, &i2s_config, 0, NULL); //install and start i2s driver
  104. i2s_set_pin(i2s_num, &pin_config);
  105. i2s_set_sample_rates(i2s_num, 22050); //set sample rates
  106. i2s_driver_uninstall(i2s_num); //stop & destroy i2s driver
  107. Configuring I2S to use internal DAC for analog output
  108. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  109. .. code-block:: c
  110. #include "driver/i2s.h"
  111. #include "freertos/queue.h"
  112. static const int i2s_num = 0; // i2s port number
  113. static const i2s_config_t i2s_config = {
  114. .mode = I2S_MODE_MASTER | I2S_MODE_TX | I2S_MODE_DAC_BUILT_IN,
  115. .sample_rate = 44100,
  116. .bits_per_sample = 16, /* the DAC module will only take the 8bits from MSB */
  117. .channel_format = I2S_CHANNEL_FMT_RIGHT_LEFT,
  118. .communication_format = I2S_COMM_FORMAT_I2S_MSB,
  119. .intr_alloc_flags = 0, // default interrupt priority
  120. .dma_buf_count = 8,
  121. .dma_buf_len = 64,
  122. .use_apll = false
  123. };
  124. ...
  125. i2s_driver_install(i2s_num, &i2s_config, 0, NULL); //install and start i2s driver
  126. i2s_set_pin(i2s_num, NULL); //for internal DAC, this will enable both of the internal channels
  127. //You can call i2s_set_dac_mode to set built-in DAC output mode.
  128. //i2s_set_dac_mode(I2S_DAC_CHANNEL_BOTH_EN);
  129. i2s_set_sample_rates(i2s_num, 22050); //set sample rates
  130. i2s_driver_uninstall(i2s_num); //stop & destroy i2s driver
  131. API Reference
  132. -------------
  133. .. include:: /_build/inc/i2s.inc
  134. .. include:: /_build/inc/i2s_types.inc