c8aca9ef48
* SYSTEM: tickless mode with deep sleep. * Move FreeRTOS ticks to lptim2. * API: move all sumbodules init routines to one place. * Timebase: working lptim2 at tick source. * API Timebase: lp-timer routines, timer access safe zones prediction and synchronization. * FreeRTOS: adjust configuration for tickless mode. * NFC: support for tickless mode. * API Timebase: improve tick error handling in IRQ. * Apploader: use insomnia mode to run applications. * BLE: prevent sleep while core2 starting. * HAL: nap while in insomnia mode. Co-authored-by: coreglitch <mail@s3f.ru>
22 lines
456 B
C++
22 lines
456 B
C++
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
template <unsigned int N> struct STOP_EXTERNING_ME {};
|
|
#endif
|
|
|
|
#include "api-hal-timebase.h"
|
|
#include "api-hal-boot.h"
|
|
#include "api-hal-gpio.h"
|
|
#include "api-hal-delay.h"
|
|
#include "api-hal-pwm.h"
|
|
#include "api-hal-task.h"
|
|
#include "api-hal-tim.h"
|
|
#include "api-hal-power.h"
|
|
#include "api-hal-vcp.h"
|
|
#include "api-hal-uid.h"
|
|
#include "api-hal-bt.h"
|
|
#include "api-hal-spi.h"
|
|
#include "api-hal-flash.h"
|
|
|
|
void api_hal_init();
|