Motion_EC_Stm32_archived/Core/Inc/navikit.h

23 lines
346 B
C

/*
* navikit.h
*
* Created on: Apr 17, 2020
* Author: oarap
*/
#ifndef INC_NAVIKIT_H_
#define INC_NAVIKIT_H_
#include "stdbool.h"
typedef struct
{
bool system_runing; //系统是否开机
bool pwr_button_pushed; //开关是否被按下
}NaviKit_t;
extern NaviKit_t NaviKit;
void NaviKit_var_init();
#endif /* INC_NAVIKIT_H_ */