31#include <ns3/constant-position-mobility-model.h>
32#include <ns3/core-module.h>
34#include <ns3/lr-wpan-module.h>
35#include <ns3/packet.h>
36#include <ns3/propagation-delay-model.h>
37#include <ns3/propagation-loss-model.h>
38#include <ns3/simulator.h>
39#include <ns3/single-model-spectrum-channel.h>
49 if (params.m_status == MacStatus::SUCCESS)
53 if (!params.m_panDescList.empty())
55 std::cout <<
"Device [" << device->GetMac()->GetShortAddress()
56 <<
"] found the following PANs:\n";
57 for (
long unsigned int i = 0; i < params.m_panDescList.size(); i++)
59 std::cout <<
"PAN DESCRIPTOR " << i <<
":\n"
60 <<
"Pan Id: " << params.m_panDescList[i].m_coorPanId
61 <<
"\nChannel: " <<
static_cast<uint32_t>(params.m_panDescList[i].m_logCh)
63 <<
static_cast<uint32_t>(params.m_panDescList[i].m_linkQuality)
64 <<
"\nCoordinator Short Address: "
65 << params.m_panDescList[i].m_coorShortAddr <<
"\n\n";
70 std::cout <<
"No PANs found (Could not find any beacons)\n";
75 std::cout <<
"Something went wrong, scan could not be completed\n";
80main(
int argc,
char* argv[])
103 channel->AddPropagationLossModel(propModel);
104 channel->SetPropagationDelayModel(delayModel);
106 coord1NetDevice->SetChannel(channel);
107 endNodeNetDevice->SetChannel(channel);
108 coord2NetDevice->SetChannel(channel);
110 coord1->AddDevice(coord1NetDevice);
111 endNode->AddDevice(endNodeNetDevice);
112 coord2->AddDevice(coord2NetDevice);
117 coord1Mobility->SetPosition(Vector(0, 0, 0));
118 coord1NetDevice->GetPhy()->SetMobility(coord1Mobility);
122 endNodeMobility->SetPosition(Vector(100, 0, 0));
123 endNodeNetDevice->GetPhy()->SetMobility(endNodeMobility);
127 coord2Mobility->SetPosition(Vector(206, 0, 0));
128 coord2NetDevice->GetPhy()->SetMobility(coord2Mobility);
131 endNodeNetDevice->GetMac()->SetMlmeScanConfirmCallback(
149 coord1NetDevice->GetMac(),
163 coord2NetDevice->GetMac(),
180 endNodeNetDevice->GetMac(),
This class can contain 16 bit addresses.
Smart pointer class similar to boost::intrusive_ptr.
static void Destroy()
Execute the events scheduled with ScheduleDestroy().
static void ScheduleWithContext(uint32_t context, const Time &delay, FUNC f, Ts &&... args)
Schedule an event with the given context.
static Time Now()
Return the current simulation virtual time.
static void Run()
Run the simulation.
static void Stop()
Tell the Simulator the calling event should be the last one executed.
TimeWithUnit As(const Unit unit=Time::AUTO) const
Attach a unit to a Time, to facilitate output in a specific unit.
void MlmeStartRequest(MlmeStartRequestParams params) override
IEEE 802.15.4-2006, section 7.1.14.1 MLME-START.request Request to allow a PAN coordinator to initiat...
void MlmeScanRequest(MlmeScanRequestParams params) override
IEEE 802.15.4-2011, section 6.2.10.1 MLME-SCAN.request Request primitive used to initiate a channel s...
auto MakeBoundCallback(R(*fnPtr)(Args...), BArgs &&... bargs)
Make Callbacks with varying number of bound arguments.
Ptr< T > CreateObject(Args &&... args)
Create an object by type, with varying number of constructor parameters.
Time Seconds(double value)
Construct a Time in the indicated unit.
static void ScanConfirm(Ptr< LrWpanNetDevice > device, MlmeScanConfirmParams params)
Every class exported by the ns3 library is enclosed in the ns3 namespace.
LogLevel
Logging severity classes and levels.
@ LOG_PREFIX_FUNC
Prefix all trace prints with function.
@ LOG_PREFIX_TIME
Prefix all trace prints with simulation time.
void LogComponentEnableAll(LogLevel level)
Enable the logging output for all registered log components.
params
Fit Fluctuating Two Ray model to the 3GPP TR 38.901 using the Anderson-Darling goodness-of-fit ##.
MLME-SCAN.confirm params.
MLME-SCAN.request params.
MlmeScanType m_scanType
Indicates the type of scan performed as described in IEEE 802.15.4-2011 (5.1.2.1).
uint32_t m_scanChannels
The channel numbers to be scanned.
uint8_t m_scanDuration
The factor (0-14) used to calculate the length of time to spend scanning.
uint32_t m_chPage
The channel page on which to perform scan.
MLME-START.request params.
uint8_t m_logCh
Logical channel on which to start using the new superframe configuration.
uint8_t m_bcnOrd
Beacon Order, Used to calculate the beacon interval, a value of 15 indicates no periodic beacons will...
bool m_panCoor
On true this device will become coordinator.
uint8_t m_sfrmOrd
Superframe Order, indicates the length of the CAP in time slots.
uint16_t m_PanId
Pan Identifier used by the device.