I am using the HTCC-AB01 in Australia on AU915 using sub-band 2. There are multiple gateways near my node and each packet from my node is reliably received by multiple gateways however join attempts, using the provided sample LoRaWAN.ino application can take a long time to succeed.
The LoRaWAN.ino application attempts to join every 30 seconds however it can take 15 minutes or longer before the join is successful.
This is the channel mask I am using:
/LoraWan channelsmask/
uint16_t userChannelsMask[6]={ 0xFF00,0x0000,0x0000,0x0000,0x0000,0x0000 };
I have also tried this one:
uint16_t channelMask[] = { 0xFF00, 0x0000, 0x0000, 0x0000, 0x0002, 0x0000};
And I have also tried calling the setSubBand2() function example as posted on this forum in another CellCube thread for AU915 but the result is always the same, it never succeeds on the first join attempt and can easily take 20 to 30 attempts before finally succeeding.
Any suggestions as to what I should try next?