diff --git a/avrrfm.c b/avrrfm.c index a12ab78..b229e1b 100644 --- a/avrrfm.c +++ b/avrrfm.c @@ -165,8 +165,8 @@ static char buf[42]; - snprintf(buf, sizeof (buf), "RSSI: -%d dBm, CRC: %d, %d.%d°C\r\n", - _rssi, crc, temp.quot, abs(temp.rem)); + snprintf(buf, sizeof (buf), "RSSI: %d dBm, CRC: %d, %d.%d°C\r\n", + -_rssi, crc, temp.quot, abs(temp.rem)); printString(buf); snprintf(buf, sizeof (buf), "RSSI: %4d dBm, CRC: %d", -_rssi, crc);