12345678910111213141516171819202122232425262728 |
- #ifndef __HAL_MODE_MANAGE_H__
- #define __HAL_MODE_MANAGE_H__
- #include <stdbool.h>
- #include <stdint.h>
- #include <string.h>
- #include "sdk_common.h"
- #include "SEGGER_RTT.h"
- #include "usr_config.h"
- //定义状态
- typedef enum
- {
- HAL_MODE_GAME = 1, //游戏模式
- HAL_MODE_REALSTEP, //实时计步模式
- HAL_MODE_STANDBY, //待机模式(不穿鞋)
- HAL_MODE_NORMAL, //正常模式(穿鞋)
- HAL_MODE_SELF_CHECK //自检模式
- }hal_mode;
- void hal_mode_set(hal_mode mode);
- hal_mode hal_mode_get(void);
- void hal_mode_manage_Init(void);
- #endif
|