Home
last modified time | relevance | path

Searched full:desired (Results 1 – 25 of 270) sorted by relevance

1234567891011

/Zephyr-Core-3.7.0/dts/bindings/sensor/
Dmaxim,max17055.yaml24 desired-voltage:
27 description: Battery Desired Voltage in mV (3300 to 4400)
29 desired-charging-current:
Dmaxim,max17262.yaml19 desired-voltage:
22 description: Battery Desired Voltage in mV (3300 to 4400)
24 desired-charging-current:
Dhamamatsu,s11059.yaml24 By setting this value to the desired integration time,
Drohm,bh1750.yaml23 is desired.
/Zephyr-Core-3.7.0/dts/bindings/coredump/
Dzephyr,coredump.yaml8 description: Pseudo-device to help capturing desired data into core dumps
24 memory-regions array with a size of 0 and a desired size. The coredump device will
25 statically allocate a block of memory of the desired size and provide a callback with a
/Zephyr-Core-3.7.0/samples/sensor/max17262/
Dapp.overlay14 desired-voltage = <3600>;
15 desired-charging-current = <2000>;
/Zephyr-Core-3.7.0/doc/hardware/peripherals/
Dcoredump.rst13 array with a size of 0 and a desired size. The driver will statically allocate memory
14 of the desired size and provide an API to register a callback function to fill that
/Zephyr-Core-3.7.0/kernel/
Devents.c12 * ISR posts the desired set of events to the event object. Each time events
78 * @brief determine if desired set of events been satisfied
80 * This routine determines if the current set of events satisfies the desired
82 * all the desired events must be present to satisfy the request. If @a
85 * current set of events are present in the desired set of events.
87 static bool are_wait_conditions_met(uint32_t desired, uint32_t current, in are_wait_conditions_met() argument
90 uint32_t match = current & desired; in are_wait_conditions_met()
93 return match == desired; in are_wait_conditions_met()
284 * The caller must pend to wait for the match. Save the desired in k_event_wait_internal()
/Zephyr-Core-3.7.0/drivers/sensor/maxim/max17262/
Dmax17262.h55 /* Desired charging current in mA */
83 /* Desired voltage of cell in mV */
85 /* Desired charging current in mA */
/Zephyr-Core-3.7.0/include/zephyr/drivers/
Dmipi_dbi.h50 * @param operation_ the desired operation field in the struct spi_config
51 * @param delay_ the desired delay field in the struct spi_config's
78 * @param operation_ the desired operation field in the struct spi_config
79 * @param delay_ the desired delay field in the struct spi_config's
93 * @param operation_ the desired operation field in the struct spi_config
94 * @param delay_ the desired delay field in the struct spi_config's
108 * @param operation_ the desired operation field in the struct spi_config
109 * @param delay_ the desired delay field in the struct spi_config's
/Zephyr-Core-3.7.0/dts/bindings/pwm/
Despressif,esp32-ledc.yaml29 If another GPIO mapping is desired, check if <board>-pinctrl.dtsi already have it defined,
34 Before including a new node, check if the desired mapping is available according to the SoC.
52 Use the child bindings to configure the desired channel:
/Zephyr-Core-3.7.0/dts/bindings/net/wireless/
Dgeneric-fem-two-ctrl-pins.yaml38 Desired minimum settling time, in microseconds, from
44 Desired minimum settling time, in microseconds, from
/Zephyr-Core-3.7.0/samples/boards/stm32/mco/
Dprj.conf1 # Set MCO1 source to desired clock.
/Zephyr-Core-3.7.0/soc/nordic/nrf54l/
Dsoc.c65 * where CAPACITANCE is the desired capacitor value in pF, holding any in nordicsemi_nrf54l_init()
69 /* Encoding of desired capacitance (single ended) to value required for INTCAP core in nordicsemi_nrf54l_init()
73 * NOTE: The desired capacitance value is used in encoded from in INTCAP calculation formula in nordicsemi_nrf54l_init()
119 * where CAPACITANCE is the desired total load capacitance value in pF, in nordicsemi_nrf54l_init()
/Zephyr-Core-3.7.0/dts/bindings/power-domain/
Dintel,adsp-power-domain.yaml18 for a desired domain.
/Zephyr-Core-3.7.0/drivers/coredump/
DKconfig8 desired data into core dumps.
/Zephyr-Core-3.7.0/drivers/sensor/maxim/max17055/
Dmax17055.h80 /* Desired voltage of cell in mV */
82 /* Desired charging current in mA */
/Zephyr-Core-3.7.0/dts/bindings/i2c/
Dmicrochip,mpfs-i2c.yaml23 Desired I2C bus clock frequency in Hz. As only Standard and Fast
/Zephyr-Core-3.7.0/samples/drivers/adc/adc_sequence/
DREADME.rst24 child node, with your desired settings like gain, reference, or acquisition time and
26 desired adc. See :zephyr_file:`boards/nrf52840dk_nrf52840.overlay
/Zephyr-Core-3.7.0/dts/bindings/arm/
Dnxp,mcux-xbar.yaml18 Input should match pinctrl mapping in dtsi. The desired values can be
/Zephyr-Core-3.7.0/samples/subsys/debug/fuzz/
DKconfig10 be any value desired by the app.
/Zephyr-Core-3.7.0/cmake/linker/ld/gcc/
Dlinker_flags.cmake3 # Using a config check is ok for now, but in future it would be desired if
/Zephyr-Core-3.7.0/doc/kernel/services/synchronization/
Devents.rst17 on an event object until the desired set of events has been delivered to the
130 /* Access the desired input device(s) */
149 /* Access the desired input devices */
/Zephyr-Core-3.7.0/dts/bindings/gpio/
Dnxp,lpc-gpio-port.yaml29 or "int-b" if interrupt support is desired, and the appropriate IRQ number
/Zephyr-Core-3.7.0/tests/subsys/canbus/isotp/conformance/src/
Dmain.c175 static int check_data(const uint8_t *frame, const uint8_t *desired, size_t length) in check_data() argument
179 ret = memcmp(frame, desired, length); in check_data()
181 printk("desired bytes:\n"); in check_data()
182 print_hex(desired, length); in check_data()
269 struct frame_desired *desired = frames; in send_frame_series() local
272 frame.dlc = can_bytes_to_dlc(desired->length); in send_frame_series()
273 memcpy(frame.data, desired->data, desired->length); in send_frame_series()
276 desired++; in send_frame_series()
285 struct frame_desired *desired = frames; in check_frame_series() local
292 zassert_equal(frame.dlc, can_bytes_to_dlc(desired->length), in check_frame_series()
[all …]

1234567891011