-
-
Notifications
You must be signed in to change notification settings - Fork 648
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
CAD - Channel free detection? #514
Comments
Yes. You need to set up LoRa.h has the two bit masks defined. #define IRQ_CAD_DONE_MASK 0b00000100
#define IRQ_CAD_DETECTED_MASK 0b00000001
But there is no special provision for sending when the channel is free, like in Semtech's sx1262 library. Maybe a feature request...? This is a bit complex to set up properly. |
any update @Kongduino ? |
I wasn't aware I was supposed to follow up on this... My answer is as complete as can be, given the circumstances. |
has got any other alternatives? |
There are two open pull requests, if someone tests them and let's me know they work I'll merge and do a release. |
I am implemented function from this PR ... #574 and work beautiful. It is logical ..."if receiving something = somebody transmitting" CAD is is almost useless, this status bit is documented in datasheet with les than one sentence |
That PR isn't implementing true CAD, you have to write to the If I understand the So it will only detect when YOU are receiving, full CAD will detect if two OTHER devices are talking on your channel. This functionality does look useful, but I feel like the PR is lacking, would be nice to implement all of the As for true |
Thanks @bobricius and @morganrallen can you inform us more about CAD? is it kind of WiFi style communication? like all time mesh connected? glad to be know-how and a detail if possible and thanks for being update and make it process we are looking forward for update |
Here's an article about CAD from the Semtech website. It's quite technical but explains CAD quite well – and it's from the horse's mouth, so to speak. |
Hi, Is there any way how to detect if is not transmission on channel?
The text was updated successfully, but these errors were encountered: