From 27556ecc24688b08f31482ff4cb82377ef323a3c Mon Sep 17 00:00:00 2001 From: Jean Pierre Lathuile Date: Mon, 13 Mar 2023 08:24:31 +0100 Subject: [PATCH] Update LoRa_APRS_Tracker.cpp For RX --- src/LoRa_APRS_Tracker.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/LoRa_APRS_Tracker.cpp b/src/LoRa_APRS_Tracker.cpp index f4898f1..96fedb1 100644 --- a/src/LoRa_APRS_Tracker.cpp +++ b/src/LoRa_APRS_Tracker.cpp @@ -359,6 +359,22 @@ void loop() { "firmware: https://github.com/lora-aprs/TTGO-T-Beam_GPS-reset"); show_display("No GPS frames detected!", "Try to reset the GPS Chip", "https://github.com/lora-aprs/TTGO-T-Beam_GPS-reset", 2000); } + + //RX + int packetSize = LoRa.parsePacket(); + + if (packetSize) { + String rxdata; + + while (LoRa.available()) { // read packet + rxdata+=(char)LoRa.read(); + } + + rxdata+="' with RSSI "; + rxdata+=(LoRa.packetRssi()); + show_display("<< RX RX >>", rxdata); + delay(4000); + } } void load_config() {