Fix exception 28 on HRG15

Fix exception 28 on HRG15 (#14067)
This commit is contained in:
Theo Arends 2021-12-18 14:47:03 +01:00
parent 85731148c5
commit 2d7a48152b
1 changed files with 2 additions and 1 deletions

View File

@ -91,7 +91,8 @@ bool Rg15Poll(void) {
while (HydreonSerial->available()) {
Rg15ReadLine(rg15_buffer);
AddLog(LOG_LEVEL_DEBUG_MORE, PSTR("HRG: Received '%s'"), rg15_buffer);
// AddLog(LOG_LEVEL_DEBUG_MORE, PSTR("HRG: Received '%s'"), rg15_buffer);
AddLog(LOG_LEVEL_DEBUG_MORE, PSTR("HRG: Received %*_H"), strlen(rg15_buffer), rg15_buffer);
Rg15Process(rg15_buffer);
}