Heltec WiFi LorRa 32(V2)

I have been trying to get my new Heltec board to join TTN but keep getting “join failed” when I use the OTAA_Join script. I thought it had to do with the key format (msb vs lsb) but I’ve tried every combination and it still doesn’t join. I’ve joined several other boards (including the TTN Node and the TTN Leonardo dev board) with no problem. What’s interesting is that I KNOW it’s getting to the TTN Gateway (that’s 5 feet away in my office) because when I look at the data from the gateway I see this (but I don’t know what to do with it):

image

Any ideas on how I can troubleshoot this?

Does the TTN accept the OTAA join?
In that case, you should see the device address (26 xx xx xx) change on each OTAA attempt in the TTN console / device view.

It looks like your App EUI has the wrong endianness, it should start with 70 B3 D5 (in default view).

I have a firmware that works for the heltec v2 at:

In the code, I have defined the appkey and the app EUI as constants as they appear in the TTN console.
I’m reversing the endianness in the os_getDevEui() and os_getArtEui() functions. The app key is used as is, same order as it appears in the TTN console.

1 Like

TTN doesn’t accept the device join. As shown in the screen shot at the beginning of the thread it recognizes the EUI values sent to it but refuses to join the board to the network. I’ve tried every combination of ENDianness that there is but I’ll try what you suggest. To be very specific are you saying that App EUI and Dev EUI should be in LSB but the AppKey should be MSB?

Yes, the parameters you see in the Join Request in the TTN console should match the configuration for the device you see in the TTN console. So indeed, I think you should, in your code, swap the APP EUI (and probably Device EUI too), but copy APP key as is. Then try another JOIN and see if things are the right way around in the console.