We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
It's possible to start an EnergyScan to a specific channel using ot-ctl commands like this:
# Duration: 200ms # Channel: 20 ot-ctl scan energy 200 20
duration
otLinkEnergyScan()
otPlatRadioGetPreferredChannelMask()
The scan method of ot-ctl is calling otLinkEnergyScan() here
scan
The EnergyScan method of DBUS API is calling otLinkEnergyScan() here
EnergyScan
We need it for the PCBA tests, we would like to read the RSSI on a specific channel (instead of all, to speed up)
The difficulties here are maybe just to know how to make the parameter channel optionable in the DBUS API.
channel
There is maybe a temporary method, but I don't like it:
ot-ctl channel preferred xxx
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
It's possible to start an EnergyScan to a specific channel using ot-ctl commands like this:
duration
parameter is presentotLinkEnergyScan()
but the DBUS variant, always read the channel fromotPlatRadioGetPreferredChannelMask()
The
scan
method of ot-ctl is callingotLinkEnergyScan()
hereThe
EnergyScan
method of DBUS API is callingotLinkEnergyScan()
hereWe need it for the PCBA tests, we would like to read the RSSI on a specific channel (instead of all, to speed up)
The difficulties here are maybe just to know how to make the parameter
channel
optionable in the DBUS API.There is maybe a temporary method, but I don't like it:
ot-ctl channel preferred xxx
before and after the scan triggered by DBUS..The text was updated successfully, but these errors were encountered: