Home
last modified time | relevance | path

Searched refs:capture_id (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-3.6.0/tools/ci/python_packages/tiny_test_fw/
DDUT.py269 for capture_id in self.recorded_data:
270 self.recorded_data[capture_id].put(raw_data)
486 def start_capture_raw_data(self, capture_id='default'): argument
498 self.recorded_data[capture_id].flush()
501 self.recorded_data[capture_id] = _DataCache()
503 def stop_capture_raw_data(self, capture_id='default'): argument
513 ret = self.recorded_data[capture_id].get_data()
514 self.recorded_data.pop(capture_id)
/hal_espressif-3.6.0/examples/protocols/modbus/tcp/
Dexample_test.py79 self.dut.start_capture_raw_data(capture_id=self.dut.name)
104 self.data = self.dut.stop_capture_raw_data(capture_id=self.dut.name)
/hal_espressif-3.6.0/components/driver/test/
Dtest_pwm.c68 int capture_id = io_signal - MCPWM_CAP_0; in test_mcpwm_gpio_init() local
69 …onnect_in_signal(gpio_num, mcpwm_periph_signals.groups[mcpwm_num].captures[capture_id].cap_sig, 0); in test_mcpwm_gpio_init()
/hal_espressif-3.6.0/components/hal/esp32s3/include/hal/
Dmcpwm_ll.h255 static inline void mcpwm_ll_intr_enable_capture(mcpwm_dev_t *mcpwm, uint32_t capture_id, bool enabl… in mcpwm_ll_intr_enable_capture() argument
258 mcpwm->int_ena.val |= 1 << (27 + capture_id); in mcpwm_ll_intr_enable_capture()
260 mcpwm->int_ena.val &= ~(1 << (27 + capture_id)); in mcpwm_ll_intr_enable_capture()
/hal_espressif-3.6.0/components/hal/esp32/include/hal/
Dmcpwm_ll.h254 static inline void mcpwm_ll_intr_enable_capture(mcpwm_dev_t *mcpwm, uint32_t capture_id, bool enabl… in mcpwm_ll_intr_enable_capture() argument
257 mcpwm->int_ena.val |= 1 << (27 + capture_id); in mcpwm_ll_intr_enable_capture()
259 mcpwm->int_ena.val &= ~(1 << (27 + capture_id)); in mcpwm_ll_intr_enable_capture()
/hal_espressif-3.6.0/components/driver/
Dmcpwm.c157 int capture_id = io_signal - MCPWM_CAP_0; in mcpwm_gpio_init() local
158 …onnect_in_signal(gpio_num, mcpwm_periph_signals.groups[mcpwm_num].captures[capture_id].cap_sig, 0); in mcpwm_gpio_init()