Home
last modified time | relevance | path

Searched refs:rmt_config (Results 1 – 10 of 10) sorted by relevance

/hal_espressif-3.4.0/components/driver/test/
Dtest_rmt.c52 TEST_ESP_OK(rmt_config(&tx_config)); in rmt_setup_testbench()
68 TEST_ESP_OK(rmt_config(&rx_config)); in rmt_setup_testbench()
118 TEST_ASSERT(rmt_config(&wrong_config) == ESP_ERR_INVALID_ARG);
122 TEST_ASSERT(rmt_config(&wrong_config) == ESP_ERR_INVALID_ARG);
127 TEST_ASSERT(rmt_config(&wrong_config) == ESP_ERR_INVALID_ARG);
191 TEST_ESP_OK(rmt_config(&tx_cfg));
202 TEST_ESP_OK(rmt_config(&rx_cfg));
214 TEST_ESP_OK(rmt_config(&tx_cfg));
220 TEST_ESP_OK(rmt_config(&rx_cfg));
261 TEST_ESP_OK(rmt_config(&tx_cfg));
[all …]
/hal_espressif-3.4.0/examples/peripherals/rmt/ir_protocols/main/
Dir_protocols_main.c37 rmt_config(&rmt_rx_config); in example_ir_rx_task()
85 rmt_config(&rmt_tx_config); in example_ir_tx_task()
/hal_espressif-3.4.0/examples/peripherals/rmt/morse_code/main/
Dmorse_code_main.c66 ESP_ERROR_CHECK(rmt_config(&config)); in rmt_tx_init()
/hal_espressif-3.4.0/examples/peripherals/rmt/musical_buzzer/main/
Dmusical_buzzer_example_main.c51 ESP_ERROR_CHECK(rmt_config(&dev_config)); in app_main()
/hal_espressif-3.4.0/examples/peripherals/rmt/led_strip/main/
Dled_strip_main.c86 ESP_ERROR_CHECK(rmt_config(&config)); in app_main()
/hal_espressif-3.4.0/examples/common_components/led_strip/
Dled_strip_rmt_ws2812.c183 ESP_ERROR_CHECK(rmt_config(&config)); in led_strip_init()
/hal_espressif-3.4.0/components/driver/include/driver/
Drmt.h590 esp_err_t rmt_config(const rmt_config_t *rmt_param);
/hal_espressif-3.4.0/examples/peripherals/rmt/step_motor/components/step_motor/src/
Dstep_motor_rmt.c280 ESP_RETURN_ON_ERROR(rmt_config(rmt_conf), TAG, "Failed to configure RMT"); in step_motor_create_rmt()
/hal_espressif-3.4.0/docs/en/api-reference/peripherals/
Drmt.rst171 …s populated with parameters, it should be then invoked with :cpp:func:`rmt_config` to make the con…
245 Previously described function :cpp:func:`rmt_config` provides a convenient way to set several confi…
/hal_espressif-3.4.0/components/driver/
Drmt.c682 esp_err_t rmt_config(const rmt_config_t *rmt_param) in rmt_config() function