From 77b3564677188aeab845fa34172b02300eb45a57 Mon Sep 17 00:00:00 2001 From: Kyle Schwarz Date: Wed, 19 Feb 2025 00:20:49 -0500 Subject: [PATCH] Communication: Add missing short format commands --- communication/encoder.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/communication/encoder.cpp b/communication/encoder.cpp index 25c10dc..9efef05 100644 --- a/communication/encoder.cpp +++ b/communication/encoder.cpp @@ -265,6 +265,8 @@ bool Encoder::encode(const Packetizer& packetizer, std::vector& result, case Command::GetMainVersion: case Command::GetSecondaryVersions: case Command::NeoReadMemory: + case Command::ClearCoreMini: + case Command::LoadCoreMini: // There is a firmware handling idiosyncrasy with these commands // They must be encoded in the short format m51msg->forceShortFormat = true;