Skip to content
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.

PPM-383: Remove the unsupported 60Ghz band option from the selected bands #1599

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -1358,7 +1358,6 @@ enum eClientSelectedBands: uint8_t {
eSelectedBands_24G = 0x1,
eSelectedBands_5G = 0x2,
eSelectedBands_6G = 0x4,
eSelectedBands_60G = 0x8,
};

typedef struct sClientConfig {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,6 @@ eClientSelectedBands:
eSelectedBands_24G: 1
eSelectedBands_5G: 2
eSelectedBands_6G: 4
eSelectedBands_60G: 8

sClientConfig:
_type: struct
Expand Down
1 change: 0 additions & 1 deletion controller/src/beerocks/bml/bml_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ extern "C" {
#define BML_CLIENT_SELECTED_BANDS_24G 1
#define BML_CLIENT_SELECTED_BANDS_5G 2
#define BML_CLIENT_SELECTED_BANDS_6G 4
#define BML_CLIENT_SELECTED_BANDS_60G 8

#define BML_PARAMETER_NOT_CONFIGURED -1

Expand Down
2 changes: 0 additions & 2 deletions controller/src/beerocks/cli/beerocks_cli_bml.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2264,8 +2264,6 @@ int cli_bml::client_get_client(const std::string &sta_mac)
ret += "5GHz,";
if (val & BML_CLIENT_SELECTED_BANDS_6G)
ret += "6GHz,";
if (val & BML_CLIENT_SELECTED_BANDS_60G)
ret += "60GHz,";

// remove ending comma
if (!ret.empty() && (ret.back() == ',')) {
Expand Down