You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Thanks very much for all your work on this Project !
I was having problems with receiving downlink messages .
I setup a separate gateway to just be in repeater mode and disabled it's actual relay functionality
All it did was report any traffic it heard to serial.
The Only traffic it ever reported was the original messages prior to a downlink.
the gateway showed that it was sending the downlink message out.
did a heap of debugging and found that writeRegister(REG_INVERTIQ, (uint8_t) iiq); was writing 0x40 .
when I checked the node , it was set at 0x67.
I Modified sendPacket code
from LoraDown.iiq = (ipol? 0x40: 0x27);
To LoraDown.iiq = (ipol? 0x67: 0x27);
& the messages started to show up.
It appears clearing the low order bits 5..0 have an effect .
The text was updated successfully, but these errors were encountered:
Hi,
Thanks very much for all your work on this Project !
I was having problems with receiving downlink messages .
I setup a separate gateway to just be in repeater mode and disabled it's actual relay functionality
All it did was report any traffic it heard to serial.
The Only traffic it ever reported was the original messages prior to a downlink.
the gateway showed that it was sending the downlink message out.
did a heap of debugging and found that writeRegister(REG_INVERTIQ, (uint8_t) iiq); was writing 0x40 .
when I checked the node , it was set at 0x67.
I Modified sendPacket code
from LoraDown.iiq = (ipol? 0x40: 0x27);
To LoraDown.iiq = (ipol? 0x67: 0x27);
& the messages started to show up.
It appears clearing the low order bits 5..0 have an effect .
The text was updated successfully, but these errors were encountered: