Home
last modified time | relevance | path

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

1234567

/Zephyr-4.3.0/tests/lib/cmsis_dsp/common/
Dtest_common.h176 float64_t threshold) in test_near_equal_f64() argument
181 if (fabs(a[index] - b[index]) > threshold) { in test_near_equal_f64()
191 float32_t threshold) in test_near_equal_f32() argument
196 if (fabsf(a[index] - b[index]) > threshold) { in test_near_equal_f32()
207 float16_t threshold) in test_near_equal_f16() argument
212 if (fabsf((float)a[index] - (float)b[index]) > (float)threshold) { in test_near_equal_f16()
222 size_t length, const q63_t *a, const q63_t *b, q63_t threshold) in test_near_equal_q63() argument
227 if (llabs(a[index] - b[index]) > threshold) { in test_near_equal_q63()
236 size_t length, const q31_t *a, const q31_t *b, q31_t threshold) in test_near_equal_q31() argument
241 if (abs(a[index] - b[index]) > threshold) { in test_near_equal_q31()
[all …]
/Zephyr-4.3.0/samples/subsys/cpu_freq/on_demand/
Dpstate-stub.overlay11 load-threshold = <50>;
17 load-threshold = <20>;
23 load-threshold = <0>;
/Zephyr-4.3.0/tests/subsys/cpu_freq/cpu_freq_soc/
Dpstate-stub.overlay11 load-threshold = <50>;
17 load-threshold = <20>;
23 load-threshold = <0>;
/Zephyr-4.3.0/tests/subsys/cpu_freq/policies/on_demand/
Dpstate-stub.overlay11 load-threshold = <50>;
17 load-threshold = <20>;
23 load-threshold = <0>;
/Zephyr-4.3.0/drivers/sensor/nuvoton/nuvoton_adc_cmp_npcx/
DKconfig9 bool "Nuvoton NPCX ADC threshold detection interruption"
13 This option enables threshold interruption using sensor
19 bool "NPCX ADC threshold detection uses internal work queue"
30 This option sets internal ADC NPCX threshold detection workqueue
37 This option sets internal ADC NPCX threshold detection workqueue
/Zephyr-4.3.0/boards/shields/rtk0eg0019b01002bj/boards/
Drssk_ra2l1.overlay30 threshold = <769>;
36 threshold = <740>;
42 threshold = <784>;
61 threshold = <573>;
79 threshold = <711>;
/Zephyr-4.3.0/samples/drivers/w1/scanner/
Dds2485.overlay7 switching-threshold = "medium";
8 active-pull-threshold = "low";
/Zephyr-4.3.0/drivers/sensor/ite/ite_vcmp_it8xxx2/
DKconfig25 bool "ITE it8xxx2 voltage comparator threshold detection uses internal work queue"
33 int "ITE it8xxx2 voltage comparator threshold detection work queue priority"
36 This option sets internal ITE voltage comparator threshold detection
40 int "ITE it8xxx2 voltage comparator threshold detection work queue stack size"
43 This option sets internal ITE voltage comparator threshold detection
/Zephyr-4.3.0/tests/drivers/w1/w1_api/
Dds2485.overlay7 switching-threshold = "medium";
8 active-pull-threshold = "low";
/Zephyr-4.3.0/include/zephyr/drivers/dma/
Ddma_gd32.h18 #define GD32_DMA_FEATURES_FIFO_THRESHOLD(threshold) (threshold & 0x3) argument
/Zephyr-4.3.0/tests/drivers/build_all/stepper/
Dspi.dtsi31 stallguard2-threshold = <30>;
54 stallguard-threshold-velocity = <200000>;
62 stallguard2-threshold = <9>;
71 stallguard-threshold-velocity = <500000>;
106 stallguard2-threshold = <9>;
116 stallguard-threshold-velocity = <50000>;
155 stallguard2-threshold = <9>;
165 stallguard-threshold-velocity = <50000>;
/Zephyr-4.3.0/drivers/sensor/wsen/wsen_pads_2511020213301/
Dwsen_pads_2511020213301_trigger.c222 int pads_2511020213301_threshold_set(const struct device *dev, const struct sensor_value *threshold) in pads_2511020213301_threshold_set() argument
226 if (PADS_setPressureThreshold(&data->sensor_interface, (uint32_t)threshold->val1) != in pads_2511020213301_threshold_set()
236 int pads_2511020213301_threshold_get(const struct device *dev, struct sensor_value *threshold) in pads_2511020213301_threshold_get() argument
241 if (PADS_getPressureThreshold(&data->sensor_interface, (uint32_t *)&threshold->val1) != in pads_2511020213301_threshold_get()
318 struct sensor_value threshold; in pads_2511020213301_init_interrupt() local
320 threshold.val1 = cfg->threshold; in pads_2511020213301_init_interrupt()
321 threshold.val2 = 0; in pads_2511020213301_init_interrupt()
322 if (pads_2511020213301_threshold_set(dev, &threshold) < 0) { in pads_2511020213301_init_interrupt()
Dwsen_pads_2511020213301.h82 const uint16_t threshold; member
98 const struct sensor_value *threshold);
100 int pads_2511020213301_threshold_get(const struct device *dev, struct sensor_value *threshold);
/Zephyr-4.3.0/samples/sensor/proximity_polling/boards/
Dnrf52840dk_nrf52840.overlay17 proximity-high-threshold = <255>;
18 proximity-low-threshold = <0>;
/Zephyr-4.3.0/tests/drivers/build_all/charger/
Di2c.dtsi32 system-voltage-min-threshold-microvolt = <3600000>;
33 re-charge-threshold-microvolt = <170000>;
51 re-charge-threshold-millivolt = <200>;
73 system-voltage-min-threshold-microvolt = <3328000>;
/Zephyr-4.3.0/samples/drivers/charger/
DKconfig11 int "Discharge notification threshold in µA"
19 int "System voltage notification falling threshold in µV"
/Zephyr-4.3.0/drivers/sensor/wsen/wsen_tids_2521020222501/
Dwsen_tids_2521020222501_trigger.c92 struct sensor_value threshold; in tids_2521020222501_trigger_set() local
97 threshold.val1 = data->sensor_low_threshold / 1000; in tids_2521020222501_trigger_set()
98 threshold.val2 = ((int32_t)data->sensor_low_threshold % 1000) * (1000000 / 1000); in tids_2521020222501_trigger_set()
101 dev, (handler == NULL) ? &interruptOFF : &threshold) < 0) { in tids_2521020222501_trigger_set()
110 threshold.val1 = data->sensor_high_threshold / 1000; in tids_2521020222501_trigger_set()
111 threshold.val2 = ((int32_t)data->sensor_high_threshold % 1000) * (1000000 / 1000); in tids_2521020222501_trigger_set()
114 dev, (handler == NULL) ? &interruptOFF : &threshold) < 0) { in tids_2521020222501_trigger_set()
/Zephyr-4.3.0/samples/boards/renesas/ctsu_input/src/qe_generated_files/
Dqe_touch_config.c84 .threshold = 2056,
90 .threshold = 2865,
105 .threshold = 1157,
/Zephyr-4.3.0/drivers/sensor/adi/adxl372/
DKconfig28 In this mode the device returns only the over threshold
40 int "Activity threshold in mg"
47 int "In-activity threshold in mg"
61 Number of multiples of 3.3 ms activity timer for which above threshold
71 threshold for an inactivity event to be detected. Number of multiples
72 of 26 ms inactivity timer for which below threshold acceleration is
82 compared directly to a user set threshold to determine whether
84 activity detection to be based not on an absolute threshold,
/Zephyr-4.3.0/samples/sensor/thermometer/boards/
Dnucleo_h7a3zi_q.overlay29 lower-threshold = <27>;
30 upper-threshold = <28>;
/Zephyr-4.3.0/drivers/ieee802154/
DKconfig.esp3245 bool "Energy above threshold"
47 Configure the CCA mode to Energy above threshold
50 bool "Carrier sense OR energy above threshold"
52 Configure the CCA mode to Carrier sense OR energy above threshold
55 bool "Carrier sense AND energy above threshold"
57 Configure the CCA mode to Carrier sense AND energy above threshold
69 int "CCA detection threshold"
73 Set the CCA threshold, in dB.
/Zephyr-4.3.0/drivers/entropy/
DKconfig.smartbond27 int "Thread-mode random number pool low-water threshold"
30 Low water-mark threshold in bytes to trigger entropy generation for
45 int "ISR-mode random number pool low-water threshold"
48 Low water-mark threshold in bytes to trigger entropy generation for
/Zephyr-4.3.0/drivers/sensor/st/stts751/
DKconfig63 int "High temperature threshold alarm"
66 HIGH temperature threshold to trigger an alarm
70 int "Low temperature threshold alarm"
73 LOW temperature threshold to trigger an alarm
/Zephyr-4.3.0/drivers/ethernet/
DKconfig.nxp_s32_netc69 int "RX interrupt coalescing packet threshold"
73 RX interrupt coalescing packet threshold. This values determines the
77 int "RX interrupt coalescing timer threshold"
81 RX interrupt coalescing timer threshold, in units of NETC clock cycles.
83 received packet until RX interrupt coalescing packet threshold is reached.
84 If the timer expires before the threshold is reached, an interrupt is
/Zephyr-4.3.0/doc/services/cpu_freq/policies/
Don_demand.rst7 :ref:`CPU Load metric <cpu_load_metric>`, and compares it to the trigger threshold defined by the
11 the CPU load is greater than or equal to the defined threshold.
15 policy: P-states must be defined in decreasing threshold order in devicetree, and the last

1234567