Skip to content

Commit

Permalink
wifi-scripts: sync enable_background_radar in ucode with old version
Browse files Browse the repository at this point in the history
It needs to be opt-in instead of opt-out, since there is no reliable way to
determine if the extra background radar chain has an antenna connected.

Signed-off-by: Felix Fietkau <[email protected]>
  • Loading branch information
nbd168 committed Jan 14, 2025
1 parent 7bf3bc8 commit e516871
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ function generate(config) {
if (!phy_features.radar_background || config.band != '5g')
delete config.enable_background_radar;
else
set_default(config, 'enable_background_radar', phy_features.radar_background);
set_default(config, 'enable_background_radar', false);

append_vars(config, [ 'acs_chan_bias', 'acs_exclude_dfs', 'enable_background_radar' ]);

Expand Down

0 comments on commit e516871

Please sign in to comment.