Skip to content

Commit

Permalink
fixed comment changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
aclowmclaughlin committed Nov 14, 2023
1 parent 9c8b32a commit d3d5e9d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion include/charge_controller/ChargeController.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <EVT/io/CAN.hpp>
#include <EVT/io/CANopen.hpp>

#include "EVT/dev/button.hpp"
#include <EVT/dev/button.hpp>
#include <EVT/io/GPIO.hpp>
#include <charge_controller/dev/BMSManager.hpp>
#include <charge_controller/dev/LCDDisplay.hpp>
Expand Down
3 changes: 0 additions & 3 deletions src/charge_controller/ChargeController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ void ChargeController::process() {
oldCount = bms.numConnected();
}

log::LOGGER.log(log::Logger::LogLevel::DEBUG, "works part1 ?");

if (time::millis() - lastHeartBeat > HEARBEAT_INTERVAL) {
switch (statusLED.readPin()) {
case IO::GPIO::State::LOW:
Expand All @@ -79,7 +77,6 @@ void ChargeController::process() {
// Need to send heartbeat can message to the charger
sendChargerMessage();
lastHeartBeat = time::millis();
log::LOGGER.log(log::Logger::LogLevel::DEBUG, "works part2 ?");
}
}

Expand Down

0 comments on commit d3d5e9d

Please sign in to comment.