Skip to content

Commit

Permalink
Merge pull request #52 from xenanetworks/dev-2
Browse files Browse the repository at this point in the history
Fix binary stream payload
  • Loading branch information
Leonard Yu authored Oct 20, 2023
2 parents 773b252 + f68c8f4 commit a01c8bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin2889/resource/_port_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ async def setup_stream(self) -> None:
stream.tpld_id.set(self.tpld_id),
stream.packet.header.protocol.set(self.__resource.port_config.profile.segment_id_list),
stream.packet.header.data.set(self.header),
stream.payload.content.set_inc_word(f"{'0'*36}"),
stream.payload.content.set_inc_byte(f"{'0'*36}"),
stream.insert_packets_checksum.set_on(),
stream.enable.set_on(),
stream.comment.set(f"Stream {self.stream_id} / {self.tpld_id}")
Expand Down

0 comments on commit a01c8bb

Please sign in to comment.