multicore_lockout_end_timeout_us() function
Release the other core from a locked out state amd wait up to a time limit for it to acknowledge The other core must previously have been "locked out" by calling a `multicore_lockout_start_` function from this core
Syntax
bool multicore_lockout_end_timeout_us(uint64_t timeout_us); Arguments
timeout_us
the timeout in microseconds
Return value
true if the other core successfully exited locked out state within the timeout, false otherwise
Notes
be very careful using small timeout values, as a timeout here will leave the "lockout" functionality in a bad state. It is probably preferable to use multicore_lockout_end_blocking anyway as if you have already waited for the victim core to enter the lockout state, then the victim core will be ready to exit the lockout state very quickly.