Select one of the symbols to view example projects that use it.
 
Outline
#define EXAMPLE_BUFF_SIZE
i2s_example_pdm_tx_task(void *);
i2s_example_pdm_rx_task(void *);
Files
loading...
SourceVuESP-IDF Framework and Examplesi2s_pdm samplemain/i2s_pdm_example.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Unlicense OR CC0-1.0 *//* ... */ #pragma once #ifdef __cplusplus extern "C" { #endif #define EXAMPLE_BUFF_SIZE 2048 /** * @brief I2S PDM TX example task * * @param args The user data given from task creating, not used in this example *//* ... */ void i2s_example_pdm_tx_task(void *args); /** * @brief I2S PDM RX example task * * @param args The user data given from task creating, not used in this example *//* ... */ void i2s_example_pdm_rx_task(void *args); #ifdef __cplusplus }{...} #endif
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.