Searched refs:rmt_write_items (Results 1 – 8 of 8) sorted by relevance
/hal_espressif-3.4.0/components/driver/test/ |
D | test_rmt.c | 302 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/ |
D | step_motor_rmt.c | 124 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() 261 …rmt_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/ |
D | ir_protocols_main.c | 101 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/ |
D | musical_buzzer_rmt.c | 72 rmt_write_items(rmt_buzzer->channel, ¬ation_code, 1, false); in buzzer_play() 102 rmt_write_items(rmt_buzzer->channel, ¬ation_code, 1, false); in rmt_tx_loop_end()
|
/hal_espressif-3.4.0/examples/peripherals/rmt/morse_code/main/ |
D | morse_code_main.c | 76 …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/ |
D | rmt.h | 716 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/ |
D | rmt.rst | 206 The items are provided to the RMT controller by calling function :cpp:func:`rmt_write_items`. This …
|
/hal_espressif-3.4.0/components/driver/ |
D | rmt.c | 1111 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
|