Replies: 2 comments
-
I don't think the RC oscillator can be used for active reception, definitely not for LoRa (for FSK sequencer maybe) - where exactly did you get this information (e.g. page number in the datasheet)? |
Beta Was this translation helpful? Give feedback.
0 replies
-
The MRK WAN 1310 is a SAMD for the main MCU with a Murata CMWX1ZZABZ module (STM32L07 + SX1276) acting as an AT cmd driven modem. There is a pass-through hack somewhere but overall, this may not be the board you are looking for - or can even drive with RadioLib. And getting below ~50uA sleep is a challenge so not great on batteries. |
Beta Was this translation helpful? Give feedback.
0 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.
-
I'm building a battery operated device that needs to be able to send/receive data to another (same) device. For this I'm currently planning on use the Arduino MKR WAN 1310 which is using the SX1276 LoRa chip.
Now, after reading the SX1276 datasheet it seems that the device is capable to run on it's internel RC Oscillator when waiting for a new packet. And considerably less power is used when it's running on it's RC Oscillator. But I don't think this is implemented in the Arduino LoRa library, so it will probably be using too much power for a battery operated device.
While looking in your code you seem to refer to the RC Oscillator which makes me think that using your library is probably going to consume much less power when the device is constantly listening for data because it'll be using it's RC Oscillator which is only a couple of uA of power.
My devices will be sending some data bytes at random moments so the other device will need to be listening for it all the time...
Beta Was this translation helpful? Give feedback.
All reactions