Home
last modified time | relevance | path

Searched refs:ledc_timer_config (Results 1 – 15 of 15) sorted by relevance

/hal_espressif-3.6.0/components/driver/test/
Dtest_ledc.c80 TEST_ESP_OK(ledc_timer_config(&ledc_time_config)); in fade_setup()
109 TEST_ESP_OK(ledc_timer_config(&ledc_time_config)); in timer_duty_test()
184 TEST_ESP_OK(ledc_timer_config(&ledc_time_config)); in timer_frequency_test()
239 TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, ledc_timer_config(&ledc_time_config));
246 TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, ledc_timer_config(&ledc_time_config));
253 TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, ledc_timer_config(&ledc_time_config));
259 TEST_ESP_OK(ledc_timer_config(&ledc_time_config));
267 TEST_ESP_OK(ledc_timer_config(&ledc_time_config));
295 TEST_ESP_OK(ledc_timer_config(&ledc_time_config));
307 TEST_ESP_OK(ledc_timer_config(&ledc_time_config));
[all …]
Dtest_pcnt.c79 ESP_ERROR_CHECK(ledc_timer_config(&ledc_timer)); in produce_pulse()
185 ledc_timer_config(&ledc_timer); in count_mode_test()
/hal_espressif-3.6.0/examples/peripherals/ledc/ledc_fade/main/
Dledc_fade_example_main.c96 ledc_timer_config(&ledc_timer); in app_main()
101 ledc_timer_config(&ledc_timer); in app_main()
/hal_espressif-3.6.0/docs/zh_CN/api-reference/peripherals/
Dledc.rst51 要设置定时器,可调用函数 :cpp:func:`ledc_timer_config`,并将包括如下配置参数的数据结构 :cpp:type:`ledc_timer_config_t` 传递给该函数:
156 …中断。而更新低速定时器时,设置变更应由软件显式触发。LED PWM 驱动的设置将在硬件层面被修改,比如在调用函数 :cpp:func:`ledc_timer_config` 或 :cpp:func…
/hal_espressif-3.6.0/examples/peripherals/ledc/ledc_basic/main/
Dledc_basic_example_main.c31 ESP_ERROR_CHECK(ledc_timer_config(&ledc_timer)); in example_ledc_init()
/hal_espressif-3.6.0/examples/peripherals/pcnt/pulse_count_event/main/
Dpcnt_event_example_main.c89 ledc_timer_config(&ledc_timer); in ledc_init()
/hal_espressif-3.6.0/examples/mesh/internal_communication/main/
Dmesh_light.c48 ledc_timer_config(&ledc_timer); in mesh_light_init()
/hal_espressif-3.6.0/examples/mesh/manual_networking/main/
Dmesh_light.c51 ledc_timer_config(&ledc_timer); in mesh_light_init()
/hal_espressif-3.6.0/components/driver/include/driver/
Dledc.h82 esp_err_t ledc_timer_config(const ledc_timer_config_t* timer_conf);
/hal_espressif-3.6.0/docs/zh_CN/api-reference/system/
Dpower_management.rst104 - **LEDC**:如果 REF_TICK 用作时钟源,则 LEDC 不受 APB 频率变更影响。请查看 :cpp:func:`ledc_timer_config` 函数。
/hal_espressif-3.6.0/docs/en/api-reference/peripherals/
Dledc.rst51 Setting the timer is done by calling the function :cpp:func:`ledc_timer_config` and passing the dat…
156 …The LEDC driver handles it in the background, e.g., when :cpp:func:`ledc_timer_config` or :cpp:fun…
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/common_components/light_driver/
Diot_led.c390 ret = ledc_timer_config(&ledc_time_config); in iot_led_init()
Diot_light.c292 ERR_ASSERT(TAG, ledc_timer_config(&timer_conf), NULL); in iot_light_create()
/hal_espressif-3.6.0/docs/en/api-reference/system/
Dpower_management.rst104 - **LEDC**: if REF_TICK is used as a clock source. See :cpp:func:`ledc_timer_config` function.
/hal_espressif-3.6.0/components/driver/
Dledc.c315 esp_err_t ledc_timer_config(const ledc_timer_config_t* timer_conf) in ledc_timer_config() function