Select one of the symbols to view example projects that use it.
 
Outline
#include <stdint.h>
#include <stdlib.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "sdkconfig.h"
#include "i2s_pdm_example.h"
app_main()
Files
loading...
SourceVuESP-IDF Framework and Examplesi2s_pdm samplemain/i2s_pdm_example_main.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Unlicense OR CC0-1.0 *//* ... */ #include <stdint.h> #include <stdlib.h> #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "sdkconfig.h" #include "i2s_pdm_example.h"6 includes void app_main(void) { #if CONFIG_EXAMPLE_PDM_TX printf("I2S PDM TX example start\n---------------------------\n"); xTaskCreate(i2s_example_pdm_tx_task, "i2s_example_pdm_tx_task", 4096, NULL, 5, NULL);/* ... */ #elif CONFIG_EXAMPLE_PDM_RX printf("I2S PDM RX example start\n---------------------------\n"); xTaskCreate(i2s_example_pdm_rx_task, "i2s_example_pdm_rx_task", 4096, NULL, 5, NULL);/* ... */ #endif }{ ... }
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.