auto_bus/include/bus_io.h
jackfiled 053ea80067 添加了全局变量的注释
添加了概要设计书的画图文档
完善了.gitignore
2022-05-12 15:32:45 +08:00

50 lines
802 B
C

//
// Created by ricardo on 2022/5/6.
//
#ifndef AUTO_PILOT_BUS_BUS_IO_H
#define AUTO_PILOT_BUS_BUS_IO_H
#include "rail.h"
#include "query.h"
enum read_state{
/**
* 时钟
*/
clock = 0,
/**
* 读取中
*/
reading,
/**
* 结束
*/
end
};
/**
* 读取输入的状态
*/
typedef enum read_state read_state_t;
/**
* 读取配置文件,创建轨道链表,同时读取需要使用的策略
* @return 指向轨道链表的指针
*/
rail_node_t* ReadConfigFile();
/**
* 读取标准输入流中的输入
* @param inputString 输入的字符串
* @return 当前读取的状态
*/
read_state_t ReadInput(char* inputString);
/**
* 打印当前的状态
* @param rails 轨道链表
*/
void PrintState();
#endif //AUTO_PILOT_BUS_BUS_IO_H