multicore_fifo_push_timeout_us() function
Push data on to the write FIFO (data to the other core) with timeout. This function will block until there is space for the data to be sent or the timeout is reached
Syntax
bool multicore_fifo_push_timeout_us(uint32_t data,
uint64_t timeout_us);
Arguments
data
A 32 bit value to push on to the FIFO
timeout_us
the timeout in microseconds
Return value
true if the data was pushed, false if the timeout occurred before data could be pushed