/Zephyr-latest/samples/modules/tflite-micro/magic_wand/renode/ |
D | litex-vexriscv-tflite.robot | 13 Wait For Ring 14 Wait For Line On Uart RING: 16 # Here we wait for the following pattern: 24 Wait For Line On Uart ${SPACE*10}* 25 Wait For Line On Uart ${SPACE*7}*${SPACE*5}* 26 Wait For Line On Uart ${SPACE*5}*${SPACE*9}* 27 Wait For Line On Uart ${SPACE*4}*${SPACE*11}* 28 Wait For Line On Uart ${SPACE*5}*${SPACE*9}* 29 Wait For Line On Uart ${SPACE*7}*${SPACE*5}* 30 Wait For Line On Uart ${SPACE*10}* [all …]
|
/Zephyr-latest/tests/benchmarks/sys_kernel/ |
D | README.txt | 23 Starting test. Please wait... 34 Starting test. Please wait... 46 Starting test. Please wait... 56 Starting test. Please wait... 68 Starting test. Please wait... 80 Starting test. Please wait... 90 Starting test. Please wait... 102 Starting test. Please wait... 114 Starting test. Please wait... 124 Starting test. Please wait... [all …]
|
/Zephyr-latest/samples/cpp/cpp_synchronization/src/ |
D | main.cpp | 31 virtual int wait(void) = 0; 32 virtual int wait(int timeout) = 0; 56 virtual int wait(void); 57 virtual int wait(int timeout); 71 * @brief wait for a semaphore 78 int cpp_semaphore::wait(void) in wait() function in cpp_semaphore 85 * @brief wait for a semaphore within a specified timeout 95 int cpp_semaphore::wait(int timeout) in wait() function in cpp_semaphore 120 /* wait for main thread to let us have a turn */ in coop_thread_entry() 121 sem_coop.wait(); in coop_thread_entry() [all …]
|
/Zephyr-latest/tests/benchmarks/wait_queues/ |
D | README.rst | 1 Wait Queue Measurements 4 A Zehpyr application developer may choose between two different wait queue 11 * Time to add threads of increasing priority to a wait queue 12 * Time to add threads of decreasing priority to a wait queue 13 * Time to remove highest priority thread from a wait queue 14 * Time to remove lowest priority thread from a wait queue
|
D | Kconfig | 4 mainmenu "Wait Queue Benchmark" 20 will add to a wait queue. Increasing this value will places greater 21 stress on the wait queues and better highlight the performance 22 differences as the number of threads in the wait queue changes.
|
/Zephyr-latest/doc/develop/api/ |
D | terminology.rst | 14 :ref:`api_term_no-wait` 83 suspend, wait, or invoke :c:func:`k_yield` before it can complete 84 its operation. This behavior may be mediated by **no-wait**. 91 pre-kernel contexts if and only if invoked in **no-wait** mode. 93 .. _api_term_no-wait: 95 no-wait 98 The no-wait attribute is used on a function that is also **sleep** to 105 The paradigmatic case of a no-wait function is a function that takes a argument 111 It is use of the no-wait feature that allows functions like 115 A function with a no-wait path does not imply that taking that path [all …]
|
/Zephyr-latest/dts/bindings/sensor/ |
D | ams,tmd2620.yaml | 68 enable-wait-mode: 70 description: Enables wait mode 72 wait-time-factor: 76 given in multiples of 2.81 starting at 0 for 2.81ms wait time. 78 wait-long: 80 description: increases the wait time by a factor of x12
|
/Zephyr-latest/tests/drivers/console/line_splitting/ |
D | line_splitting.robot | 10 Wait For Next Line On Uart 12 Wait For Line On Uart getline: abc; 14 Wait For Line On Uart ^abc$ treatAsRegex=true
|
/Zephyr-latest/drivers/timer/ |
D | Kconfig.nrf_xrtc | 12 bool "No wait" 14 System clock source is initiated but does not wait for clock readiness. 20 bool "Wait for availability" 31 bool "Wait for stability"
|
/Zephyr-latest/tests/subsys/portability/cmsis_rtos_v1/src/ |
D | signal.c | 83 /* wait for SIGNAL1. It should return immediately as it is in ZTEST() 107 /* wait for SIGNAL1. It should timeout here as the signal in ZTEST() 127 /* wait for multiple signals */ in ZTEST() 130 "wait signal returned unexpected error"); in ZTEST() 132 "wait signal failed unexpectedly"); in ZTEST() 141 /* wait for any single signal flag */ in ZTEST() 143 zassert_equal(evt.status, osEventSignal, "wait for single flag failed"); in ZTEST() 145 "wait single flag returned invalid value"); in ZTEST() 152 /* cannot wait for Flag mask with MSB set */ in ZTEST() 154 "signal wait passed unexpectedly"); in ZTEST() [all …]
|
/Zephyr-latest/doc/kernel/services/synchronization/ |
D | events.rst | 16 event object is referenced by its memory address. One or more threads may wait 19 whose wait conditions have been satisfied become ready simultaneously. 35 Threads may wait on one or more events. They may either wait for all of the 36 requested events, or for any of them. Furthermore, threads making a wait request 39 threads wait on the same event object. 43 not attempt to wait for the events. 114 Threads wait for events by calling :c:func:`k_event_wait`. 136 Alternatively, the consumer thread may desire to wait for all the events
|
/Zephyr-latest/tests/benchmarks/latency_measure/ |
D | README.rst | 21 * Time it takes to wait on a fifo.lifo.(and context switch) 24 * Time it takes to wait for events (and context switch) 88 …events.wait.immediate.kernel - Wait for any events (no ctx switch) : … 89 …events.wait_all.immediate.kernel - Wait for all events (no ctx switch) : … 90 …events.wait.blocking.k_to_k - Wait for any events (w/ ctx switch) : … 92 …events.wait_all.blocking.k_to_k - Wait for all events (w/ ctx switch) : … 98 …condvar.wait.blocking.k_to_k - Wait for a condvar (context switch) : … 141 …events.wait.immediate.kernel - Wait for any events (no ctx switch) : … 142 …events.wait_all.immediate.kernel - Wait for all events (no ctx switch) : … 143 …events.wait.blocking.k_to_k - Wait for any events (w/ ctx switch) : … [all …]
|
/Zephyr-latest/include/zephyr/dt-bindings/memory-controller/ |
D | stm32-fmc-nor-psram.h | 28 /* Wait Signal Polarity */ 32 /* Wait Timing */ 40 /* Wait Signal */ 48 /* Asynchronous Wait */
|
/Zephyr-latest/drivers/ethernet/ |
D | Kconfig.enc28j60 | 34 int "Time to wait for the CLKRDY bit on driver init" 39 of the driver will wait for the OST to expire, indicated 49 that the driver will wait from the IP stack to get
|
/Zephyr-latest/tests/kernel/smp_abort/src/ |
D | main.c | 24 volatile bool *wait; member 38 while (*(var->wait) == false) { /* Wait upon dependent CPU */ in isr() 65 * Each ISR will wait until the next thread enters its ISR in ZTEST() 73 isr_args[i].wait = &sync[(i + 1) % NUM_THREADS]; in ZTEST()
|
/Zephyr-latest/dts/bindings/auxdisplay/ |
D | hit,hd44780.yaml | 63 Delay time (in ns) to wait after enable line rises before setting low. 70 Delay time (in ns) to wait after enable line falls before sending 77 Delay time (in ns) to wait after rs/rw line state has been set up before 84 Delay time (in us) to wait after issuing a clear command before sending 91 Delay time (in ms) to wait at boot time before sending a command (note:
|
/Zephyr-latest/kernel/ |
D | events.c | 11 * events has occurred. Threads wait on event objects until another thread or 14 * processed to determine if there is a match. All threads that whose wait 37 #define K_EVENT_WAIT_ANY 0x00 /* Wait for any events */ 38 #define K_EVENT_WAIT_ALL 0x01 /* Wait for all events */ 120 * The wait conditions have been satisfied. Add this in event_walk_op() 250 SYS_PORT_TRACING_OBJ_FUNC_ENTER(k_event, wait, event, events, in k_event_wait_internal() 254 SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_event, wait, event, events, 0); in k_event_wait_internal() 267 /* Test if the wait conditions have already been met. */ in k_event_wait_internal() 284 * The caller must pend to wait for the match. Save the desired in k_event_wait_internal() 291 SYS_PORT_TRACING_OBJ_FUNC_BLOCKING(k_event, wait, event, events, in k_event_wait_internal() [all …]
|
/Zephyr-latest/tests/bsim/bluetooth/host/security/id_addr_update/central/src/ |
D | central.c | 29 LOG_INF("wait conn"); in central() 32 /* Subscribe to battery notifications and wait on the first one. */ in central() 47 /* Wait for notification from the first connection after identity address resolution. */ in central() 48 LOG_INF("wait notif"); in central()
|
/Zephyr-latest/include/zephyr/mgmt/hawkbit/ |
D | autohandler.h | 35 * @brief Wait for the autohandler to finish. 37 * @param events Set of desired events on which to wait. Set to ::UINT32_MAX to wait for the 39 * ::hawkbit_response to wait for a specific event.
|
/Zephyr-latest/subsys/net/lib/tftp/ |
D | Kconfig | 22 int "Maximum amount of time the TFTP Client will wait for a response from the server." 25 Maximum amount of time (in msec) that the TFTP Client will wait for 33 Once the TFTP Client sends out a request, it will wait
|
/Zephyr-latest/soc/nuvoton/numaker/m2l31x/ |
D | soc.c | 32 /* Wait for HXT clock ready */ in soc_reset_hook() 43 /* Wait for LXT clock ready */ in soc_reset_hook() 52 /* Wait for HIRC clock ready */ in soc_reset_hook() 57 /* Wait for LIRC clock ready */ in soc_reset_hook() 64 /* Wait for HIRC48M clock ready */ in soc_reset_hook()
|
/Zephyr-latest/soc/nuvoton/numaker/m46x/ |
D | soc.c | 32 /* Wait for HXT clock ready */ in soc_reset_hook() 43 /* Wait for LXT clock ready */ in soc_reset_hook() 52 /* Wait for HIRC clock ready */ in soc_reset_hook() 57 /* Wait for LIRC clock ready */ in soc_reset_hook() 64 /* Wait for HIRC48M clock ready */ in soc_reset_hook()
|
/Zephyr-latest/dts/bindings/mtd/ |
D | nxp,imx-flexspi-device.yaml | 67 ahb-write-wait-unit: 80 AHB write wait interval units, in AHB clock cycles. See the AWRWAITUNIT 84 ahb-write-wait-interval: 88 Time to wait between AHB triggered command sequences. See the AWRWAIT
|
/Zephyr-latest/kernel/include/ |
D | ksched.h | 195 * implemented by OS compatibility layers, providing basic wait/wake operations 203 * Wake up a thread pending on the provided wait queue 218 * become stale. Calls to wait and wake on the same wait_q object must have 222 * @param wait_q Wait queue to wake up the highest prio thread 243 * Wake up all threads pending on the provided wait queue 248 * @param wait_q Wait queue to wake up the highest prio thread 268 * Atomically put the current thread to sleep on a wait queue, with timeout 279 * @param wait_q Wait queue to go to sleep on 280 * @param timeout Waiting period to be woken up, or K_FOREVER to wait 291 * @brief Walks the wait queue invoking the callback on each waiting thread [all …]
|
/Zephyr-latest/samples/subsys/shell/shell_module/ |
D | shell_module.robot | 11 Wait For Prompt On Uart uart:~$ 13 Wait For Line On Uart Zephyr version
|