Home
last modified time | relevance | path

Searched refs:rmt_config_t (Results 1 – 14 of 14) sorted by relevance

/hal_espressif-3.6.0/components/driver/test/
Dtest_rmt.c39 rmt_config_t tx_config = RMT_DEFAULT_CONFIG_TX(RMT_DATA_IO, tx_channel); in rmt_setup_testbench()
56 rmt_config_t rx_config = RMT_DEFAULT_CONFIG_RX(RMT_DATA_IO, rx_channel); in rmt_setup_testbench()
114 rmt_config_t correct_config = RMT_DEFAULT_CONFIG_TX(RMT_DATA_IO, 0);
115 rmt_config_t wrong_config = correct_config;
188 rmt_config_t tx_cfg = RMT_DEFAULT_CONFIG_TX(RMT_DATA_IO, 0);
199 rmt_config_t rx_cfg = RMT_DEFAULT_CONFIG_RX(RMT_DATA_IO, RMT_RX_CHANNEL_ENCODING_START);
213 rmt_config_t tx_cfg = RMT_DEFAULT_CONFIG_TX(RMT_DATA_IO, RMT_TX_CHANNEL_ENCODING_END);
219 rmt_config_t rx_cfg = RMT_DEFAULT_CONFIG_RX(RMT_DATA_IO, RMT_RX_CHANNEL_ENCODING_START);
260 rmt_config_t tx_cfg = RMT_DEFAULT_CONFIG_TX(RMT_DATA_IO, 0);
509 rmt_config_t tx_config0 = RMT_DEFAULT_CONFIG_TX(4, channel0);
[all …]
/hal_espressif-3.6.0/examples/peripherals/rmt/ir_protocols/main/
Dir_protocols_main.c36rmt_config_t rmt_rx_config = RMT_DEFAULT_CONFIG_RX(CONFIG_EXAMPLE_RMT_RX_GPIO, example_rx_channel); in example_ir_rx_task()
83rmt_config_t rmt_tx_config = RMT_DEFAULT_CONFIG_TX(CONFIG_EXAMPLE_RMT_TX_GPIO, example_tx_channel); in example_ir_tx_task()
/hal_espressif-3.6.0/examples/peripherals/rmt/morse_code/main/
Dmorse_code_main.c53 rmt_config_t config = RMT_DEFAULT_CONFIG_TX(CONFIG_EXAMPLE_RMT_TX_GPIO, RMT_TX_CHANNEL); in rmt_tx_init()
/hal_espressif-3.6.0/examples/peripherals/rmt/musical_buzzer/main/
Dmusical_buzzer_example_main.c47 rmt_config_t dev_config = RMT_DEFAULT_CONFIG_TX(RMT_TX_GPIO_NUM, RMT_TX_CHANNEL); in app_main()
/hal_espressif-3.6.0/components/driver/include/driver/
Drmt.h81 } rmt_config_t; typedef
590 esp_err_t rmt_config(const rmt_config_t *rmt_param);
/hal_espressif-3.6.0/examples/peripherals/rmt/step_motor/components/step_motor/include/
Dstep_motor.h120 esp_err_t step_motor_create_rmt(step_motor_driver_io_t *io_driver, const rmt_config_t *rmt_conf, st…
/hal_espressif-3.6.0/examples/peripherals/rmt/step_motor/main/
Dstep_motor_main.c34 rmt_config_t dev_config = RMT_DEFAULT_CONFIG_TX(STEP_MOTOR_STEP_PIN, RMT_TX_CHANNEL); in app_main()
/hal_espressif-3.6.0/examples/peripherals/rmt/led_strip/main/
Dled_strip_main.c82 rmt_config_t config = RMT_DEFAULT_CONFIG_TX(CONFIG_EXAMPLE_RMT_TX_GPIO, RMT_TX_CHANNEL); in app_main()
/hal_espressif-3.6.0/docs/zh_CN/api-reference/system/
Dpower_management.rst105 - **RMT**:如果 REF_TICK 或者 XTAL 被用作时钟源,则 RMT 不受 APB 频率变更影响。请查看 :cpp:class:`rmt_config_t` 结构体中的 `flags…
/hal_espressif-3.6.0/examples/common_components/led_strip/
Dled_strip_rmt_ws2812.c179 rmt_config_t config = RMT_DEFAULT_CONFIG_TX(gpio, channel); in led_strip_init()
/hal_espressif-3.6.0/examples/peripherals/rmt/step_motor/components/step_motor/src/
Dstep_motor_rmt.c275 esp_err_t step_motor_create_rmt(step_motor_driver_io_t *io_driver, const rmt_config_t *rmt_conf, st… in step_motor_create_rmt()
/hal_espressif-3.6.0/docs/en/api-reference/peripherals/
Drmt.rst113 …e parameters are configured by setting specific members of :cpp:type:`rmt_config_t` structure. Som…
171 Once the :cpp:type:`rmt_config_t` structure is populated with parameters, it should be then invoked…
/hal_espressif-3.6.0/docs/en/api-reference/system/
Dpower_management.rst105 … or XTAL is used as a clock source. See `flags` member of :cpp:class:`rmt_config_t` and macro `RMT…
/hal_espressif-3.6.0/components/driver/
Drmt.c557 static esp_err_t rmt_internal_config(rmt_dev_t *dev, const rmt_config_t *rmt_param) in rmt_internal_config()
682 esp_err_t rmt_config(const rmt_config_t *rmt_param) in rmt_config()