1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef motion_config_H
- #define motion_config_H
- #define BLACK_SH 1
- #define BLUE_SH 2
- #define WHITE_SH 3
- #define GIRL_SH 4
- // <<< Use Configuration Wizard in Context Menu >>>\n
- // <h> 公共
- // <o> DIRECTION_SH - 鞋子朝向
- // <0=> DEFAULT_SH
- // <1=> BLACK_SH
- // <2=> BLUE_SH
- // <3=> WHITE_SH
- // <4=> GIRL_SH
- #ifndef DIRECTION_SH
- #define DIRECTION_SH 0
- #endif
- // <o> SH_NUMBER - 鞋子模块编号
- #ifndef SH_NUMBER
- #define SH_NUMBER 20
- #endif
- // <q> CAL_MODE - 校准模式
- #ifndef CAL_MODE
- #define CAL_MODE 0
- #endif
- // <q> LEFT_IS_HOST - 左脚是否为主机
- #ifndef LEFT_IS_HOST
- #define LEFT_IS_HOST 1
- #endif
- // <q> GIRL_SHOES - 是否为女鞋
- #ifndef GIRL_SHOES
- #define GIRL_SHOES 0
- #endif
- // <<< end of configuration section >>>
- #endif //SDK_CONFIG_H
|