sleep_until() function
Sleep functions for delaying execution in a lower power state. These functions allow the calling core to sleep. This is a lower powered sleep; waking and re-checking time on every processor event (WFE) \sa busy_wait_until() \sa busy_wait_us() \sa busy_wait_us_32() Wait until after the given timestamp to return
Arguments
target
the time after which to return \sa sleep_us() \sa busy_wait_until()
Notes
These functions should not be called from an IRQ handler. Lower powered sleep requires use of the \link alarm_pool_get_default default alarm pool\endlink which may be disabled by the PICO_TIME_DEFAULT_ALARM_POOL_DISABLED #define or currently full in which case these functions become busy waits instead. Whilst \a sleep_ functions are preferable to \a busy_wait functions from a power perspective, the \a busy_wait equivalent function may return slightly sooner after the target is reached. This method attempts to perform a lower power (WFE) sleep