예제 #1
0
파일: flash.py 프로젝트: namhh/libsbp
  def to_binary(self):
    """Produce a framed/packed SBP message.

    """
    c = containerize(exclude_fields(self))
    self.payload = MsgStmFlashUnlockSector._parser.build(c)
    return self.pack()
예제 #2
0
파일: settings.py 프로젝트: wltr/libsbp
  def to_binary(self):
    """Produce a framed/packed SBP message.

    """
    c = containerize(exclude_fields(self))
    self.payload = MsgSettingsReadByIndexResp._parser.build(c)
    return self.pack()
예제 #3
0
파일: file_io.py 프로젝트: swift-nav/libsbp
  def to_binary(self):
    """Produce a framed/packed SBP message.

    """
    c = containerize(exclude_fields(self))
    self.payload = MsgFileioConfigResp._parser.build(c)
    return self.pack()
예제 #4
0
파일: piksi.py 프로젝트: yxftju/libsbp
  def to_binary(self):
    """Produce a framed/packed SBP message.

    """
    c = Container(**exclude_fields(self))
    self.payload = MsgIarState._parser.build(c)
    return self.pack()
예제 #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()
예제 #6
0
파일: flash.py 프로젝트: namhh/libsbp
  def to_binary(self):
    """Produce a framed/packed SBP message.

    """
    c = containerize(exclude_fields(self))
    self.payload = MsgM25FlashWriteStatus._parser.build(c)
    return self.pack()
예제 #7
0
파일: observation.py 프로젝트: axlan/libsbp
  def to_binary(self):
    """Produce a framed/packed SBP message.

    """
    c = containerize(exclude_fields(self))
    self.payload = MsgEphemerisDepA._parser.build(c)
    return self.pack()
예제 #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
예제 #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
예제 #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
예제 #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
예제 #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
예제 #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
예제 #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
예제 #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
예제 #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
예제 #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()