From a5a60d9c4bc6423ec5e68fb0c20a997dce245c96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= Date: Thu, 16 May 2019 21:37:34 +0100 Subject: freestyle support: restore correct order of parameters. Also add a test so that we don't break this again in the future. --- glucometerutils/support/freestyle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'glucometerutils') diff --git a/glucometerutils/support/freestyle.py b/glucometerutils/support/freestyle.py index 1c5e284..816af81 100644 --- a/glucometerutils/support/freestyle.py +++ b/glucometerutils/support/freestyle.py @@ -28,7 +28,7 @@ from glucometerutils.support import hiddevice _INIT_SEQUENCE = (0x04, 0x05, 0x15, 0x01) _FREESTYLE_MESSAGE = construct.Struct( - 'hid_report' / construct.Const(construct.Byte, 0), + 'hid_report' / construct.Const(0, construct.Byte), 'message_type' / construct.Byte, 'command' / construct.Padded( 63, # command can only be up to 62 bytes, but one is used for length. -- cgit v1.2.3