Home
last modified time | relevance | path

Searched refs:clk_flags (Results 1 – 5 of 5) sorted by relevance

/hal_espressif-3.6.0/docs/zh_CN/api-reference/peripherals/
Di2c.rst82 …// .clk_flags = 0, /*!< Optional, you can use I2C_SCLK_SRC_FLAG_* flags to choose i2c sou…
105 增加了 **时钟源分配器**,用于支持不同的时钟源。时钟分配器将选择一个满足所有频率和能力要求的时钟源(如 :cpp:member:`i2c_config_t::clk_flags` 中的要求)。
107 …`i2c_config_t::clk_flags` 为 0 时,时钟分配器将仅根据所需频率进行选择。如果不需要诸如 APB 之类的特殊功能,则可以将时钟分配器配置为仅根据所需频率选择源时钟。为此,…
111 如果时钟不满足请求的功能,则该时钟不是有效的选项,即,请求的功能中的任何位(clk_flags)在时钟的功能中均为 0。
147 对 :cpp:member:`i2c_config_t::clk_flags` 的解释如下:
189 对 :cpp:member:`i2c_config_t::clk_flags` 的解释如下:
/hal_espressif-3.6.0/docs/en/api-reference/peripherals/
Di2c.rst82 …// .clk_flags = 0, /*!< Optional, you can use I2C_SCLK_SRC_FLAG_* flags to choose i2c sou…
105 …e requirements of frequency and capability (as requested in :cpp:member:`i2c_config_t::clk_flags`).
107clk_flags` is 0, the clock allocator will select only according to the desired frequency. If no sp…
111 …eet the requested capabilities, i.e. any bit of requested capabilities (clk_flags) is 0 in the clo…
147 Explanations for :cpp:member:`i2c_config_t::clk_flags` are as follows:
189 Explanations for :cpp:member:`i2c_config_t::clk_flags` are as follows:
/hal_espressif-3.6.0/components/driver/include/driver/
Di2c.h85 …uint32_t clk_flags; /*!< Bitwise of ``I2C_SCLK_SRC_FLAG_**FOR_DFS**`` for clk source … member
/hal_espressif-3.6.0/components/driver/
Di2c.c635 static i2c_sclk_t i2c_get_clk_src(const uint32_t clk_flags, const uint32_t clk_speed) in i2c_get_clk_src() argument
643 if ( ((clk_flags & i2c_clk_alloc[clk].character) == clk_flags) && in i2c_get_clk_src()
661 src_clk = i2c_get_clk_src(i2c_conf->clk_flags, i2c_conf->master.clk_speed); in i2c_param_config()
670 src_clk = i2c_get_clk_src(i2c_conf->clk_flags, i2c_conf->slave.maximum_speed); in i2c_param_config()
/hal_espressif-3.6.0/components/driver/test/
Dtest_i2c.c104 .clk_flags = 0, in i2c_master_init()