Acknowledgment lora #505
Replies: 2 comments 1 reply
-
LoRa is raw communication. Except sending and receiving, you have to do everything including ack for your own. LoRaWAN protocol has built-in ACK mechanism, but the protocol is much more complex. |
Beta Was this translation helpful? Give feedback.
-
As IoTThinks says LoRa P2P is raw data, so if you want to implement ACK, you have to send a UUID with your message, and the receiver sends an empty ACK/PONG message with that UUID. After the sender has sent the message, you store the ID with a Once you got that working, you can make it evolve to provide more useful functionalities: timeout, resend yes/no, how many resends before fail, etc. |
Beta Was this translation helpful? Give feedback.
-
Hello i will ask about ack mechanism in lora, i have a project and than i must used ack mechanism. Can lora doing acknowledgment mechanism, and how to alghoritm program for that thank you.
Beta Was this translation helpful? Give feedback.
All reactions