Skip to content

Commit

Permalink
changed senseOut pin documentation; pushed EVT-core stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
EatonWu committed Apr 13, 2024
1 parent 1346ba5 commit a80fdd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/dev/TPS2HB50BQ1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
}
Expand All @@ -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;
}
Expand Down

0 comments on commit a80fdd9

Please sign in to comment.