-
-
Notifications
You must be signed in to change notification settings - Fork 652
Not an issue - guidance on Idle mode #212
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Also, does LoRa.h library support the beacon function? Happy holidays! |
Last part first, beacons are not part of LoRa, as far as I can tell that only applies to running in FSK/OOK mode. For wake-up you could look into Unfortunately I don't have any hardware with the other DIO pins exposed so I have be unable to support this feature. |
Thanks morganrallen. Greatly appreciate you always responding so quickly on these questions. Just to confirm on the beacon topic, did you deduce that beacon mode is only functional because it is tied to the 0x31 register address associated with available a FSK/OOK? I'm still learning about the registers but does this mean the LoRa.h library only activates the LoRa functionality for the SX1276 registers? Guess I'm confused on why there is even FSK/OOK functionality on the SX1276 in the first place. In regards to CAD, if I want to implement that function do I need to specifically call out the register address (e.g. RegOpMode 0x01) in my Arduino Uno sketch to get it to work? Is that the case for any other LoRa register functionality that I want to use? |
That's right. While the datasheet doesn't explicitly state BeaconMode only works in FSK/OOK mode, it's config register (0x31.3) is only found in
Right again, this driver only supports the
By default all of the interrupts are enabled and I do not believe we change that (we haven't even defined RegIrqFlagsMask....) so there should be a call to I would love to see another CAD pull request come it, it's something I want but haven't had to the time look into. |
Thanks again. I'll do some more evaluating and see what I can come up with. |
Hi guys,
I want to use an Arduino Uno to have my SX1276 LoRa chip go into idle mode and then activate when it receives a preamble. I see that command for LoRa.idle() to initiate the idle mode but unclear how to re-activate. Semtech's data sheet discusses the various registers associated with preamble length thus do I need to write a command for the various SX1276 shift registers?
Thank you!
The text was updated successfully, but these errors were encountered: