/Zephyr-Core-3.7.0/dts/bindings/sensor/ |
D | maxim,max17055.yaml | 24 desired-voltage: 27 description: Battery Desired Voltage in mV (3300 to 4400) 29 desired-charging-current:
|
D | maxim,max17262.yaml | 19 desired-voltage: 22 description: Battery Desired Voltage in mV (3300 to 4400) 24 desired-charging-current:
|
D | hamamatsu,s11059.yaml | 24 By setting this value to the desired integration time,
|
D | rohm,bh1750.yaml | 23 is desired.
|
/Zephyr-Core-3.7.0/dts/bindings/coredump/ |
D | zephyr,coredump.yaml | 8 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/ |
D | app.overlay | 14 desired-voltage = <3600>; 15 desired-charging-current = <2000>;
|
/Zephyr-Core-3.7.0/doc/hardware/peripherals/ |
D | coredump.rst | 13 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/ |
D | events.c | 12 * 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/ |
D | max17262.h | 55 /* 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/ |
D | mipi_dbi.h | 50 * @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/ |
D | espressif,esp32-ledc.yaml | 29 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/ |
D | generic-fem-two-ctrl-pins.yaml | 38 Desired minimum settling time, in microseconds, from 44 Desired minimum settling time, in microseconds, from
|
/Zephyr-Core-3.7.0/samples/boards/stm32/mco/ |
D | prj.conf | 1 # Set MCO1 source to desired clock.
|
/Zephyr-Core-3.7.0/soc/nordic/nrf54l/ |
D | soc.c | 65 * 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/ |
D | intel,adsp-power-domain.yaml | 18 for a desired domain.
|
/Zephyr-Core-3.7.0/drivers/coredump/ |
D | Kconfig | 8 desired data into core dumps.
|
/Zephyr-Core-3.7.0/drivers/sensor/maxim/max17055/ |
D | max17055.h | 80 /* Desired voltage of cell in mV */ 82 /* Desired charging current in mA */
|
/Zephyr-Core-3.7.0/dts/bindings/i2c/ |
D | microchip,mpfs-i2c.yaml | 23 Desired I2C bus clock frequency in Hz. As only Standard and Fast
|
/Zephyr-Core-3.7.0/samples/drivers/adc/adc_sequence/ |
D | README.rst | 24 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/ |
D | nxp,mcux-xbar.yaml | 18 Input should match pinctrl mapping in dtsi. The desired values can be
|
/Zephyr-Core-3.7.0/samples/subsys/debug/fuzz/ |
D | Kconfig | 10 be any value desired by the app.
|
/Zephyr-Core-3.7.0/cmake/linker/ld/gcc/ |
D | linker_flags.cmake | 3 # 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/ |
D | events.rst | 17 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/ |
D | nxp,lpc-gpio-port.yaml | 29 or "int-b" if interrupt support is desired, and the appropriate IRQ number
|
/Zephyr-Core-3.7.0/tests/subsys/canbus/isotp/conformance/src/ |
D | main.c | 175 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 …]
|