You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
293 B

#ifndef PROTOCOL_H
#define PROTOCOL_H
enum IMAGETYPE{
gray8,
gray16
};
#define FrameHead 0xFFFFFFFF
#define LineHead 0xF0000000
#define MINFrameSize 60000
struct headStruct{
int headid;
int frameType;
int rows;
int cols;
int check;
};
#endif // PROTOCOL_H