1 #ifndef _PMU_CALIBRATION_H 2 #define _PMU_CALIBRATION_H 3 4 #include <stdio.h> 5 #include <stdint.h> 6 7 #ifdef ENV_USE_FREERTOS 8 #include "FreeRTOS.h" 9 #include "timers.h" 10 #else 11 #include "app_timer.h" 12 #endif 13 14 void system_pmu_calibration_stop(void); 15 16 void system_pmu_calibration_init(uint32_t interval); 17 18 #ifdef ENV_USE_FREERTOS 19 void system_pmu_calibration_start(void); 20 #endif 21 22 #endif 23