Home
last modified time | relevance | path

Searched refs:PCNT_EVT_L_LIM (Results 1 – 9 of 9) sorted by relevance

/hal_espressif-2.7.6/components/hal/esp32/include/hal/
Dpcnt_ll.h200 if (evt_type == PCNT_EVT_L_LIM) { in pcnt_ll_event_enable()
223 if (evt_type == PCNT_EVT_L_LIM) { in pcnt_ll_event_disable()
248 if (evt_type == PCNT_EVT_L_LIM) { in pcnt_ll_set_event_value()
270 if (evt_type == PCNT_EVT_L_LIM) { in pcnt_ll_get_event_value()
/hal_espressif-2.7.6/components/hal/esp32s2/include/hal/
Dpcnt_ll.h200 if (evt_type == PCNT_EVT_L_LIM) { in pcnt_ll_event_enable()
223 if (evt_type == PCNT_EVT_L_LIM) { in pcnt_ll_event_disable()
248 if (evt_type == PCNT_EVT_L_LIM) { in pcnt_ll_set_event_value()
270 if (evt_type == PCNT_EVT_L_LIM) { in pcnt_ll_get_event_value()
/hal_espressif-2.7.6/components/hal/esp32s3/include/hal/
Dpcnt_ll.h200 if (evt_type == PCNT_EVT_L_LIM) { in pcnt_ll_event_enable()
223 if (evt_type == PCNT_EVT_L_LIM) { in pcnt_ll_event_disable()
248 if (evt_type == PCNT_EVT_L_LIM) { in pcnt_ll_set_event_value()
270 if (evt_type == PCNT_EVT_L_LIM) { in pcnt_ll_get_event_value()
/hal_espressif-2.7.6/examples/peripherals/pcnt/pulse_count_event/main/
Dpcnt_event_example_main.c142 pcnt_event_enable(unit, PCNT_EVT_L_LIM); in pcnt_example_init()
183 if (evt.status & PCNT_EVT_L_LIM) { in app_main()
/hal_espressif-2.7.6/examples/peripherals/pcnt/rotary_encoder/components/rotary_encoder/src/
Drotary_encoder_pcnt_ec11.c99 } else if (status & PCNT_EVT_L_LIM) { in ec11_pcnt_overflow_handler()
149 pcnt_event_enable(ec11->pcnt_unit, PCNT_EVT_L_LIM); in rotary_encoder_new_ec11()
/hal_espressif-2.7.6/components/hal/include/hal/
Dpcnt_types.h87 PCNT_EVT_L_LIM = BIT(4), /*!< PCNT watch point event: Minimum counter value */ enumerator
/hal_espressif-2.7.6/components/driver/test/
Dtest_pcnt.c126 if (status & PCNT_EVT_L_LIM) { in event_calculate()
501 …TEST_ESP_OK(pcnt_event_enable(PCNT_UNIT_0, PCNT_EVT_L_LIM)); // when arrive to minimum limit trig…
550 TEST_ESP_OK(pcnt_event_disable(PCNT_UNIT_0, PCNT_EVT_L_LIM));
601 …TEST_ESP_OK(pcnt_event_enable(PCNT_UNIT_0, PCNT_EVT_L_LIM)); // when arrive to minimum limit trig…
652 TEST_ESP_OK(pcnt_event_disable(PCNT_UNIT_0, PCNT_EVT_L_LIM));
/hal_espressif-2.7.6/components/driver/
Dpcnt.c187 …PCNT_CHECK(!(evt_type == PCNT_EVT_L_LIM && value > 0), PCNT_LIMT_VAL_ERR_STR, ESP_ERR_INVALID_ARG); in _pcnt_set_event_value()
359 _pcnt_set_event_value(pcnt_port, unit, PCNT_EVT_L_LIM, pcnt_config->counter_l_lim); in _pcnt_unit_config()
362 _pcnt_event_disable(pcnt_port, unit, PCNT_EVT_L_LIM); in _pcnt_unit_config()
/hal_espressif-2.7.6/tools/unit-test-app/components/test_utils/
Dref_clock_impl_rmt_pcnt.c115 pcnt_ll_event_disable(s_pcnt_hal.dev, REF_CLOCK_PCNT_UNIT, PCNT_EVT_L_LIM); in ref_clock_init()