Motion_EC_Stm32_archived/Core/Inc/navikit.h

23 lines
346 B
C
Raw Normal View History

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