Searched refs:rmt_driver_install (Results 1 – 10 of 10) sorted by relevance
/hal_espressif-3.4.0/components/driver/test/ |
D | test_rmt.c | 79 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/ |
D | ir_protocols_main.c | 38 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/ |
D | morse_code_main.c | 67 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/ |
D | musical_buzzer_example_main.c | 52 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/ |
D | led_strip_main.c | 87 ESP_ERROR_CHECK(rmt_driver_install(config.channel, 0, 0)); in app_main()
|
/hal_espressif-3.4.0/examples/common_components/led_strip/ |
D | led_strip_rmt_ws2812.c | 184 ESP_ERROR_CHECK(rmt_driver_install(config.channel, 0, 0)); in led_strip_init()
|
/hal_espressif-3.4.0/docs/en/api-reference/peripherals/ |
D | rmt.rst | 173 …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/ |
D | rmt.h | 652 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/ |
D | step_motor_rmt.c | 281 …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/ |
D | rmt.c | 1017 esp_err_t rmt_driver_install(rmt_channel_t channel, size_t rx_buf_size, int intr_alloc_flags) in rmt_driver_install() function
|