|
|
2 年之前 | |
|---|---|---|
| .. | ||
| main | 2 年之前 | |
| CMakeLists.txt | 3 年之前 | |
| README.md | 3 年之前 | |
| pytest_i2s_tdm.py | 2 年之前 | |
| sdkconfig.defaults | 3 年之前 | |
| Supported Targets | ESP32-C3 | ESP32-C6 | ESP32-H2 | ESP32-S3 |
|---|
(See the README.md file in the upper level 'examples' directory for more information about examples.)
This example is going to show how to use the TDM mode in simplex mode or full-duplex mode.
Supported Targets table above)There are simplex mode and duplex mode can be chosen in this example, setting EXAMPLE_I2S_DUPLEX_MODE to 0 will adopt the simplex mode, otherwise it will adopt the full-duplex mode.
Build the project and flash it to the board, then run monitor tool to view serial output:
idf.py -p PORT build flash monitor
(To exit the serial monitor, type Ctrl-].)
See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.
While EXAMPLE_I2S_DUPLEX_MODE is set to 1, then you can see the following log:
Write Task: i2s write 2048 bytes
Read Task: i2s read 2048 bytes
-----------------------------------
[0] 12 [1] 34 [2] 56 [3] 78
[4] 9a [5] bc [6] de [7] f0
Write Task: i2s write 2048 bytes
Read Task: i2s read 2048 bytes
-----------------------------------
[0] 12 [1] 34 [2] 56 [3] 78
[4] 9a [5] bc [6] de [7] f0
...
While EXAMPLE_I2S_DUPLEX_MODE is set to 0, you can see the receiving data is always 0 because no signal inputted:
Write Task: i2s write 2048 bytes
Read Task: i2s read 2048 bytes
-----------------------------------
[0] 0 [1] 0 [2] 0 [3] 0
[4] 0 [5] 0 [6] 0 [7] 0
Write Task: i2s write 2048 bytes
Read Task: i2s read 2048 bytes
-----------------------------------
[0] 0 [1] 0 [2] 0 [3] 0
[4] 0 [5] 0 [6] 0 [7] 0
...
For any technical queries, please open an issue on GitHub. We will get back to you soon.