Select one of the symbols to view example projects that use it.
 
Outline
#include <stdint.h>
#include "esp_err.h"
#include "soc/soc_caps.h"
#include "soc/clk_tree_defs.h"
#include "driver/gpio.h"
esp_clock_output_mapping
esp_clock_output_start(soc_clkout_sig_id_t, gpio_num_t, esp_clock_output_mapping_handle_t *);
esp_clock_output_stop(esp_clock_output_mapping_handle_t);
Files
loading (4/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_hw_support/include/esp_clock_output.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2023-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include <stdint.h> #include "esp_err.h" #include "soc/soc_caps.h" #include "soc/clk_tree_defs.h" #include "driver/gpio.h"5 includes #ifdef __cplusplus extern "C" { #endif #if SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX || SOC_GPIO_CLOCKOUT_BY_IO_MUX typedef struct esp_clock_output_mapping *esp_clock_output_mapping_handle_t; /** * @brief Start output specified clock signal to specified GPIO, will also * initialize the clkout_mapping_ret_hdl. * * @param[in] clk_src The clock signal source to be mapped to GPIOs * @param[in] gpio_num GPIO number to be mapped soc_root_clk signal source * @param[out] clkout_mapping_ret_hdl Clock output control handler * @return * - ESP_OK: Output specified clock signal to specified GPIO successfully * - ESP_ERR_INVALID_ARG: Specified GPIO not supported to output internal clock * or specified GPIO is already mapped to other internal clock source. * - ESP_FAIL: There are no clock out signals that can be allocated. *//* ... */ esp_err_t esp_clock_output_start(soc_clkout_sig_id_t clk_sig, gpio_num_t gpio_num, esp_clock_output_mapping_handle_t *clkout_mapping_ret_hdl); /** * @brief Stop clock signal to GPIO outputting * @param[in] clkout_mapping_hdl Clock output mapping control handle * @return * - ESP_OK: Disable the clock output on GPIO successfully * - ESP_ERR_INVALID_ARG The clock mapping handle is not initialized yet * - ESP_ERR_INVALID_STATE The clock mapping handle is already in the disabled state *//* ... */ esp_err_t esp_clock_output_stop(esp_clock_output_mapping_handle_t clkout_mapping_hdl); #if SOC_CLOCKOUT_SUPPORT_CHANNEL_DIVIDER /** * @brief Output the mapped clock after frequency division * @param clkout_mapping_hdl clkout_mapping_hdl Clock output mapping control handle * @param div_num clock frequency division value, should be in the range of 1 ~ 256 * @return * - ESP_OK: Disable the clock output on GPIO successfully * - ESP_ERR_INVALID_ARG The clock mapping handle is not initialized yet or the div_num is in bad range *//* ... */ esp_err_t esp_clock_output_set_divider(esp_clock_output_mapping_handle_t clkout_mapping_hdl, uint32_t div_num);/* ... */ #endif /* ... */ #endif // SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX || SOC_GPIO_CLOCKOUT_BY_IO_MUX #ifdef __cplusplus }{...} #endif
Details