-
Notifications
You must be signed in to change notification settings - Fork 314
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
wifi: radio_test: Add timeout parameter for capture mode #1399
Conversation
bdd7554
to
91d79c9
Compare
91d79c9
to
7a055dd
Compare
7a055dd
to
efba3ac
Compare
* 0: Packet detected | ||
* 1: Packet detection failed | ||
*/ | ||
unsigned char timeout_status; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
timeout and status are antonyms, i.e., timeout in general means lack of status. So, may be rename to capture_status
? Also, it isn't quite clear from the comment the intent behind this?
a2b0e47
to
187296e
Compare
*1: Capture failed after WLAN packet detection | ||
*2: Capture timedout as no WLAN packets are detected | ||
*/ | ||
unsigned char capture_status; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cap_status
inline with other params?
cb754b0
to
df16933
Compare
[SHEL-2811]: Added command to get user-specified timeout in seconds.Rx samples will be displayed only when the capture occurs before the timeout lapses. Signed-off-by: Mahammadyunus Patil <[email protected]>
df16933
to
8f2ac92
Compare
SHEL-2811: Added command to get user-specified timeout in seconds.Rx samples will be displayed only when the capture occurs before the timeout lapses.