wifi: Extend use of EHT PPDU type for MU-MIMO

This commit is contained in:
Sébastien Deronne
2023-07-04 12:08:57 -04:00
parent 8de21d45e7
commit ddc736009c

View File

@@ -529,6 +529,10 @@ WifiTxVector::IsDlOfdma() const
{
return false;
}
if (IsEht(m_preamble))
{
return m_ehtPpduType == 0;
}
if (m_muUserInfos.size() == 1)
{
return true;
@@ -552,6 +556,10 @@ WifiTxVector::IsDlMuMimo() const
{
return false;
}
if (IsEht(m_preamble))
{
return m_ehtPpduType == 2;
}
if (m_muUserInfos.size() < 2)
{
return false;