Select one of the symbols to view example projects that use it.
 
Outline
#include <stdint.h>
#include <stdbool.h>
#include "esp_private/mspi_timing_types.h"
mspi_timing_config_set_flash_clock(uint32_t, mspi_timing_speed_mode_t, bool);
mspi_timing_config_set_psram_clock(uint32_t, mspi_timing_speed_mode_t, bool);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_hw_support/include/esp_private/mspi_timing_config.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: 2019-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include <stdint.h> #include <stdbool.h> #include "esp_private/mspi_timing_types.h" #ifdef __cplusplus extern "C" { #endif /*------------------------------------------------------------------------------------------------- * Generic Config APIs *-------------------------------------------------------------------------------------------------*//* ... */ /** * @brief Set Flash module clock * * @param flash_freq_mhz Flash clock frequency in MHz * @param speed_mode Speed mode * @param control_both_mspi Control SPI1 as well *//* ... */ void mspi_timing_config_set_flash_clock(uint32_t flash_freq_mhz, mspi_timing_speed_mode_t speed_mode, bool control_both_mspi); /** * @brief Set PSRAM module clock * * @param psram_freq_mhz PSRAM clock frequency in MHz * @param speed_mode Speed mode * @param control_both_mspi Not used, for compatibility *//* ... */ void mspi_timing_config_set_psram_clock(uint32_t psram_freq_mhz, mspi_timing_speed_mode_t speed_mode, bool control_both_mspi); #ifdef __cplusplus }{...} #endif
Details