// // Created by ricardo on 2022/6/11. // #ifndef AUTO_BUS_GUI_DEFINE_H #define AUTO_BUS_GUI_DEFINE_H #define BUS_CLOCK_WISE 0 // 顺时针 #define BUS_COUNTER_CLOCK_WISE 1 // 逆时针 #define BUS_TARGET 2 // 目标 #define BUS_STOP 2 // 停止 #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_BUS_GUI_DEFINE_H