private static ushort BuildResponseOfCommand(AmsCommandId amsCommandId)
 {
     return((ushort)((ushort)amsCommandId | (1 << 15)));
 }
 private static ushort BuildRequestOfCommand(AmsCommandId amsCommandId)
 {
     return((ushort)amsCommandId);    // request is only the commandId reflected...
 }