If one wanted to build a microcontroller for receiving lora packets to go hand in hand with a lora point to point transmitter does anyone have any they can recommend?
Any for the rp2350 ?
28 November 2024 1:04pm
Looking around, I found this. Looks like a good choice:
Arduino MKR WAN 1310
Does anyone have any negative feedback on this ? Perhaps in the area of deepsleep. It would have to be able to do that well. Which would be hard on a receiver I think, so we can discount that.
30 November 2024 6:18am
Haven't used that particular module but have used a murata LoRa mcu before. Seems to work decent. Does have one quirk where sometimes it has trouble being put into sleep mode.
What are your design constraints?
I would look into the meshtastic community. Lots of different open source LoRa hardware designs.
30 November 2024 6:35am
Check this project:
GitHub - SensorsIot/LoRa_Mailbox_Notifier
Contribute to SensorsIot/LoRa_Mailbox_Notifier development by creating an account on GitHub.
It uses a pair of Ebyte Lora modules for point to point communication and messages are passed serially to the modules. I didn't used that modules so I can't comment anything else.
Also Meshtastic is a great project.

Akiba
Freaklabs
3 December 2024 2:41am
The Murata module on the MKR WAN is based on the SX1276. If you use the RP2040, I'd recommend a bare radio module and the RadioLib library. Unfortunately it doesn't look like it supports the RP2350 yet. If you're looking for horsepower, you may want to check out an ESP32-S3 based implementation. The Lilygo boards are quite popular. Make sure you get the SX1262 (newer) or SX1276 (older) variant. The SX1280 radio is a 2.4 GHz one and wouldn't give you as much range as the sub-GHz ones.
Good luck!
Kim Hendrikse