Display_Avr_3/frame.h
2023-09-11 17:50:33 +03:00

57 lines
1.6 KiB
C

#ifndef _FRAME_H
#define _FRAME_H
typedef int bool;
/*This is the frame structure in HDLC.*/
typedef struct Frame {
short head_flag[8];
short address[8];
short control[8];
struct{
/*Actuall size should also be arry. It is also sequence of '01', here I simplify it.*/
short size; /*Record the real length of the data.*/
short information[1024];/*Capacity is 1024.*/
short infor_type[1024]; /*0 : bit stuffing; 1 : real data.*/
}s;
short fcs[32];
short rail_flag[8];
}Frame;
enum FRAME_TYPE {SABME, DISC, UA, REJ, RR, INFOR};
/* SABME, UA and DISC*/
Frame create_unnumbered_frame(short addr[], enum FRAME_TYPE ft, bool p_f);
/* REJ, RR*/
Frame create_sup_frame(short addr[], enum FRAME_TYPE ft, bool p_f, short next_receive);
/* Frame for normal data transferring.*/
Frame* create_infor_frames(short addr[], short send_number, bool p_f,
short receive_number, short data[], int start, int end, Frame *frames);/* Using $start,$end, better than $size*/
/*Extract frame type from the given frame. */
enum FRAME_TYPE get_frame_type(Frame *p_frame);
/* Extract address field from the given frame.*/
void get_address(Frame *p_frame, short *storage);
/* The # of the frame.*/
short get_send_number(Frame *p_frame);
/* The # of the frame sender wants.*/
short get_expect_number(Frame *p_frame);
/* Extract the real data from the given frame.*/
void get_infor(Frame *p_frame, short *storage, int *size);
/*Here using fcs to judge whether the data is right.*/
bool is_fcs_right(Frame *p_frame);
#endif