Skip to content

Commit

Permalink
important bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
robamu committed Jun 12, 2021
1 parent 39697ed commit b36f182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tmtccmd/pus_tm/service_3_housekeeping.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __init__(self, byte_array: bytearray, custom_hk_handling: bool = False,
self.custom_hk_handling = custom_hk_handling
self.hk_structure_report_header_size = minimum_structure_report_header_size
self._object_id_bytes = self._tm_data[0:4]
self._object_id = struct.unpack('!I', self.object_id_bytes)[0]
self._object_id = struct.unpack('!I', self._object_id_bytes)[0]
self._set_id = struct.unpack('!I', self._tm_data[4:8])[0]

self.specify_packet_info("Housekeeping Packet")
Expand Down

0 comments on commit b36f182

Please sign in to comment.