Ideetron/RFM95W_Nexus

SF7 nt working?

tigernnj opened this issue · 5 comments

i've been testing LoRaWAN_V31 example.

On LoRaWAN_V31.ino line 33 it says that this example transmits with Spreading factor 7.
After checking with iot.semtech server it shows as SF11 so i've searched RFM_Send_Package() on RFM95_V21.cpp and found that it really is configured to SF11 (0xB4)
//Switch to SF7 CRC on payload on
RFM_Write(0x1E,0xB4);

Now after changing register 0x1E to 0x74 (SF7) no more messages arrived to server.

This is not supposed to work with SF7? Am i missing something?

Thank you

thank you for your answer.

But can you elaborate a bit more?
On datasheet setting register 0x26 to 0x04 disables MobileNode bit, right? How is this related?
can't seem to find anything on datasheet...

kind regards

Hi,

Ok. I was looking only on RFM95 datasheet.

So register 0x26 should be 0x04 also for RFM_Receive() - downlink

I've corrected it but dowlink still not working.

Thank you