Lines Matching full:fifo2
21 * Test Thread enters an item into fifo2, starts a Child Thread and
23 * will extract an item from fifo2 once the item is there and enter
28 * Tests the ISR interfaces. Test thread puts items into fifo2 and gives
29 * control to the Child thread. Child thread gets items from fifo2 and then
47 static K_FIFO_DEFINE(fifo2);
109 /* Get items from fifo2 */ in thread_entry_fn_dual()
120 /* Get items from fifo2 */ in thread_entry_fn_isr()
176 * @details test Thread enters an item into fifo2, starts a Child Thread and
178 * will extract an item from fifo2 once the item is there and enter
189 thread_entry_fn_dual, &fifo1, &fifo2, NULL, in ZTEST()
194 k_fifo_put(&fifo2, (void *)&data2[i]); in ZTEST()
208 * @details Tests the ISR interfaces. Test thread puts items into fifo2
210 * fifo2 and then puts items into fifo1. Child thread gives back control
221 thread_entry_fn_isr, &fifo1, &fifo2, NULL, in ZTEST()
226 irq_offload(tIsr_entry_put, (const void *)&fifo2); in ZTEST()