From 6276324524e8d42024b94e7be7d41d11315e48ea Mon Sep 17 00:00:00 2001 From: Andrew Wong Date: Sun, 14 Aug 2022 20:40:41 +1000 Subject: [PATCH] Cleanup --- src/lib/util/MessageProtocol.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/util/MessageProtocol.ts b/src/lib/util/MessageProtocol.ts index bc3bf6d..56d3190 100644 --- a/src/lib/util/MessageProtocol.ts +++ b/src/lib/util/MessageProtocol.ts @@ -26,7 +26,7 @@ export function analysePacket( return [ packet.slice(6, 8).toString(), - // Skip bytes 8-11 (identifier pair) + // Skip bytes 8-11 (C-Byte identifier pair) packet.slice(12) ] }