From 483ae35930253456623af11dc5b3bf5bdcffdb6e Mon Sep 17 00:00:00 2001 From: SW-Nico Date: Thu, 3 Oct 2024 10:41:57 +0200 Subject: [PATCH] bugfix: reactivate MPPT FW version check --- lib/VeDirectFrameHandler/VeDirectMpptController.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/VeDirectFrameHandler/VeDirectMpptController.cpp b/lib/VeDirectFrameHandler/VeDirectMpptController.cpp index a3b261a94..d5b7e479b 100644 --- a/lib/VeDirectFrameHandler/VeDirectMpptController.cpp +++ b/lib/VeDirectFrameHandler/VeDirectMpptController.cpp @@ -287,9 +287,7 @@ bool VeDirectMpptController::isHexCommandPossible(void) { // charger periodically sends human readable (TEXT) data to the serial port. For firmware // versions v1.53 and above, the charger always periodically sends TEXT data to the serial port. // --> We just use hex commands for firmware >= 1.53 to keep text messages alive - // Note: First we send queries (timing improvement) - //return (_canSend && (_tmpFrame.getFwVersionAsInteger() >= 153)); - return true; + return (_canSend && (_tmpFrame.getFwVersionAsInteger() >= 153)); }