Skip to content

Commit

Permalink
Issue #81 - Update Time40 size information
Browse files Browse the repository at this point in the history
Update Time40 byte/bit counts to properly reflect the dtype's size.
Because it's based off a MSB_U32 primitive type. This was causing issues
with the expected length of packets that used Time40 given the 4 byte
length of a MSB_U32.
  • Loading branch information
MJJoyce committed Jun 19, 2018
1 parent bd1afb1 commit 9a3dd1a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ait/core/dtype.py
Original file line number Diff line number Diff line change
Expand Up @@ -682,6 +682,8 @@ def __init__(self):

self._pdt = self.name
self._name = 'TIME40'
self._nbits = 40
self._nbytes = 5

@property
def pdt(self):
Expand Down

0 comments on commit 9a3dd1a

Please sign in to comment.