From 79fc97cf736549519a54b10796ad0ca57bc4ecc7 Mon Sep 17 00:00:00 2001 From: gijsio <67470426+gijsio@users.noreply.github.com> Date: Fri, 3 Sep 2021 11:51:15 +0200 Subject: [PATCH] Update lorawan-abp.md --- content/tutorials/networks/lora/lorawan-abp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorials/networks/lora/lorawan-abp.md b/content/tutorials/networks/lora/lorawan-abp.md index c4c12dd..91582b8 100644 --- a/content/tutorials/networks/lora/lorawan-abp.md +++ b/content/tutorials/networks/lora/lorawan-abp.md @@ -10,7 +10,7 @@ ABP stands for Authentication By Personalisation. It means that the encryption k The example below attempts to get any data received after sending the frame. Keep in mind that the Gateway might not be sending any data back, therefore we make the socket non-blocking before attempting to receive, in order to prevent getting stuck waiting for a packet that will never arrive. I -**Note for US915 / AU915 regions:** moste LoRaWAN gateways are configured to listen to 8 channels only, while the region supports up to 64 uplink channels. In order to receive packets, please confirm the frequency plan of your gateway with the channels configured on your device. By default, our devices will transmit on all 64 channels, meaning you might receive packets intermittently. The most common configuration is `FSB2`, or channels 8-15. Uncomment the respective section in the example below to select the these uplink channels. It is possible to switch to a different sub-band by selecting a different channel set. For more information, have a look [here](https://www.thethingsindustries.com/docs/reference/frequency-plans/) +**Note for US915 / AU915 regions:** most LoRaWAN gateways are configured to listen to 8 channels only, while the region supports up to 64 uplink channels. In order to receive packets, please confirm the frequency plan of your gateway with the channels configured on your device. By default, our devices will transmit on all 64 channels, meaning you might receive packets intermittently. The most common configuration is `FSB2`, or channels 8-15. Uncomment the respective section in the example below to select the these uplink channels. It is possible to switch to a different sub-band by selecting a different channel set. For more information, have a look [here](https://www.thethingsindustries.com/docs/reference/frequency-plans/) ```python