Home
last modified time | relevance | path

Searched full:max (Results 1 – 25 of 1514) sorted by relevance

12345678910>>...61

/Zephyr-Core-3.6.0/tests/drivers/build_all/sensor/
Dspi.dtsi16 spi-max-frequency = <0>;
23 spi-max-frequency = <0>;
30 spi-max-frequency = <0>;
36 spi-max-frequency = <0>;
43 spi-max-frequency = <0>;
49 spi-max-frequency = <0>;
56 spi-max-frequency = <0>;
63 spi-max-frequency = <0>;
70 spi-max-frequency = <0>;
77 spi-max-frequency = <0>;
[all …]
/Zephyr-Core-3.6.0/include/zephyr/devicetree/
Dcan.h36 * max-bitrate = <1000000>;
49 * max-bitrate = <2000000>;
60 * @param max maximum bitrate supported by the CAN controller
63 #define DT_CAN_TRANSCEIVER_MAX_BITRATE(node_id, max) \ argument
65 MIN(DT_PROP(DT_PHANDLE(node_id, phys), max_bitrate), max), \
66 MIN(DT_PROP_OR(DT_CHILD(node_id, can_transceiver), max_bitrate, max), max))
71 * @param max maximum bitrate supported by the CAN controller
75 #define DT_INST_CAN_TRANSCEIVER_MAX_BITRATE(inst, max) \ argument
76 DT_CAN_TRANSCEIVER_MAX_BITRATE(DT_DRV_INST(inst), max)
/Zephyr-Core-3.6.0/boards/shields/npm6001_ek/
Dnpm6001_ek.overlay25 /* limits are set to min/max allowed values */
29 regulator-max-microvolt = <3300000>;
34 regulator-max-microvolt = <1400000>;
39 regulator-max-microvolt = <1400000>;
44 regulator-max-microvolt = <3300000>;
49 regulator-max-microvolt = <3300000>;
54 regulator-max-microvolt = <1800000>;
/Zephyr-Core-3.6.0/dts/bindings/sdhc/
Dsdhc.yaml11 max-current-330:
15 Max drive current in mA at 3.3V. A value of zero indicates no maximum
18 max-current-300:
22 Max drive current in mA at 3.0V. A value of zero indicates no maximum
25 max-current-180:
29 Max drive current in mA at 1.8V. A value of zero indicates no maximum
32 max-bus-freq:
/Zephyr-Core-3.6.0/drivers/can/
Dcan_common.c102 * @param max Maximum timing parameters values.
108 const struct can_timing *max, in update_sampling_pnt() argument
111 uint16_t tseg1_max = max->phase_seg1 + max->prop_seg; in update_sampling_pnt()
118 tseg2 = CLAMP(tseg2, min->phase_seg2, max->phase_seg2); in update_sampling_pnt()
126 if (tseg2 > max->phase_seg2) { in update_sampling_pnt()
141 res->prop_seg = CLAMP(tseg1 / 2, min->prop_seg, max->prop_seg); in update_sampling_pnt()
144 if (res->phase_seg1 > max->phase_seg1) { in update_sampling_pnt()
146 res->phase_seg1 = max->phase_seg1; in update_sampling_pnt()
166 const struct can_timing *max, in can_calc_timing_int() argument
169 uint32_t ts = max->prop_seg + max->phase_seg1 + max->phase_seg2 + in can_calc_timing_int()
[all …]
/Zephyr-Core-3.6.0/tests/drivers/build_all/adc/boards/
Dnative_sim.overlay134 spi-max-frequency = <0>;
141 spi-max-frequency = <0>;
149 spi-max-frequency = <0>;
157 spi-max-frequency = <0>;
165 spi-max-frequency = <0>;
173 spi-max-frequency = <0>;
181 spi-max-frequency = <0>;
189 spi-max-frequency = <0>;
197 spi-max-frequency = <0>;
205 spi-max-frequency = <12000000>;
[all …]
/Zephyr-Core-3.6.0/tests/drivers/build_all/charger/
Di2c.dtsi15 constant-charge-current-max-microamp = <1000000>;
16 constant-charge-voltage-max-microvolt = <4208000>;
27 constant-charge-current-max-microamp = <100000>;
28 constant-charge-voltage-max-microvolt = <4050000>;
35 constant-charge-current-max-microamp = <500000>;
/Zephyr-Core-3.6.0/tests/drivers/build_all/dac/
Dapp.overlay91 spi-max-frequency = <0>;
107 spi-max-frequency = <0>;
123 spi-max-frequency = <0>;
139 spi-max-frequency = <0>;
146 spi-max-frequency = <0>;
153 spi-max-frequency = <0>;
161 spi-max-frequency = <0>;
169 spi-max-frequency = <0>;
177 spi-max-frequency = <0>;
185 spi-max-frequency = <0>;
[all …]
/Zephyr-Core-3.6.0/dts/bindings/sensor/
Dams,tmd2620.yaml42 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).
/Zephyr-Core-3.6.0/drivers/watchdog/
Dwdt_opentitan.c77 * The bark interrupt occurs at max (or if the timeout is too long to be
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
83 * The bite action occurs max.
98 if (bite == NULL || bite->window.max < cfg->window.max || 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()
127 bark_thold = ((uint64_t) cfg->window.max * dev_cfg->clk_freq / 1000); in ot_aontimer_install_timeout()
128 bite_thold = ((uint64_t) bite->window.max * dev_cfg->clk_freq / 1000); in ot_aontimer_install_timeout()
140 bite_thold = ((uint64_t) cfg->window.max * dev_cfg->clk_freq / 1000); in ot_aontimer_install_timeout()
[all …]
/Zephyr-Core-3.6.0/tests/drivers/spi/spi_loopback/boards/
Dsam_e70_xplained.overlay16 spi-max-frequency = <500000>;
21 spi-max-frequency = <1000000>;
34 spi-max-frequency = <500000>;
39 spi-max-frequency = <1000000>;
Dsam_v71_xult.overlay16 spi-max-frequency = <500000>;
21 spi-max-frequency = <1000000>;
34 spi-max-frequency = <500000>;
39 spi-max-frequency = <1000000>;
Dnucleo_g431rb.overlay14 spi-max-frequency = <500000>;
19 spi-max-frequency = <16000000>;
34 * SPI_LOOPBACK_SLOW_FREQ = 500000 with max prescaler 256
Dnucleo_g474re.overlay11 * with max prescaler 256
23 spi-max-frequency = <500000>;
28 spi-max-frequency = <16000000>;
/Zephyr-Core-3.6.0/tests/drivers/spi/spi_loopback/
Doverlay-sam-spi-dma.overlay20 spi-max-frequency = <500000>;
25 spi-max-frequency = <1000000>;
38 spi-max-frequency = <500000>;
43 spi-max-frequency = <1000000>;
/Zephyr-Core-3.6.0/samples/basic/sys_heap/
DREADME.rst38 allocated 0, free 196, max allocated 0, heap size 256
39 allocated 156, free 36, max allocated 156, heap size 256
40 allocated 100, free 92, max allocated 156, heap size 256
41 allocated 0, free 196, max allocated 156, heap size 256
/Zephyr-Core-3.6.0/subsys/net/lib/dhcpv6/
Ddhcpv6_internal.h51 #define DHCPV6_SOL_MAX_DELAY 1000 /* Max delay of first Solicit, milliseconds */
53 #define DHCPV6_SOL_MAX_RT 3600000 /* Max Solicit timeout value, milliseconds */
55 #define DHCPV6_REQ_MAX_RT 30000 /* Max Request timeout value, milliseconds */
56 #define DHCPV6_REQ_MAX_RC 10 /* Max Request retry attempts */
57 #define DHCPV6_CNF_MAX_DELAY 1000 /* Max delay of first Confirm, milliseconds */
59 #define DHCPV6_CNF_MAX_RT 4000 /* Max Confirm timeout, milliseconds */
60 #define DHCPV6_CNF_MAX_RD 10000 /* Max Confirm duration, milliseconds */
62 #define DHCPV6_REN_MAX_RT 600000 /* Max Renew timeout value, milliseconds */
64 #define DHCPV6_REB_MAX_RT 600000 /* Max Rebind timeout value, milliseconds */
/Zephyr-Core-3.6.0/subsys/portability/cmsis_rtos_v2/
DKconfig23 Mention max number of threads in CMSIS RTOS V2 compliant application.
32 Mention max number of dynamic threads in CMSIS RTOS V2 compliant
38 int "Max stack size threads can be allocated in CMSIS RTOS V2 application"
42 Mention max stack size threads can be allocated in CMSIS RTOS V2 application.
63 Mention max number of mutexes in CMSIS RTOS V2 compliant application.
70 Mention max number of semaphores in CMSIS RTOS V2 compliant application.
/Zephyr-Core-3.6.0/
D.gitlint4 ignore=title-trailing-punctuation, T3, title-max-length, T1, body-hard-tab, B3, B1
19 [title-max-length-no-revert]
25 [body-max-line-count]
26 # max-line-count=200
44 [max-line-length-with-exceptions]
45 # B1 = body-max-line-length
/Zephyr-Core-3.6.0/samples/drivers/jesd216/
DREADME.rst45 ET1: instr 20h for 4096 By; typ 48 ms, max 384 ms
46 ET2: instr 52h for 32768 By; typ 240 ms, max 1920 ms
47 ET3: instr D8h for 65536 By; typ 480 ms, max 3840 ms
48 Chip erase: typ 6144 ms, max 36864 ms
49 Byte program: type 32 + 1 * B us, max 192 + 6 * B us
50 Page program: typ 896 us, max 5376 us
/Zephyr-Core-3.6.0/boards/shields/npm1300_ek/
Dnpm1300_ek.overlay24 /* limits are set to min/max allowed values */
27 regulator-max-microvolt = <3300000>;
32 regulator-max-microvolt = <3300000>;
37 regulator-max-microvolt = <3300000>;
42 regulator-max-microvolt = <3300000>;
/Zephyr-Core-3.6.0/dts/bindings/ieee802154/
Datmel,rf2xx.yaml64 tx-pwr-max for normal operations. The number of elements is defined by
65 the size of the tx-pwr-table array property. The max entry value for
71 linear_step = (tx-pwr-max - tx-pwr-min)
73 table_index = abs((value_in_dbm - tx-pwr-max) / linear_step);
77 tx-pwr-min = -17 dBm and tx-pwr-max = +4 dBm. Using 48 elements in the
81 tx-pwr-max = [00 04]; /* 4.0 dBm */
99 Note when tx-pwr-min is [0x00, 0x00] and tx-pwr-max is [0x00, 0x00]
114 the combination of tx-pwr-min as [0x00, 0x00] and tx-pwr-max as [0x00,
117 tx-pwr-max:
126 combination of tx-pwr-max as [0x00, 0x00] and tx-pwr-min as [0x00,
/Zephyr-Core-3.6.0/drivers/console/
DKconfig.gsm_mux15 int "Max number of GSM mux instances"
23 int "Max number of GSM data link connection (DLC) instances"
55 int "Max number of pending GSM mux commands"
76 int "Max size of received user data (MRU)"
82 Max MRU (Maximum Receive Unit) data size. The default max
/Zephyr-Core-3.6.0/tests/drivers/pinctrl/gd32/boards/
Dgd32f450i_eval.overlay45 slew-rate = "max-speed-2mhz";
49 slew-rate = "max-speed-25mhz";
53 slew-rate = "max-speed-50mhz";
57 slew-rate = "max-speed-200mhz";
/Zephyr-Core-3.6.0/subsys/bluetooth/audio/
DKconfig.mpl29 int "Max length of media player name"
43 int "Max length of media player icon URL"
51 int "Max length of the title of a track"
59 int "Max length of the name of a track segment"
67 int "Max length of the title of a group of tracks"

12345678910>>...61