Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ void loop()
lora_idle = false;
Serial.println("into RX mode");
Radio.Rx(0);
RadioEvents.RxDone = OnRxDone; // Swt the event handler again to prepare for next receive
}
}

Expand All @@ -94,3 +95,4 @@ void OnRxDone( uint8_t *payload, uint16_t size, int16_t rssi, int8_t snr )
Serial.printf("\r\nreceived packet \"%s\" with rssi %d , length %d\r\n",rxpacket,rssi,rxSize);
lora_idle = true;
}