Keep receiver LoRa in continuous RX

- Add lora_receive_continuous() helper and use it after init and TX (ACK/time sync)

- Ensure receiver returns to RX immediately after lora_send

- Document continuous RX behavior in README
This commit is contained in:
2026-02-02 22:17:09 +01:00
parent 237e392c02
commit 90d830da6f
5 changed files with 14 additions and 1 deletions

View File

@@ -133,6 +133,8 @@ void receiver_loop() {
}
```
Receiver keeps the SX1276 in continuous RX, re-entering RX after any transmit (ACK or time sync).
**Key receiver functions**:
```cpp
bool lora_receive(LoraPacket &pkt, uint32_t timeout_ms);