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

@@ -21,5 +21,6 @@ bool lora_send(const LoraPacket &pkt);
bool lora_receive(LoraPacket &pkt, uint32_t timeout_ms);
void lora_idle();
void lora_sleep();
void lora_receive_continuous();
bool lora_receive_window(LoraPacket &pkt, uint32_t timeout_ms);
uint32_t lora_airtime_ms(size_t packet_len);