From fbeaf5c499ee01c830b87ef5d2d5409569d3786d Mon Sep 17 00:00:00 2001 From: p2r3 Date: Wed, 13 Aug 2025 18:56:11 +0300 Subject: [PATCH] clean up registry builder --- build_registries.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build_registries.js b/build_registries.js index a6cbf9b..cfb135f 100644 --- a/build_registries.js +++ b/build_registries.js @@ -142,8 +142,6 @@ function serializeRegistry (name, entries) { function serializeTags (tags) { const parts = []; - console.log(tags); - // Packet ID for Update Tags parts.push(Buffer.from([0x0D])); @@ -283,6 +281,7 @@ uint8_t I_to_B (uint16_t item) { #include +// Binary packet data (${fullRegistryBuffer.length + tagBuffer.length} bytes total) extern uint8_t registries_bin[${fullRegistryBuffer.length}]; extern uint8_t tags_bin[${tagBuffer.length}];