1
0
forked from me/IronOS
Files
IronOS/source/Core/BSP/BSP_Power.h
Ben V. Brown bf5055edaa Format headers
2021-01-17 10:53:49 +11:00

24 lines
396 B
C

#include "stdint.h"
/*
* BSP_Power.h -- Board Support for Power control
*
* These functions are hooks used to allow for power control
*
*/
#ifndef BSP_POWER_H_
#define BSP_POWER_H_
#ifdef __cplusplus
extern "C" {
#endif
// Called periodically in the movement handling thread
// Can be used to check any details for the power system
void power_check();
#ifdef __cplusplus
}
#endif
#endif