Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mbus/MBusFrame.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from ctypes import Structure, c_uint8, c_long, c_size_t, POINTER
from ctypes import Structure, c_uint8, c_int, c_long, c_size_t, POINTER

c_time_t = c_long

Expand All @@ -18,7 +18,7 @@ def __str__(self):
("stop", c_uint8),
("data", c_uint8 * 252),
("data_size", c_size_t),
("stop", c_uint8),
("type", c_int),
("timestamp", c_time_t),
("next", POINTER(MBusFrame))
]