createFileCreatorMesg static method
Implementation
static Mesg createFileCreatorMesg() {
int fieldIndex, subfieldIndex;
Mesg newMesg = Mesg("FileCreator", MesgNum.fileCreator);
fieldIndex = 0;
newMesg.setField(
Field("SoftwareVersion", 0, 132, 1.0, 0.0, "", false, ProfileType.uint16),
);
fieldIndex++;
newMesg.setField(
Field("HardwareVersion", 1, 2, 1.0, 0.0, "", false, ProfileType.uint8),
);
fieldIndex++;
return newMesg;
}