auto_bus/include/define.h

22 lines
581 B
C
Raw Normal View History

2022-05-06 11:55:30 +08:00
//
// Created by ricardo on 2022/5/6.
//
#ifndef AUTO_PILOT_BUS_DEFINE_H
#define AUTO_PILOT_BUS_DEFINE_H
2022-05-17 20:22:29 +08:00
#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 // 顺便服务
2022-05-06 11:55:30 +08:00
#endif //AUTO_PILOT_BUS_DEFINE_H