Home
last modified time | relevance | path

Searched refs:threshold (Results 1 – 25 of 70) sorted by relevance

123

/hal_espressif-2.7.6/components/driver/
Dtouch_sensor_common.c188 esp_err_t touch_pad_set_thresh(touch_pad_t touch_num, uint16_t threshold) in touch_pad_set_thresh() argument
192 touch_hal_set_threshold(touch_num, threshold); in touch_pad_set_thresh()
197 esp_err_t touch_pad_set_thresh(touch_pad_t touch_num, uint32_t threshold) in touch_pad_set_thresh() argument
203 touch_hal_set_threshold(touch_num, threshold); in touch_pad_set_thresh()
210 esp_err_t touch_pad_get_thresh(touch_pad_t touch_num, uint16_t *threshold) in touch_pad_get_thresh() argument
213 touch_hal_get_threshold(touch_num, threshold); in touch_pad_get_thresh()
217 esp_err_t touch_pad_get_thresh(touch_pad_t touch_num, uint32_t *threshold) in touch_pad_get_thresh() argument
222 touch_hal_get_threshold(touch_num, threshold); in touch_pad_get_thresh()
/hal_espressif-2.7.6/components/hal/include/hal/
Dtouch_sensor_hal.h136 #define touch_hal_set_threshold(touch_num, threshold) touch_ll_set_threshold(touch_num, threshold) argument
144 #define touch_hal_get_threshold(touch_num, threshold) touch_ll_get_threshold(touch_num, threshold) argument
Dbrownout_hal.h33 uint8_t threshold; member
/hal_espressif-2.7.6/examples/system/ulp_adc/
DREADME.md8 …o two thresholds. If the voltage is less than the low threshold, or higher than the high threshold
35 Value=973 was below threshold
41 Value=0 was below threshold
47 Value=0 was below threshold
/hal_espressif-2.7.6/components/mbedtls/port/
Dmbedtls_debug.c30 void mbedtls_esp_enable_debug_log(mbedtls_ssl_config *conf, int threshold) in mbedtls_esp_enable_debug_log() argument
33 mbedtls_debug_set_threshold(threshold); in mbedtls_esp_enable_debug_log()
35 switch(threshold) { in mbedtls_esp_enable_debug_log()
/hal_espressif-2.7.6/components/hal/esp32/include/hal/
Dtouch_sensor_ll.h290 static inline void touch_ll_set_threshold(touch_pad_t touch_num, uint16_t threshold) in touch_ll_set_threshold() argument
294 SENS.touch_thresh[tp_wrap / 2].l_thresh = threshold; in touch_ll_set_threshold()
296 SENS.touch_thresh[tp_wrap / 2].h_thresh = threshold; in touch_ll_set_threshold()
306 static inline void touch_ll_get_threshold(touch_pad_t touch_num, uint16_t *threshold) in touch_ll_get_threshold() argument
309 if (threshold) { in touch_ll_get_threshold()
310 *threshold = (tp_wrap & 0x1 ) ? in touch_ll_get_threshold()
/hal_espressif-2.7.6/components/driver/esp32/include/driver/
Dtouch_sensor.h36 esp_err_t touch_pad_config(touch_pad_t touch_num, uint16_t threshold);
169 esp_err_t touch_pad_set_thresh(touch_pad_t touch_num, uint16_t threshold);
179 esp_err_t touch_pad_get_thresh(touch_pad_t touch_num, uint16_t *threshold);
/hal_espressif-2.7.6/components/hal/esp32s2/include/hal/
Dtouch_sensor_hal.h142 #define touch_hal_timeout_set_threshold(threshold) touch_ll_timeout_set_threshold(threshold) argument
150 #define touch_hal_timeout_get_threshold(threshold) touch_ll_timeout_get_threshold(threshold) argument
Dtouch_sensor_ll.h322 static inline void touch_ll_set_threshold(touch_pad_t touch_num, uint32_t threshold) in touch_ll_set_threshold() argument
324 SENS.touch_thresh[touch_num - 1].thresh = threshold; in touch_ll_set_threshold()
335 static inline void touch_ll_get_threshold(touch_pad_t touch_num, uint32_t *threshold) in touch_ll_get_threshold() argument
337 *threshold = SENS.touch_thresh[touch_num - 1].thresh; in touch_ll_get_threshold()
613 static inline void touch_ll_timeout_set_threshold(uint32_t threshold) in touch_ll_timeout_set_threshold() argument
615 RTCCNTL.touch_timeout_ctrl.touch_timeout_num = threshold; in touch_ll_timeout_set_threshold()
624 static inline void touch_ll_timeout_get_threshold(uint32_t *threshold) in touch_ll_timeout_get_threshold() argument
626 *threshold = RTCCNTL.touch_timeout_ctrl.touch_timeout_num; in touch_ll_timeout_get_threshold()
/hal_espressif-2.7.6/components/hal/esp32s3/include/hal/
Dtouch_sensor_hal.h142 #define touch_hal_timeout_set_threshold(threshold) touch_ll_timeout_set_threshold(threshold) argument
150 #define touch_hal_timeout_get_threshold(threshold) touch_ll_timeout_get_threshold(threshold) argument
Dtouch_sensor_ll.h322 static inline void touch_ll_set_threshold(touch_pad_t touch_num, uint32_t threshold) in touch_ll_set_threshold() argument
324 SENS.touch_thresh[touch_num - 1].thresh = threshold; in touch_ll_set_threshold()
335 static inline void touch_ll_get_threshold(touch_pad_t touch_num, uint32_t *threshold) in touch_ll_get_threshold() argument
337 *threshold = SENS.touch_thresh[touch_num - 1].thresh; in touch_ll_get_threshold()
613 static inline void touch_ll_timeout_set_threshold(uint32_t threshold) in touch_ll_timeout_set_threshold() argument
615 RTCCNTL.touch_timeout_ctrl.touch_timeout_num = threshold; in touch_ll_timeout_set_threshold()
624 static inline void touch_ll_timeout_get_threshold(uint32_t *threshold) in touch_ll_timeout_get_threshold() argument
626 *threshold = RTCCNTL.touch_timeout_ctrl.touch_timeout_num; in touch_ll_timeout_get_threshold()
/hal_espressif-2.7.6/examples/wifi/roaming/main/
DKconfig.projbuild16 int "WiFi RSSI threshold to trigger roaming"
19 … WiFi RSSI threshold to trigger roaming value in dbm (-100 to 0). 0 denotes feature is disabled.
/hal_espressif-2.7.6/docs/en/api-guides/
Dulp_instruction_set.rst479 - *Threshold* – threshold value for branch condition
481 - *EQ* (equal) – jump if value in R0 == threshold
482 - *LT* (less than) – jump if value in R0 < threshold
483 - *LE* (less or equal) – jump if value in R0 <= threshold
484 - *GT* (greater than) – jump if value in R0 > threshold
485 - *GE* (greater or equal) – jump if value in R0 >= threshold
493 // JUMPR target, threshold, GT is implemented as:
495 JUMPR target, threshold+1, GE
497 // JUMPR target, threshold, LE is implemented as:
499 JUMPR target, threshold + 1, LT
[all …]
Dulps2_instruction_set.rst718 - *Threshold* – threshold value for branch condition
720 - *EQ* (equal) – jump if value in R0 == threshold
721 - *LT* (less than) – jump if value in R0 < threshold
722 - *LE* (less or equal) – jump if value in R0 <= threshold
723 - *GT* (greater than) – jump if value in R0 > threshold
724 - *GE* (greater or equal) – jump if value in R0 >= threshold
731 // JUMPR target, threshold, LE is implemented as:
733 JUMPR target, threshold, EQ
734 JUMPR target, threshold, LT
736 // JUMPR target, threshold, GE is implemented as:
[all …]
/hal_espressif-2.7.6/components/driver/esp32s2/include/driver/
Dtouch_sensor.h108 esp_err_t touch_pad_set_thresh(touch_pad_t touch_num, uint32_t threshold);
118 esp_err_t touch_pad_get_thresh(touch_pad_t touch_num, uint32_t *threshold);
242 esp_err_t touch_pad_timeout_set(bool enable, uint32_t threshold);
/hal_espressif-2.7.6/components/driver/esp32s3/include/driver/
Dtouch_sensor.h108 esp_err_t touch_pad_set_thresh(touch_pad_t touch_num, uint32_t threshold);
118 esp_err_t touch_pad_get_thresh(touch_pad_t touch_num, uint32_t *threshold);
240 esp_err_t touch_pad_timeout_set(bool enable, uint32_t threshold);
/hal_espressif-2.7.6/examples/peripherals/touch_pad_interrupt/
DREADME.md10 …detects the pulse counts. If the number of pulse counts exceeds the set threshold, a hardware inte…
12 …. In certain cases we may need to use additional routines to adjust the threshold level dynamicall…
16 - The hardware interrupt mode occupies less CPU resources, but only a single threshold can be set a…
36threshold is set up automatically at start up by performing simple calibration. Application is rea…
42 …detects the pulse counts. If the number of pulse counts exceeds the set threshold, a hardware inte…
/hal_espressif-2.7.6/examples/wifi/fast_scan/main/
DKconfig.projbuild40 bool "fast scan threshold"
43 wifi fast scan threshold
Dfast_scan.c108 .threshold.rssi = DEFAULT_RSSI, in fast_scan()
109 .threshold.authmode = DEFAULT_AUTHMODE, in fast_scan()
/hal_espressif-2.7.6/components/esp_wifi/include/
Desp_mesh_internal.h204 esp_err_t esp_mesh_set_rssi_threshold(const mesh_rssi_threshold_t *threshold);
215 esp_err_t esp_mesh_get_rssi_threshold(mesh_rssi_threshold_t *threshold);
/hal_espressif-2.7.6/components/mbedtls/port/include/mbedtls/
Desp_debug.h45 void mbedtls_esp_enable_debug_log(mbedtls_ssl_config *conf, int threshold);
/hal_espressif-2.7.6/examples/peripherals/touch_pad_read/
DREADME.md12 …ts for each individual sensor. Then a threshold between both values should be established. Using s…
31 …ts for each individual sensor. Then a threshold between both values should be established. Using s…
/hal_espressif-2.7.6/examples/system/deep_sleep/main/
Ddeep_sleep_example_main.c304 int threshold = avg - 100; in calibrate_touch_pad() local
305 printf("Touch pad #%d average: %d, wakeup threshold set to %d.\n", pad, avg, threshold); in calibrate_touch_pad()
306 touch_pad_config(pad, threshold); in calibrate_touch_pad()
/hal_espressif-2.7.6/components/hal/esp32/
Dbrownout_hal.c26 .thres = cfg->threshold, in brownout_hal_config()
/hal_espressif-2.7.6/components/freertos/port/riscv/include/freertos/
Dportmacro.h104 uint32_t threshold = REG_READ(INTERRUPT_CORE0_CPU_INT_THRESH_REG); in xPortCanYield() local
109 return (threshold <= 1); in xPortCanYield()

123