Hello developers,
I am using Arduino pro mini and RA-01H containing SX1276 to develop a LoRa node device. The library I am using is MCCI Arduino Lora WAN library (latest version). I successfully connected the node with the TTN and sent a payload “Hello” to the server. But the communication stopped after 1/2 successful transmission and there is an error “OP_TXRXPEND, not sending” in the serial monitor.
On the TTN side, the LORAWAN setting parameters for the node are given below
Frequency plan > ASIA 920-923 Mhz
Lorawan version >LoraWan Specification 1.0.2
Regional Parameters Version > RP001 Regional Parameters 1.0.2 revision B
my payload is simple “Hello”
I am using OTAA from the example.
my TX interval is 238 s
My Pin configuration that follows the code is given below:
SX1276----Arduino pro mini
NSS> 10
RST> 9
DIO0> 2
DIO1> 3
DIO2> LMIC_UNUSED_PIN
This is the output of the serial monitor:
Starting
Packet queued
2926: EV_JOINING
331672: EV_TXSTART
696245: EV_JOINED
netid: 55
devaddr: 6E9B539F
AppSKey: 4E-CD-43-AA-7C-4A-2A-83-90-D8-A0-D7-46-7F-10-CE
NwkSKey: 0D-5F-AA-5F-89-A5-82-3A-94-53-0F-6D-9E-7E-51-09
703499: EV_TXSTART
808562: EV_TXCOMPLETE (includes waiting for RX windows)
2763586: EV_TXSTART
OP_TXRXPEND, not sending
I entered lorabase.h and saw the Spreading Factor details for AS923 which is shown below
How to get rid of “OP_TXRXPEND, not sending” this issue ?