Home
last modified time | relevance | path

Searched refs:rmt_write_items (Results 1 – 8 of 8) sorted by relevance

/hal_espressif-3.4.0/components/driver/test/
Dtest_rmt.c302 TEST_ESP_OK(rmt_write_items(tx_channel, items, length, false)); // no wait in do_nec_tx_rx()
305 TEST_ESP_OK(rmt_write_items(tx_channel, items, length, true)); // wait until done in do_nec_tx_rx()
364 TEST_ESP_OK(rmt_write_items(tx_channel, items, SOC_RMT_MEM_WORDS_PER_CHANNEL - 1, 1));
407 TEST_ESP_OK(rmt_write_items(tx_channel, frames, length, true));
466 TEST_ESP_OK(rmt_write_items(tx_channel, frames, size, true));
522 TEST_ESP_OK(rmt_write_items(channel0, frames, size, false));
524 TEST_ESP_OK(rmt_write_items(channel1, frames, size, false));
574 TEST_ESP_OK(rmt_write_items(tx_channel, items, length, true)); // wait until done
/hal_espressif-3.4.0/examples/peripherals/rmt/step_motor/components/step_motor/src/
Dstep_motor_rmt.c124 rmt_write_items(rmt_handle->rmt_ch, &rmt_handle->rmt_items_loop, 1, false); in rmt_step_motor_step_impl()
141 ESP_ERROR_CHECK(rmt_write_items(rmt_handle->rmt_ch, &rmt_handle->rmt_items_loop, 1, false)); in rmt_step_motor_step()
200 …ESP_ERROR_CHECK(rmt_write_items(rmt_handle->rmt_ch, rmt_handle->rmt_items_speedup, speed_steps, fa… in rmt_step_motor_smoothstep()
250 rmt_write_items(rmt_step_motor->rmt_ch, &rmt_step_motor->rmt_items_loop, 1, false); in rmt_tx_loop_intr()
261rmt_write_items(rmt_step_motor->rmt_ch, rmt_step_motor->rmt_items_speeddown, rmt_step_motor->rmt_i… in rmt_tx_loop_intr()
/hal_espressif-3.4.0/examples/peripherals/rmt/ir_protocols/main/
Dir_protocols_main.c101 rmt_write_items(example_tx_channel, items, length, false); in example_ir_tx_task()
106 rmt_write_items(example_tx_channel, items, length, false); in example_ir_tx_task()
/hal_espressif-3.4.0/examples/peripherals/rmt/musical_buzzer/components/musical_buzzer/src/
Dmusical_buzzer_rmt.c72 rmt_write_items(rmt_buzzer->channel, &notation_code, 1, false); in buzzer_play()
102 rmt_write_items(rmt_buzzer->channel, &notation_code, 1, false); in rmt_tx_loop_end()
/hal_espressif-3.4.0/examples/peripherals/rmt/morse_code/main/
Dmorse_code_main.c76 …ESP_ERROR_CHECK(rmt_write_items(RMT_TX_CHANNEL, morse_esp, sizeof(morse_esp) / sizeof(morse_esp[0]… in app_main()
/hal_espressif-3.4.0/components/driver/include/driver/
Drmt.h716 esp_err_t rmt_write_items(rmt_channel_t channel, const rmt_item32_t *rmt_item, int item_num, bool w…
/hal_espressif-3.4.0/docs/en/api-reference/peripherals/
Drmt.rst206 The items are provided to the RMT controller by calling function :cpp:func:`rmt_write_items`. This …
/hal_espressif-3.4.0/components/driver/
Drmt.c1111 esp_err_t rmt_write_items(rmt_channel_t channel, const rmt_item32_t *rmt_item, int item_num, bool w… in rmt_write_items() function