PICO_TIME_DEFAULT_ALARM_POOL_DISABLED macro
Alarm functions for scheduling future execution Alarms are added to alarm pools, which may hold a certain fixed number of active alarms. Each alarm pool utilizes one of four underlying timer_alarms, thus you may have up to four alarm pools. An alarm pool calls (except when the callback would happen before or during being set) the callback on the core from which the alarm pool was created. Callbacks are called from the timer_alarm IRQ handler, so care must be taken in their implementation. A default pool is created the core specified by PICO_TIME_DEFAULT_ALARM_POOL_HARDWARE_ALARM_NUM on core 0, and may be used by the method variants that take no alarm pool parameter. \sa struct alarm_pool \sa hardware_timer If 1 then the default alarm pool is disabled (so no timer_alarm is claimed for the pool) \sa #PICO_TIME_DEFAULT_ALARM_POOL_HARDWARE_ALARM_NUM \sa alarm_pool_get_default()
Syntax
#define PICO_TIME_DEFAULT_ALARM_POOL_DISABLED 0
Notes
Setting to 1 may cause some code not to compile as default timer pool related methods are removed When the default alarm pool is disabled, \a sleep_ methods and timeouts are no longer lower powered (they become \a busy_wait_)