Replies: 2 comments
-
Have you investigated this -10 error code? It doesn't seem so, because doing that you will find this page. That will tell you -10 is
By reading the intro to the example(s), which says:
Following that link will take you to a wiki page that lists exactly what you're looking for. |
Beta Was this translation helpful? Give feedback.
-
thank you!
and I didnt realize that for RadioLib library this values maybe different.. UPD: so if I set 5 it would be 4/5 also - code start to work with the only issue so far - I can not receive this on my receiver (RPI4 + Waveshare LoRaWAN SX1262 HAT) side but I will create new post about this. |
Beta Was this translation helpful? Give feedback.
-
hi!
Im checking how to make CubeCell devices work with RadioLib library.
Im using AB01 v1.2 and this example - SX126x_Receive_Interrupt.ino
I changed code to use it with Cubecell - commented line 32 and uncommented line 39:
if I use:
int state = radio.begin(915.0, 125.0, 7, 1, 0x12, 10, 8, 0, false);
or
int state = radio.begin(868.0, 125.0, 7, 1, 0x12, 10, 8, 0, false);
I receive:
if I use:
int state = radio.begin(868.0, 125.0, 7, 1, 0x12, 10, 8, 1.6, false);
init error is:
if I use default
int state = radio.begin();
it seems start to work:
but how to check what the current LoRa settings?
when I run second AB01 device with code examples/SX126x/SX126x_Transmit_Interrupt/SX126x_Transmit_Interrupt.ino and default radio.begin() - these two devices starts communication between each other - I can see in terminaloutput:
"[SX1262] Sending another packet ... transmission finished!"
in the terminal of sender device and
in the terminal of receiver device.
but how to check this current settings which devices using for communication?
and how to configure my own settings? at least Frequency and SyncWord - I need use CubeCell devices with another LoRaWAN device so Im checking the examples to know how to prepare my own firmware.
any inputs would be useful.
thank you.
Beta Was this translation helpful? Give feedback.
All reactions