Home
last modified time | relevance | path

Searched refs:ledc_channel_config_t (Results 1 – 14 of 14) sorted by relevance

/hal_espressif-3.6.0/components/driver/test/
Dtest_ledc.c47 static ledc_channel_config_t initialize_channel_config(void) in initialize_channel_config()
49 ledc_channel_config_t config; in initialize_channel_config()
50 memset(&config, 0, sizeof(ledc_channel_config_t)); in initialize_channel_config()
75 ledc_channel_config_t ledc_ch_config = initialize_channel_config(); in fade_setup()
98 ledc_channel_config_t ledc_ch_config = initialize_channel_config(); in timer_duty_test()
167 ledc_channel_config_t ledc_ch_config = { in timer_frequency_test()
196 ledc_channel_config_t ledc_ch_config = initialize_channel_config();
203 ledc_channel_config_t ledc_ch_config = initialize_channel_config();
210 ledc_channel_config_t ledc_ch_config = initialize_channel_config();
217 ledc_channel_config_t ledc_ch_config = initialize_channel_config();
[all …]
Dtest_pcnt.c81 ledc_channel_config_t ledc_channel = { in produce_pulse()
187 ledc_channel_config_t ledc_channel = { in count_mode_test()
/hal_espressif-3.6.0/docs/zh_CN/api-reference/peripherals/
Dledc.rst71 通道的配置与定时器设置类似,需向通道配置函数传递包括通道配置参数的结构体 :cpp:type:`ledc_channel_config_t` 。
73 此时,通道会按照 :cpp:type:`ledc_channel_config_t` 的配置开始运作,并在选定的 GPIO 上生成由定时器设置指定的频率和占空比的 PWM 信号。在通道运作过程中,可…
144 配置 LED PWM 控制器通道时,可在 :cpp:type:`ledc_channel_config_t` 中选取参数 :cpp:type:`ledc_intr_type_t` ,在渐变完成时触发…
/hal_espressif-3.6.0/examples/peripherals/ledc/ledc_basic/main/
Dledc_basic_example_main.c34 ledc_channel_config_t ledc_channel = { in example_ledc_init()
/hal_espressif-3.6.0/components/hal/include/hal/
Dledc_types.h141 } ledc_channel_config_t; typedef
/hal_espressif-3.6.0/examples/peripherals/pcnt/pulse_count_event/main/
Dpcnt_event_example_main.c92 ledc_channel_config_t ledc_channel; in ledc_init()
/hal_espressif-3.6.0/examples/mesh/internal_communication/main/
Dmesh_light.c50 ledc_channel_config_t ledc_channel = { in mesh_light_init()
/hal_espressif-3.6.0/examples/mesh/manual_networking/main/
Dmesh_light.c53 ledc_channel_config_t ledc_channel = { in mesh_light_init()
/hal_espressif-3.6.0/components/driver/include/driver/
Dledc.h69 esp_err_t ledc_channel_config(const ledc_channel_config_t* ledc_conf);
/hal_espressif-3.6.0/docs/en/api-reference/peripherals/
Dledc.rst71 …he channel setup function should be passed a structure :cpp:type:`ledc_channel_config_t` that cont…
73 … the PWM signal on the selected GPIO, as configured in :cpp:type:`ledc_channel_config_t`, with the…
144 …an LEDC channel, one of the parameters selected within :cpp:type:`ledc_channel_config_t` is :cpp:t…
/hal_espressif-3.6.0/examples/peripherals/ledc/ledc_fade/main/
Dledc_fade_example_main.c116 ledc_channel_config_t ledc_channel[LEDC_TEST_CH_NUM] = { in app_main()
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/common_components/light_driver/
Diot_led.c450 const ledc_channel_config_t ledc_ch_config = { in iot_led_regist_channel()
Diot_light.c230 ledc_channel_config_t ledc_channel = { in light_channel_create()
/hal_espressif-3.6.0/components/driver/
Dledc.c356 esp_err_t ledc_channel_config(const ledc_channel_config_t* ledc_conf) in ledc_channel_config()