From 1c2f4420eca6b53f327ddd2199ceabba7043c63a Mon Sep 17 00:00:00 2001 From: Sebastien Deronne Date: Wed, 8 Jun 2022 07:50:52 +0200 Subject: [PATCH] wifi: Fix number of TX and RX spatial streams in WifiPhy init list --- src/wifi/model/wifi-phy.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wifi/model/wifi-phy.cc b/src/wifi/model/wifi-phy.cc index e75074d58..1a047a172 100644 --- a/src/wifi/model/wifi-phy.cc +++ b/src/wifi/model/wifi-phy.cc @@ -322,8 +322,8 @@ WifiPhy::WifiPhy () m_blockAckTxTime (Seconds (0)), m_powerRestricted (false), m_channelAccessRequested (false), - m_txSpatialStreams (0), - m_rxSpatialStreams (0), + m_txSpatialStreams (1), + m_rxSpatialStreams (1), m_wifiRadioEnergyModel (0), m_timeLastPreambleDetected (Seconds (0)) {