this(selfTestCode, pf, selfTest, devOffL, unitOffL, parameterListLength, false, false);
}
public void decode(byte[] header, ByteBuffer input) throws IOException
{
DataInputStream in = new DataInputStream(new ByteBufferInputStream(input));
int operationCode = in.readUnsignedByte();
int tmp = in.readUnsignedByte();
this.unitOffL = (tmp & 0x01) == 1;
this.devOffL = ((tmp >>> 1) & 1) == 1;