Skip to content
Snippets Groups Projects
Commit 7b37afdd authored by Vytor Calixto's avatar Vytor Calixto :space_invader:
Browse files

Changed struct of Message

parent 973e8f07
Branches
No related tags found
No related merge requests found
...@@ -26,6 +26,16 @@ typedef struct { ...@@ -26,6 +26,16 @@ typedef struct {
sequence: 6, sequence: 6,
type : 4, type : 4,
parity : 8; parity : 8;
}i_Control;
typedef struct{
char begin,size,seqType,parity;
}c_Control;
typedef union {
c_Control c_ctrl;
i_Control i_ctrl;
}Message; }Message;
#endif #endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment