I have problems with sending confirmed packets.
when I send a packet, the answer is correct except the frequency convention: same frequency, + data rate for response, I get back a different frequency.
the timestamp + 1000000 used with immediate = false ist correct, it falls into the first rn2483 window.
Info [receive] length 181, {"txpk":{"imme":false,"tmst":622008780,"freq":867.1,"rfch":0,"powe":14,"modu":"LORA","datr":"SF8BW125","codr":"4/5","ipol":true,"size":12,"ncrc":true,"data":"YCsUASYgAwAnJ0er"}}
An explanation I have:
the rn2483 sends several packets with different frequencies an some packets are lost?
Looks like your gateway is receiving messages from that device on multiple channels, so there’s either something very wrong with your gateway or you’re just too close to your gateway.
I found the cause. When sending the confirmation packet from Concentrator to device I check the status of the Concentrator before sending. I did only send confirmation telegrams when status was TX_FREE. In most cases the status was TX_SCHEDULED so without confirmation the RN2483 does retransmits on other frequencies. Now I send even if status is TX_SCHEDULED and all works fine.