auto_bus/include/define.h
jackfiled bcff483797 完成了配置文件读取函数
添加了配置文件单元测试
配置文件读取函数单元测试完成
2022-05-20 11:18:12 +08:00

22 lines
581 B
C

//
// Created by ricardo on 2022/5/6.
//
#ifndef AUTO_PILOT_BUS_DEFINE_H
#define AUTO_PILOT_BUS_DEFINE_H
#define BUS_CLOCK_WISE 0 // 顺时针
#define BUS_COUNTER_CLOCK_WISE 1 // 逆时针
#define BUS_TARGET 2 // 目标
#define BUS_STOP 2 // 停止
#define BUS_TRUE 1 // 真
#define BUS_FAlSE 0 // 假
#define IO_CLOCK 0 // 读取时钟指令
#define IO_READING 1 // 读取请求指令
#define IO_END 2 // 读取结束指令
#define BUS_FCFS 0 // 先来先服务
#define BUS_SSTF 1 // 最短寻找时间优先
#define BUS_SCAN 2 // 顺便服务
#endif //AUTO_PILOT_BUS_DEFINE_H