mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-29 19:03:52 +00:00
Merge pull request #1263 from mc-hamster/router
Add rssi to printPacket
This commit is contained in:
commit
950b54aaba
@ -219,6 +219,9 @@ void printPacket(const char *prefix, const MeshPacket *p)
|
|||||||
if (p->rx_snr != 0.0) {
|
if (p->rx_snr != 0.0) {
|
||||||
DEBUG_MSG(" rxSNR=%g", p->rx_snr);
|
DEBUG_MSG(" rxSNR=%g", p->rx_snr);
|
||||||
}
|
}
|
||||||
|
if (p->rx_rssi != 0) {
|
||||||
|
DEBUG_MSG(" rxSNR=%g", p->rx_rssi);
|
||||||
|
}
|
||||||
if (p->priority != 0)
|
if (p->priority != 0)
|
||||||
DEBUG_MSG(" priority=%d", p->priority);
|
DEBUG_MSG(" priority=%d", p->priority);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user