From c5ed16b05f55f2ab493af2734439e382bfa44506 Mon Sep 17 00:00:00 2001 From: Alberto Gallegos Ramonet Date: Tue, 7 Jan 2025 18:31:43 +0900 Subject: [PATCH] lr-wpan: Fix missing PHY initialization --- src/lr-wpan/model/lr-wpan-net-device.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lr-wpan/model/lr-wpan-net-device.cc b/src/lr-wpan/model/lr-wpan-net-device.cc index 2e4eb39f2..a71fa80f3 100644 --- a/src/lr-wpan/model/lr-wpan-net-device.cc +++ b/src/lr-wpan/model/lr-wpan-net-device.cc @@ -106,6 +106,7 @@ LrWpanNetDevice::DoInitialize() { NS_LOG_FUNCTION(this); + m_phy->Initialize(); AggregateObject(m_mac); CompleteConfig();