Exemplo n.º 1
0
  def to_binary(self):
    """Produce a framed/packed SBP message.

    """
    c = containerize(exclude_fields(self))
    self.payload = MsgStmFlashUnlockSector._parser.build(c)
    return self.pack()
Exemplo n.º 2
0
  def to_binary(self):
    """Produce a framed/packed SBP message.

    """
    c = containerize(exclude_fields(self))
    self.payload = MsgSettingsReadByIndexResp._parser.build(c)
    return self.pack()
Exemplo n.º 3
0
  def to_binary(self):
    """Produce a framed/packed SBP message.

    """
    c = containerize(exclude_fields(self))
    self.payload = MsgFileioConfigResp._parser.build(c)
    return self.pack()
Exemplo n.º 4
0
  def to_binary(self):
    """Produce a framed/packed SBP message.

    """
    c = Container(**exclude_fields(self))
    self.payload = MsgIarState._parser.build(c)
    return self.pack()
Exemplo n.º 5
0
  def to_binary(self):
    """Produce a framed/packed SBP message.

    """
    c = containerize(exclude_fields(self))
    self.payload = MsgBootloaderJumpToApp._parser.build(c)
    return self.pack()
Exemplo n.º 6
0
  def to_binary(self):
    """Produce a framed/packed SBP message.

    """
    c = containerize(exclude_fields(self))
    self.payload = MsgM25FlashWriteStatus._parser.build(c)
    return self.pack()
Exemplo n.º 7
0
  def to_binary(self):
    """Produce a framed/packed SBP message.

    """
    c = containerize(exclude_fields(self))
    self.payload = MsgEphemerisDepA._parser.build(c)
    return self.pack()
Exemplo n.º 8
0
 def to_json_dict(self):
   self.to_binary()
   d = super( MsgBaselineHeading, self).to_json_dict()
   j = walk_json_dict(exclude_fields(self))
   d.update(j)
   return d
Exemplo n.º 9
0
 def to_json_dict(self):
     self.to_binary()
     d = super(MsgUartStateDepa, self).to_json_dict()
     j = walk_json_dict(exclude_fields(self))
     d.update(j)
     return d
Exemplo n.º 10
0
 def to_json_dict(self):
     self.to_binary()
     d = super(MsgResetFilters, self).to_json_dict()
     j = walk_json_dict(exclude_fields(self))
     d.update(j)
     return d
Exemplo n.º 11
0
 def to_json_dict(self):
     self.to_binary()
     d = super(MsgDeviceMonitor, self).to_json_dict()
     j = walk_json_dict(exclude_fields(self))
     d.update(j)
     return d
Exemplo n.º 12
0
 def to_json_dict(self):
   self.to_binary()
   d = super( MsgCsacTelemetryLabels, self).to_json_dict()
   j = walk_json_dict(exclude_fields(self))
   d.update(j)
   return d
Exemplo n.º 13
0
 def to_json_dict(self):
     self.to_binary()
     d = super(MsgTrackingIq, self).to_json_dict()
     j = walk_json_dict(exclude_fields(self))
     d.update(j)
     return d
Exemplo n.º 14
0
 def to_json_dict(self):
   self.to_binary()
   d = super( MsgOrientEuler, self).to_json_dict()
   j = walk_json_dict(exclude_fields(self))
   d.update(j)
   return d
Exemplo n.º 15
0
 def to_json_dict(self):
   self.to_binary()
   d = super( MsgSettingsWrite, self).to_json_dict()
   j = walk_json_dict(exclude_fields(self))
   d.update(j)
   return d
Exemplo n.º 16
0
 def to_json_dict(self):
     self.to_binary()
     d = super(MsgFileioConfigResp, self).to_json_dict()
     j = walk_json_dict(exclude_fields(self))
     d.update(j)
     return d
Exemplo n.º 17
-1
  def to_binary(self):
    """Produce a framed/packed SBP message.

    """
    c = containerize(exclude_fields(self))
    self.payload = MsgTrackingStateDetailedDep._parser.build(c)
    return self.pack()