/Zephyr-latest/boards/shields/npm6001_ek/ |
D | npm6001_ek.overlay | 25 /* limits are set to min/max allowed values */ 28 regulator-min-microvolt = <1800000>; 33 regulator-min-microvolt = <700000>; 38 regulator-min-microvolt = <1200000>; 43 regulator-min-microvolt = <500000>; 48 regulator-min-microvolt = <1800000>; 53 regulator-min-microvolt = <1800000>;
|
/Zephyr-latest/drivers/can/ |
D | can_common.c | 150 * @param min Pointer to the minimum supported timing parameter values. 156 const struct can_timing *min, const struct can_timing *max) in update_sample_pnt() argument 159 uint16_t tseg1_min = min->phase_seg1 + min->prop_seg; in update_sample_pnt() 165 tseg2 = CLAMP(tseg2, min->phase_seg2, max->phase_seg2); in update_sample_pnt() 182 if (tseg2 < min->phase_seg2) { in update_sample_pnt() 190 res->prop_seg = CLAMP(tseg1 / 2, min->prop_seg, max->prop_seg); in update_sample_pnt() 197 } else if (res->phase_seg1 < min->phase_seg1) { in update_sample_pnt() 199 res->phase_seg1 = min->phase_seg1; in update_sample_pnt() 241 * @param min Pointer to the minimum supported timing parameter values. 252 const struct can_timing *min, const struct can_timing *max, in can_calc_timing_internal() argument [all …]
|
/Zephyr-latest/include/zephyr/devicetree/ |
D | can.h | 36 * min-bitrate = <15000>; 50 * min-bitrate = <25000>; 71 * @param min minimum bitrate supported by the CAN controller 74 #define DT_CAN_TRANSCEIVER_MIN_BITRATE(node_id, min) \ argument 76 MAX(DT_PROP_OR(DT_PHANDLE(node_id, phys), min_bitrate, 0), min), \ 77 MAX(DT_PROP_OR(DT_CHILD(node_id, can_transceiver), min_bitrate, min), min)) 119 MIN(DT_PROP(DT_PHANDLE(node_id, phys), max_bitrate), max), \ 120 MIN(DT_PROP_OR(DT_CHILD(node_id, can_transceiver), max_bitrate, max), max)) 125 * @param min minimum bitrate supported by the CAN controller 129 #define DT_INST_CAN_TRANSCEIVER_MIN_BITRATE(inst, min) \ argument [all …]
|
/Zephyr-latest/dts/bindings/sensor/ |
D | ams,tmd2620.yaml | 42 description: count of IR led pulses (min. 1; max. 64) 46 description: high threshold for interrupt. (min. 0; max. 255) 50 description: low threshold for interrupt. (min. 0; max. 255) 56 LED drive strength in multiples of 6mA (min. 0; max. 31) 61 filters proximity interrupt. (min. 0; max. 15) 75 time the sensor waits between proximity cycles. (min. 0; max 255).
|
D | nordic,npm2100-vbat.yaml | 14 vout-min-microvolt: 21 vbat-min-microvolt:
|
/Zephyr-latest/drivers/video/ |
D | video_common.c | 108 uint64_t min = stepwise->min.numerator; in video_closest_frmival_stepwise() local 114 min *= stepwise->max.denominator * stepwise->step.denominator * desired->denominator; in video_closest_frmival_stepwise() 115 max *= stepwise->min.denominator * stepwise->step.denominator * desired->denominator; in video_closest_frmival_stepwise() 116 step *= stepwise->min.denominator * stepwise->max.denominator * desired->denominator; in video_closest_frmival_stepwise() 117 goal *= stepwise->min.denominator * stepwise->max.denominator * stepwise->step.denominator; in video_closest_frmival_stepwise() 119 /* Saturate the desired value to the min/max supported */ in video_closest_frmival_stepwise() 120 goal = CLAMP(goal, min, max); in video_closest_frmival_stepwise() 123 match->numerator = min + DIV_ROUND_CLOSEST(goal - min, step) * step; in video_closest_frmival_stepwise() 124 match->denominator = stepwise->min.denominator * stepwise->max.denominator * in video_closest_frmival_stepwise()
|
/Zephyr-latest/boards/shields/npm1300_ek/ |
D | npm1300_ek.overlay | 24 /* limits are set to min/max allowed values */ 26 regulator-min-microvolt = <1000000>; 31 regulator-min-microvolt = <1000000>; 36 regulator-min-microvolt = <1000000>; 41 regulator-min-microvolt = <1000000>;
|
/Zephyr-latest/soc/altr/zephyr_nios2f/cpu/ |
D | ghrd_timing.sdc | 22 set_output_delay -clock {clk_50 } -rise -min 11 [get_ports {qspi_io[*]}] 23 set_output_delay -clock {clk_50 } -rise -min 11 [get_ports {qspi_clk}] 24 set_output_delay -clock {clk_50 } -rise -min 11 [get_ports {qspi_csn}] 25 set_input_delay -clock {clk_50 } -rise -min 10 [get_ports {qspi_io[*]}]
|
/Zephyr-latest/samples/boards/st/power_mgmt/suspend_to_ram/boards/ |
D | nucleo_wba55cg.overlay | 8 /* Change min residency time to ease power consumption measurement */ 16 min-residency-us = <500000>; 20 min-residency-us = <1000000>; 24 min-residency-us = <2000000>;
|
/Zephyr-latest/tests/drivers/can/timing/src/ |
D | main.c | 102 const struct can_timing *min, in assert_timing_within_bounds() argument 111 zassert_true(timing->sjw >= min->sjw, "sjw lower than min"); in assert_timing_within_bounds() 112 zassert_true(timing->prop_seg >= min->prop_seg, "prop_seg lower than min"); in assert_timing_within_bounds() 113 zassert_true(timing->phase_seg1 >= min->phase_seg1, "phase_seg1 lower than min"); in assert_timing_within_bounds() 114 zassert_true(timing->phase_seg2 >= min->phase_seg2, "phase_seg2 lower than min"); in assert_timing_within_bounds() 115 zassert_true(timing->prescaler >= min->prescaler, "prescaler lower than min"); in assert_timing_within_bounds() 152 const struct can_timing *min = NULL; in test_timing_values() local 162 min = can_get_timing_data_min(dev); in test_timing_values() 169 min = can_get_timing_min(dev); in test_timing_values() 187 assert_timing_within_bounds(&timing, min, max); in test_timing_values()
|
/Zephyr-latest/samples/subsys/pm/latency/boards/ |
D | native_sim.overlay | 11 min-residency-us = <1000000>; 17 min-residency-us = <1100000>; 23 min-residency-us = <1200000>;
|
/Zephyr-latest/dts/bindings/clock/ |
D | litex,clk.yaml | 43 litex,divclk-divide-min: 53 litex,clkfbout-mult-min: 63 litex,vco-freq-min: 73 litex,clkout-divide-min:
|
/Zephyr-latest/tests/subsys/pm/policy_api/ |
D | app.overlay | 19 min-residency-us = <100000>; 27 min-residency-us = <1000000>; 35 min-residency-us = <500000>;
|
/Zephyr-latest/tests/subsys/pm/power_states_api/boards/ |
D | native_sim.overlay | 17 min-residency-us = <10000>; 24 min-residency-us = <20000>; 31 min-residency-us = <50000>;
|
/Zephyr-latest/drivers/watchdog/ |
D | wdt_opentitan.c | 76 * Minimum must be 0. Maximum must be > min. 78 * supported, the value x s.t. min < x < max and x is the largest valid timeout) 80 * Minimum must be >= bark.min, and maximum >= bark.max. If the timeout is too 81 * long to fit, it tries to find the value x s.t. min < x < max where x is the 99 (uint64_t) bite->window.min > max_window) { in ot_aontimer_install_timeout() 111 if (cfg->window.min > cfg->window.max || (uint64_t) cfg->window.min > max_window) { in ot_aontimer_install_timeout() 129 /* Saturate these config values; min is verified to be < max_window */ in ot_aontimer_install_timeout() 141 /* Saturate this config value; min is verified to be < max_window */ in ot_aontimer_install_timeout()
|
D | wdt_sam.c | 69 uint32_t max, min; in wdt_sam_convert_timeout() local 72 min = (SAM_PRESCALAR * 1000000) / sclk; in wdt_sam_convert_timeout() 73 max = min * WDT_MAX_VALUE; in wdt_sam_convert_timeout() 74 if ((timeout < min) || (timeout > max)) { in wdt_sam_convert_timeout() 76 "%d ms to %d ms", min / 1000U, max / 1000U); in wdt_sam_convert_timeout() 80 return WDT_MR_WDV(timeout / min); in wdt_sam_convert_timeout() 155 if (cfg->window.min != 0U) { in wdt_sam_install_timeout()
|
/Zephyr-latest/dts/bindings/ieee802154/ |
D | atmel,rf2xx.yaml | 63 for all transceivers. This property must be used with tx-pwr-min and 71 linear_step = (tx-pwr-max - tx-pwr-min) 77 tx-pwr-min = -17 dBm and tx-pwr-max = +4 dBm. Using 48 elements in the 80 tx-pwr-min = [01 11]; /* -17.0 dBm */ 99 Note when tx-pwr-min is [0x00, 0x00] and tx-pwr-max is [0x00, 0x00] 105 tx-pwr-min: 114 the combination of tx-pwr-min as [0x00, 0x00] and tx-pwr-max as [0x00, 126 combination of tx-pwr-max as [0x00, 0x00] and tx-pwr-min as [0x00,
|
/Zephyr-latest/ |
D | .gitlint | 22 [body-min-line-count] 23 # min-line-count=1 48 [body-min-length] 49 min-length=3
|
/Zephyr-latest/tests/kconfig/functions/ |
D | Kconfig | 94 default $(min, 10) 98 default $(min, 10, 3) 102 default $(min, 10, 3, 2)
|
/Zephyr-latest/tests/kconfig/functions/src/ |
D | main.c | 41 zassert_equal(CONFIG_KCONFIG_MIN_10_3, MIN(10, 3)); in ZTEST() 42 zassert_equal(CONFIG_KCONFIG_MIN_10_3_2, MIN(MIN(10, 3), 2)); in ZTEST()
|
/Zephyr-latest/tests/drivers/regulator/api/ |
D | app.overlay | 21 regulator-min-microvolt = <100>; 23 regulator-min-microamp = <100>;
|
/Zephyr-latest/dts/bindings/input/ |
D | analog-axis.yaml | 20 in-min = <100>; 46 out-min: 67 in-min:
|
/Zephyr-latest/tests/subsys/portability/cmsis_rtos_v1/src/ |
D | kernel_apis.c | 57 uint32_t start_time, stop_time, diff, max, min; in ZTEST() local 67 min = WAIT_TIME_US - (TOLERANCE_PPC * WAIT_TIME_US / 100); in ZTEST() 69 zassert_true(diff <= max && diff >= min, in ZTEST()
|
/Zephyr-latest/tests/drivers/video/api/src/ |
D | video_emul.c | 33 /* Test all the formats listed in the caps, the min and max values */ in ZTEST() 91 uint32_t min, max, step; in ZTEST() local 100 q.denominator = fie.stepwise.min.denominator * in ZTEST() 103 min = fie.stepwise.max.denominator * fie.stepwise.step.denominator * in ZTEST() 104 fie.stepwise.min.numerator; in ZTEST() 105 max = fie.stepwise.min.denominator * fie.stepwise.step.denominator * in ZTEST() 107 step = fie.stepwise.min.denominator * fie.stepwise.max.denominator * in ZTEST() 111 for (q.numerator = min; q.numerator <= max; q.numerator += step) { in ZTEST()
|
/Zephyr-latest/doc/_extensions/zephyr/doxytooltip/ |
D | __init__.py | 25 app.add_js_file("tippy/popper.min.js") 26 app.add_js_file("tippy/tippy-bundle.umd.min.js")
|