Skip to content
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

RDKBWIFI-10 Added support for btm_link_removal_imminent in em_steering_req_t. #132

Merged
merged 6 commits into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion inc/em_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,8 @@ typedef struct {
unsigned char req_mode : 1;
unsigned char btm_dissoc_imminent : 1;
unsigned char btm_abridged : 1;
unsigned char reserved : 5;
unsigned char btm_link_removal_imminent : 1;
unsigned char reserved : 4;
unsigned short steering_opportunity_window;
unsigned short btm_dissoc_timer;
unsigned char sta_list_count;
Expand Down
1 change: 1 addition & 0 deletions src/em/steering/em_steering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ short em_steering_t::create_btm_request_tlv(unsigned char *buff)
req->req_mode = params->request_mode;
req->btm_dissoc_imminent = params->disassoc_imminent;
req->btm_abridged = params->btm_abridged;
req->btm_link_removal_imminent = params->link_removal_imminent;
if(params->request_mode == 1)
{
//ignore this
Expand Down