#define IRP_HARQ 250 // Receive : Admin mod Request
#define IRP_HARS 251 // Send : Response on IRP_HARQ
struct IR_HARQ // Admin Request
{
byte Size; // 4
byte Type; // IRP_HARQ
byte ReqI;
byte Sp0;
};
struct IR_HARS // Admin Response
{
byte Size; // 4
byte Type; // IRP_HARS
byte ReqI;
byte Admin; // 0- no admin; 1- admin
};