Is there a way to force the node to an unconditional rejoin at each powercycle?
I use the standard setup:
void setup() {
Serial.begin(115200);
#if(AT_SUPPORT)
enableAt();
#endif
deviceState = DEVICE_STATE_INIT;
LoRaWAN.ifskipjoin();
}
I tried to leave out the ifskipjoin function, but it did not help. Do I need to use the netInfoDisable()-function? How can I do it?
Regards
Joerg