Skip to content

Commit

Permalink
[LR11x0] Print scan failed in example
Browse files Browse the repository at this point in the history
  • Loading branch information
jgromes committed Oct 18, 2024
1 parent 5597899 commit 919cebc
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,13 @@ void loop() {
Serial.print(RADIOLIB_GET_GNSS_SOLVER_ERROR(state));
Serial.println(F(")"));
}

} else {
Serial.print(F("Scan failed, code "));
Serial.print(state);
Serial.print(F(" (demodulator error "));
Serial.print(RADIOLIB_GET_GNSS_DEMOD_ERROR(state));
Serial.println(F(")"));

}

Expand Down

0 comments on commit 919cebc

Please sign in to comment.