Home
last modified time | relevance | path

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

/hal_espressif-3.4.0/components/driver/test/
Dtest_rmt.c79 TEST_ESP_OK(rmt_driver_install(tx_channel, 0, 0)); in rmt_setup_testbench()
88 TEST_ESP_OK(rmt_driver_install(rx_channel, 3000, 0)); in rmt_setup_testbench()
192 TEST_ESP_OK(rmt_driver_install(tx_cfg.channel, 0, 0));
203 TEST_ESP_OK(rmt_driver_install(rx_cfg.channel, 0, 0));
216 TEST_ESP_OK(rmt_driver_install(tx_cfg.channel, 1000, 0));
222 TEST_ESP_OK(rmt_driver_install(rx_cfg.channel, 1000, 0));
262 TEST_ESP_OK(rmt_driver_install(tx_cfg.channel, 0, 0));
514 TEST_ESP_OK(rmt_driver_install(channel0, 0, 0));
515 TEST_ESP_OK(rmt_driver_install(channel1, 0, 0));
/hal_espressif-3.4.0/examples/peripherals/rmt/ir_protocols/main/
Dir_protocols_main.c38 rmt_driver_install(example_rx_channel, 1000, 0); in example_ir_rx_task()
86 rmt_driver_install(example_tx_channel, 0, 0); in example_ir_tx_task()
/hal_espressif-3.4.0/examples/peripherals/rmt/morse_code/main/
Dmorse_code_main.c67 ESP_ERROR_CHECK(rmt_driver_install(config.channel, 0, 0)); in rmt_tx_init()
/hal_espressif-3.4.0/examples/peripherals/rmt/musical_buzzer/main/
Dmusical_buzzer_example_main.c52 ESP_ERROR_CHECK(rmt_driver_install(RMT_TX_CHANNEL, 0, 0)); in app_main()
/hal_espressif-3.4.0/examples/peripherals/rmt/led_strip/main/
Dled_strip_main.c87 ESP_ERROR_CHECK(rmt_driver_install(config.channel, 0, 0)); in app_main()
/hal_espressif-3.4.0/examples/common_components/led_strip/
Dled_strip_rmt_ws2812.c184 ESP_ERROR_CHECK(rmt_driver_install(config.channel, 0, 0)); in led_strip_init()
/hal_espressif-3.4.0/docs/en/api-reference/peripherals/
Drmt.rst173 …step is installation of the driver in memory by calling :cpp:func:`rmt_driver_install`. If :cpp:ty…
235 … defined by the user. The size is provided when calling :cpp:func:`rmt_driver_install` discussed a…
285 …When calling :cpp:func:`rmt_driver_install` to use the system RMT driver, a default ISR is being i…
309 If the RMT driver has been installed with :cpp:func:`rmt_driver_install` for some specific period o…
/hal_espressif-3.4.0/components/driver/include/driver/
Drmt.h652 esp_err_t rmt_driver_install(rmt_channel_t channel, size_t rx_buf_size, int intr_alloc_flags);
/hal_espressif-3.4.0/examples/peripherals/rmt/step_motor/components/step_motor/src/
Dstep_motor_rmt.c281 …ESP_RETURN_ON_ERROR(rmt_driver_install(rmt_conf->channel, 0, 0), TAG, "Failed to install RMT drive… in step_motor_create_rmt()
/hal_espressif-3.4.0/components/driver/
Drmt.c1017 esp_err_t rmt_driver_install(rmt_channel_t channel, size_t rx_buf_size, int intr_alloc_flags) in rmt_driver_install() function