/***wave.h***/
#define TIME_STEP 2 //0.1us
typedef struct tag_wave_info{
UINT32 wave_len;
UINT32 time_step;
UINT32 kick_point_type;
}wave_info;
typedef struct tag_point{
UINT32 x;
double y;
}point;
UINT get_Point_x(UINT32 input_index);
#define TIME_STEP 2 //0.1us
typedef struct tag_wave_info{
UINT32 wave_len;
UINT32 time_step;
UINT32 kick_point_type;
}wave_info;
typedef struct tag_point{
UINT32 x;
double y;
}point;
UINT get_Point_x(UINT32 input_index);
UINT get_Point_y(double input_y);
UINT32 parse_line(char *line);