Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_types.h"
#include "esp_err.h"
#include "sd_pwr_ctrl.h"
sd_pwr_ctrl_drv_t
sd_pwr_ctrl_drv_t
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/sdmmc/include/sd_pwr_ctrl_interface.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
32
33
34
35
36
37
38
39
40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include "esp_types.h" #include "esp_err.h" #include "sd_pwr_ctrl.h" #ifdef __cplusplus extern "C" { #endif typedef struct sd_pwr_ctrl_drv_t sd_pwr_ctrl_drv_t; struct sd_pwr_ctrl_drv_t { /** * @brief Set SD IO voltage * * @param[in] ctx SD power control specific driver context * @param[in] voltage_mv Voltage in mV * * @return * - ESP_OK: On success * - ESP_ERR_INVALID_ARG: Invalid argument *//* ... */ esp_err_t (*set_io_voltage)(void *ctx, int voltage_mv); /** * @brief SD power control driver context * Can be customized to difference power control methods *//* ... */ void *ctx; }{ ... }; #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.