SX1280 on Pi Pico clone (Pimoroni Pico Lipo) #1783
Unanswered
DimitrisTS12
asked this question in
Q&A
Replies: 2 comments 4 replies
|
It's a huge help if you have an SDR that you can set to the freq. being used to see what, if anything, is actually being transmitted over-the-air. I've caught a lot of mistakes that way. |
2 replies
|
I would recommend to start simpler - first, try to get the LoRa modem working since it is the one that is most tolerant to bad configuration, frequency offsets, noise, low power etc. You should also use interrupt-driven receive mode, as the blocking receive which you are using now is very likely to miss packets between the calls to |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi All, I am trying to get two SX1280 modules (RFSolutions Lambda80) to communicate with each other. I have tried vibecoding, and just copying code from the examples for the 1280 to little success. This is what I have at the moment:
For the TX:
And my RX code is as follows:
The wiring on both breadboards is the same.
SCLK GP18
SDI GP19
SDO GP16
nSel GP17
RESET GP20
DIO1 GP21
BUSY GP22
The output on the serial monitor of the TX is always "packet sent succesfully" but on the RX the serial monitor shows zero rssi and nothing for the string, but also no errors.
All reactions