SF5 and SF6 configuration in Sx1262 #1229
Replies: 2 comments
This comment was marked as spam.
This comment was marked as spam.
-
The SX126x radios do support LoRa spreading factors LoRaMac-node/src/radio/sx126x/sx126x.h Lines 347 to 360 in edff6ce However, LoRaWAN specifications do not use these spreading factors. The answer to your 2nd question is yes, spreading factor Looking at LoRaWAN Regional Parameters Specification you will see for each region the mapping between the index and the real data rate. As you can observe |
Beta Was this translation helpful? Give feedback.
-
Hi all,
Sx1262 works on SF6 and SF5 as well, but there is no implementation of SFs in standard Firmware in any of country region.
Is there any other method to use SF5 and SF6 ?
Why SF 7 not possible on LoRa
if( dr == DR_7 )
{
modem = MODEM_FSK;
Radio.SetRxConfig( modem, 50000, phyDr * 1000, 0, 83333, 5, rxConfig->WindowTimeout, false, 0, true, 0, 0, false, rxConfig->RxContinuous );
}
else
{
modem = MODEM_LORA;
Radio.SetRxConfig( modem, rxConfig->Bandwidth, phyDr, 1, 0, 8, rxConfig->WindowTimeout, false, 0, false, 0, 0, true, rxConfig->RxContinuous );
Beta Was this translation helpful? Give feedback.
All reactions