From a80fdd9b6d48d432f55f284d7d1b7503ca831cc7 Mon Sep 17 00:00:00 2001 From: eaton Date: Sat, 13 Apr 2024 13:39:45 -0400 Subject: [PATCH] changed senseOut pin documentation; pushed EVT-core stuff --- libs/EVT-core | 2 +- src/dev/TPS2HB50BQ1.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/EVT-core b/libs/EVT-core index 9460703..f43275c 160000 --- a/libs/EVT-core +++ b/libs/EVT-core @@ -1 +1 @@ -Subproject commit 9460703e6e8256e1fe9263ad28a254d20241ffe7 +Subproject commit f43275c834222f8598d6d69356259a8689b63fbc diff --git a/src/dev/TPS2HB50BQ1.cpp b/src/dev/TPS2HB50BQ1.cpp index 8f8ed5a..8245932 100644 --- a/src/dev/TPS2HB50BQ1.cpp +++ b/src/dev/TPS2HB50BQ1.cpp @@ -75,7 +75,7 @@ uint32_t TPS2HB50BQ1::getCurrent() { uint32_t current = readSenseOut(); setDiagnostics(DiagMode::OFF); - // TODO: more processing on raw adcPin output + // TODO: more processing on raw adc senseOut pin output return current; } @@ -85,7 +85,7 @@ uint32_t TPS2HB50BQ1::getTemp() { uint32_t temp = readSenseOut(); setDiagnostics(DiagMode::OFF); - // TODO: more processing on raw adcPin output + // TODO: more processing on raw adc senseOut pin output return temp; } @@ -95,7 +95,7 @@ uint32_t TPS2HB50BQ1::getFaultStatus() { uint32_t fault_status = readSenseOut(); setDiagnostics(DiagMode::OFF); - // TODO: more processing on raw adcPin output + // TODO: more processing on raw adc senseOut pin output return fault_status; }