From 2165003f35ec15cc954f9957fe759f6351170d2e Mon Sep 17 00:00:00 2001 From: David Date: Sat, 18 Oct 2025 12:17:45 -0500 Subject: [PATCH] fix: msg len requirements now account for viccan packaging There are no viccan messages with len(data) == 3, only 1, 2, or 4 --- src/core_pkg/core_pkg/core_node.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core_pkg/core_pkg/core_node.py b/src/core_pkg/core_pkg/core_node.py index b7ff0eb..511839e 100644 --- a/src/core_pkg/core_pkg/core_node.py +++ b/src/core_pkg/core_pkg/core_node.py @@ -51,8 +51,8 @@ viccan_msg_len_dict = { 52: 4, 53: 4, 54: 4, - 56: 3, - 58: 3 + 56: 4, # really 3, but viccan + 58: 4 # ditto }