wifi: Add missing advertisement for 80+80 MHz channel width in HE capabilities

This commit is contained in:
Sébastien Deronne
2025-03-21 17:13:47 +01:00
parent 5b7a948fa9
commit 8b1eb80f63

View File

@@ -2361,6 +2361,10 @@ WifiMac::GetHeCapabilities(uint8_t linkId) const
((phy->GetPhyBand() == WIFI_PHY_BAND_5GHZ) || (phy->GetPhyBand() == WIFI_PHY_BAND_6GHZ)))
{
channelWidthSet |= 0x04;
if (phy->GetOperatingChannel().GetNSegments() > 1)
{
channelWidthSet |= 0x08;
}
}
capabilities.SetChannelWidthSet(channelWidthSet);
capabilities.SetLdpcCodingInPayload(htConfiguration->m_ldpcSupported);