Skip to content

Commit

Permalink
bugfix: reactivate MPPT FW version check
Browse files Browse the repository at this point in the history
  • Loading branch information
SW-Niko committed Oct 3, 2024
1 parent 5436cab commit 483ae35
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/VeDirectFrameHandler/VeDirectMpptController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}


Expand Down

0 comments on commit 483ae35

Please sign in to comment.