Skip to content

Commit dffee67

Browse files
committed
Minor wifi logging update
1 parent ec2d53e commit dffee67

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/LoadComms/LoadComms.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ etl::string<LoadComms::LOG_STRING_SIZE> LoadComms::getLogString() const {
145145
logString.append(", RxE: "); // 7 chars
146146
etl::to_string(rxEvents.load(std::memory_order_relaxed), logString,
147147
decFormatA, true); // 6 chars
148-
logString.append(", RxBS: "); // 8 chars
148+
logString.append(", RxB: "); // 7 chars
149149
etl::to_string(bytesReceived.load(std::memory_order_relaxed), logString,
150150
decFormatB, true); // 7 chars
151151

lib/LoadComms/LoadComms.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class LoadComms {
9292

9393
// TODO - improve this and null terminator may not be needed
9494
static constexpr uint_fast8_t LOG_STRING_SIZE =
95-
3 + 7 + 6 + ((8 + 7) * 2) + 7 + 6 + 8 + 7 + 1;
95+
3 + 7 + 6 + ((8 + 7) * 2) + 7 + 6 + 7 + 7 + 1;
9696
/**
9797
* @brief Get at string that describes the current state of the PID instance
9898
* @returns the current state of the PID instance as a string

0 commit comments

Comments
 (0)