Home
last modified time | relevance | path

Searched refs:desired (Results 1 – 25 of 113) sorted by relevance

12345

/Zephyr-latest/tests/drivers/video/api/src/
Dvideo_common.c115 struct video_frmival desired; in ZTEST() local
126 desired.numerator = 1; in ZTEST()
127 desired.denominator = 1; in ZTEST()
128 video_closest_frmival_stepwise(&stepwise, &desired, &match); in ZTEST()
129 zassert_equal(video_frmival_nsec(&match), video_frmival_nsec(&desired), "1 / 1"); in ZTEST()
131 desired.numerator = 3; in ZTEST()
132 desired.denominator = 30; in ZTEST()
133 video_closest_frmival_stepwise(&stepwise, &desired, &match); in ZTEST()
134 zassert_equal(video_frmival_nsec(&match), video_frmival_nsec(&desired), "3 / 30"); in ZTEST()
136 desired.numerator = 7; in ZTEST()
[all …]
/Zephyr-latest/drivers/video/
Dvideo_common.c105 const struct video_frmival *desired, in video_closest_frmival_stepwise() argument
111 uint64_t goal = desired->numerator; in video_closest_frmival_stepwise()
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()
125 stepwise->step.denominator * desired->denominator; in video_closest_frmival_stepwise()
132 struct video_frmival desired = match->discrete; in video_closest_frmival() local
147 video_closest_frmival_stepwise(&fie.stepwise, &desired, &tmp); in video_closest_frmival()
153 a = video_frmival_nsec(&desired); in video_closest_frmival()
/Zephyr-latest/samples/sensor/max17262/
Dapp.overlay14 desired-voltage = <3600>;
15 desired-charging-current = <2000>;
/Zephyr-latest/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-latest/drivers/coredump/
DKconfig8 desired data into core dumps.
/Zephyr-latest/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()
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()
294 i, can_bytes_to_dlc(desired->length), frame.dlc); in check_frame_series()
[all …]
/Zephyr-latest/kernel/
Devents.c87 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()
/Zephyr-latest/cmake/modules/
DFindScaTools.cmake13 "Please set 'ZEPHYR_SCA_VARIANT' to desired tool."
Dconfiguration_files.cmake60 set(CONF_FILE ${CONF_FILE} CACHE STRING "If desired, you can build the application using\
90 set(DTC_OVERLAY_FILE ${DTC_OVERLAY_FILE} CACHE STRING "If desired, you can \
/Zephyr-latest/cmake/sca/eclair/ECL/
Danalysis_HIS.ecl9 # Enable the desired metrics.
/Zephyr-latest/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-latest/cmake/linker/ld/gcc/
Dlinker_flags.cmake3 # Using a config check is ok for now, but in future it would be desired if
/Zephyr-latest/samples/subsys/debug/fuzz/
DKconfig10 be any value desired by the app.
/Zephyr-latest/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-latest/samples/sensor/magn_polling/
DREADME.rst31 With the sensor wired to the desired pins, build and flash with:
/Zephyr-latest/samples/sensor/vcnl4040/
DREADME.rst30 sensor to be connected to the desired board.
/Zephyr-latest/doc/connectivity/networking/api/
Dtraffic-class.rst15 By default, all network traffic is treated equal in Zephyr. If desired, the
Dvlan.rst35 to give the network interface and desired VLAN tag as a parameter to that
/Zephyr-latest/subsys/net/lib/lwm2m/
DREADME_lwm2m30 The patch was created by, committing the unpatched changes, then committing the desired patches in …
/Zephyr-latest/samples/subsys/fs/format/
DREADME.rst20 To run this sample, build it for the desired board and scenario and flash it.
/Zephyr-latest/samples/net/gptp/
DKconfig11 # VLAN IP addressing in Linux side (if that is desired).
/Zephyr-latest/tests/drivers/disk/disk_access/
DREADME.txt16 read from several times, each time with a different number of desired sectors.
/Zephyr-latest/scripts/west_commands/runners/
Dcore.py101 for desired in start:
102 port = desired
107 raise ValueError(msg.format(desired))
/Zephyr-latest/samples/subsys/llext/modules/
DREADME.rst63 with the desired board name.
/Zephyr-latest/samples/drivers/ipm/ipm_imx/
DREADME.rst43 for how to load the Zephyr binary to the desired core and execute it.

12345