multicore_fifo_pop_timeout_us() function
Pop data from the read FIFO (data from the other core) with timeout. This function will block until there is data ready to be read or the timeout is reached See the note in the multicore_fifo section for considerations regarding use of the inter-core FIFOs
Syntax
bool multicore_fifo_pop_timeout_us(uint64_t timeout_us,
uint32_t *out);
Arguments
timeout_us
the timeout in microseconds
out
the location to store the popped data if available
Return value
true if the data was popped and a value copied into `out`, false if the timeout occurred before data could be popped