Skip to content

Commit

Permalink
Add rssi to printPacket
Browse files Browse the repository at this point in the history
  • Loading branch information
mc-hamster committed Mar 1, 2022
1 parent ac8ba70 commit 32ef354
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/mesh/RadioInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,9 @@ void printPacket(const char *prefix, const MeshPacket *p)
if (p->rx_snr != 0.0) {
DEBUG_MSG(" rxSNR=%g", p->rx_snr);
}
if (p->rx_rssi != 0) {
DEBUG_MSG(" rxSNR=%g", p->rx_rssi);
}
if (p->priority != 0)
DEBUG_MSG(" priority=%d", p->priority);

Expand Down

0 comments on commit 32ef354

Please sign in to comment.