Tuesday 25 September 2018

lora - How to minimize degradation of physically overlapping but separately managed/owned LoRaWAN networks?


Wireless networks such as WiFi and Bluetooth are designed to work well even when many separately owned and managed networks overlap physically. For example, an apartment building full of personal WiFi routers just works, although this can lead to performance issues.


LoRaWAN is not really designed for this kind of robustness. From What is LoRaWAN?:




You may have heard that LoRaWAN isn’t a great fit for customer-deployed (aka private network) solutions, which is true today... It is a better fit for public, wide-area networks, because with LoRaWAN, all of the channels are tuned to the same frequencies, and it’s better to have only one network operating in a single area in order to avoid collision problems.



The article goes on to explain alternatives, but my question is about LoRaWAN itself. It appears that simply setting up a new LoRaWan network in proximity to, or overlapping another can degrade the performance of each. Assuming that is true, what can be done - if anything - to minimize degradation short of cooperation/coordination?


Of course I'm a strong advocate of cooperation and coordination, but sometimes it's not an easily available option. Are there features within LoRaWAN that allow for (or at least help facilitate) detection and avoidance of performance degradation due to adjacent or overlapping networks?



Answer



One of the design assumptions of LoRaWAN is that multiple gateways are all listening to the same nodes. The only way to add the type of coordination you're talking about would be to add frequency hopping.


Link Labs and Haystack are two companies providing frequency hopped versions of LoRa.


No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...