Skip to content

Commit

Permalink
draft
Browse files Browse the repository at this point in the history
  • Loading branch information
woodfell committed Dec 8, 2023
1 parent c9e6203 commit babc7c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file modified docs/sbp.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion jsonschema/MsgMeasurementPoint.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"$schema": "http://json-schema.org/draft-06/schema#",
"$id": "#MsgMeasurementPoint",
"title":"MsgMeasurementPoint",
"description":"Measurement point.\n",
"description":"Tracks execution time of certain code paths in specially built products. This message should only be expected and processed on the direction of Swift's engineering teams.\n",
"type": "object",
"properties": {
"total_time": {"type": "integer"},
Expand Down
4 changes: 2 additions & 2 deletions python/sbp/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -1610,8 +1610,8 @@ class MsgMeasurementPoint(SBP):
'max' / construct.Int32ul,
'return_addr' / construct.Int64ul,
'id' / construct.Int64ul,
'slice_time' / construct.Int64sl,
'line' / construct.Int16sl,
'slice_time' / construct.Int64ul,
'line' / construct.Int16ul,
'func' / construct.GreedyBytes,)
__slots__ = [
'total_time',
Expand Down

0 comments on commit babc7c4

Please sign in to comment.