You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In line 163, of FPS.py where you calculate the checksum of the packet, you pass packetbytes[0:9]. However in python, when you get the subarray the last element is excluded. I think the checksum you are calculating would be wrong in that case.
It should be changed to chksum = self.CalculateCheckSum(packetbytes[0:10])
The text was updated successfully, but these errors were encountered:
In line 163, of FPS.py where you calculate the checksum of the packet, you pass packetbytes[0:9]. However in python, when you get the subarray the last element is excluded. I think the checksum you are calculating would be wrong in that case.
It should be changed to
chksum = self.CalculateCheckSum(packetbytes[0:10])
The text was updated successfully, but these errors were encountered: