21#include "ns3/rng-seed-manager.h"
22#include <ns3/constant-position-mobility-model.h>
23#include <ns3/core-module.h>
25#include <ns3/lr-wpan-module.h>
26#include <ns3/packet.h>
27#include <ns3/propagation-delay-model.h>
28#include <ns3/propagation-loss-model.h>
29#include <ns3/simulator.h>
30#include <ns3/single-model-spectrum-channel.h>
100 void DoRun()
override;
133 RxPacket->RemoveHeader(receivedMacHdr);
163 RxPacket->RemoveHeader(receivedMacHdr);
222 CreateObject<LogDistancePropagationLossModel>();
224 CreateObject<ConstantSpeedPropagationDelayModel>();
225 channel->AddPropagationLossModel(propModel);
226 channel->SetPropagationDelayModel(delayModel);
228 dev0->SetChannel(channel);
229 dev1->SetChannel(channel);
236 dev0->GetMac()->TraceConnectWithoutContext(
239 dev0->GetMac()->TraceConnectWithoutContext(
242 dev0->GetPhy()->TraceConnectWithoutContext(
245 dev1->GetMac()->TraceConnectWithoutContext(
250 CreateObject<ConstantPositionMobilityModel>();
251 sender0Mobility->SetPosition(Vector(0, 0, 0));
252 dev0->GetPhy()->SetMobility(sender0Mobility);
254 CreateObject<ConstantPositionMobilityModel>();
256 sender1Mobility->SetPosition(Vector(0, 10, 0));
257 dev1->GetPhy()->SetMobility(sender1Mobility);
261 dev0->GetMac()->SetMcpsDataConfirmCallback(cb0);
265 dev1->GetMac()->SetMcpsDataConfirmCallback(cb1);
269 params.m_dstPanId = 0;
274 params.m_msduHandle = 0;
298 "Wrong Short InterFrame Space (SIFS) Size after dataframe Tx");
299 std::cout <<
"----------------------------------\n";
303 p0 = Create<Packet>(8);
320 "Wrong Long InterFrame Space (LIFS) Size after dataframe Tx");
321 std::cout <<
"----------------------------------\n";
326 p0 = Create<Packet>(2);
343 "Wrong Short InterFrame Space (SIFS) Size after ACK Rx");
344 std::cout <<
"----------------------------------\n";
349 p0 = Create<Packet>(8);
366 "Wrong Long InterFrame Space (LIFS) Size after ACK Rx");
367 std::cout <<
"----------------------------------\n";
379 dev0->GetCsmaCa()->SetMacMinBE(0);
380 dev1->GetCsmaCa()->SetMacMinBE(0);
382 p0 = Create<Packet>(50);
383 params.m_dstPanId = 0;
387 params.m_msduHandle = 0;
400 "Error, IFS end time should be greater than PHY start Rx time");
LrWpan Dataframe transmission with Interframe Space.
~LrWpanDataIfsTestCase() override
static void IfsEnd(LrWpanDataIfsTestCase *testcase, Ptr< LrWpanNetDevice > dev, Time IfsTime)
Function called when the IFS ends.
Time m_endIfs
The time where the Interframe Space ended.
static void DataReceivedDev1(LrWpanDataIfsTestCase *testcase, Ptr< LrWpanNetDevice > dev, Ptr< const Packet >)
Function called when DataConfirm is hit.
void DoRun() override
Implementation to actually run this TestCase.
Time m_phyStartRx
The time the phy start receiving a packet.
Time m_lastTxTime
The time of the last transmitted packet.
static void DataReceivedDev0(LrWpanDataIfsTestCase *testcase, Ptr< LrWpanNetDevice > dev, Ptr< const Packet > p)
Function called when DataReceived is hit.
Time m_ackRxTime
The time of the received acknowledgment.
static void PhyDataRxStart(LrWpanDataIfsTestCase *testcase, Ptr< LrWpanNetDevice > dev, Ptr< const Packet > p)
Function called when PhyDataRxStart is hit.
static void DataConfirm(LrWpanDataIfsTestCase *testcase, Ptr< LrWpanNetDevice > dev, McpsDataConfirmParams params)
Function called when DataConfirm is hit.
void McpsDataRequest(McpsDataRequestParams params, Ptr< Packet > p)
IEEE 802.15.4-2006, section 7.1.1.1 MCPS-DATA.request Request to transfer a MSDU.
This class can contain 16 bit addresses.
bool IsBroadcast() const
Checks if the address is a broadcast address according to 802.15.4 scheme (i.e., 0xFFFF).
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 EventId ScheduleNow(FUNC f, Ts &&... args)
Schedule an event to expire Now.
void AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite.
Simulation virtual time values and global simulation resolution.
double GetSeconds() const
Get an approximation of the time stored in this instance in the indicated unit.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
@ TX_OPTION_ACK
TX_OPTION_ACK.
auto MakeBoundCallback(R(*fnPtr)(Args...), BArgs &&... bargs)
Make Callbacks with varying number of bound arguments.
#define NS_TEST_EXPECT_MSG_EQ(actual, limit, msg)
Test that an actual and expected (limit) value are equal and report if not.
#define NS_TEST_ASSERT_MSG_GT(actual, limit, msg)
Test that an actual value is greater than a limit and report and abort if not.
Time MicroSeconds(uint64_t value)
Construct a Time in the indicated unit.
Time Seconds(double value)
Construct a Time in the indicated unit.
static LrWpanIfsTestSuite lrWpanIfsTestSuite
Static variable for test initialization.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void LogComponentEnable(const std::string &name, LogLevel level)
Enable the logging output associated with that log component.
@ LOG_PREFIX_FUNC
Prefix all trace prints with function.
@ LOG_PREFIX_TIME
Prefix all trace prints with simulation time.
@ LOG_LEVEL_DEBUG
LOG_DEBUG and above.
void LogComponentEnableAll(LogLevel level)
Enable the logging output for all registered log components.
MCPS-DATA.confirm params.
MCPS-DATA.request params.
LrWpanAddressMode m_srcAddrMode
Source address mode.
LrWpanAddressMode m_dstAddrMode
Destination address mode.
uint16_t m_dstPanId
Destination PAN identifier.
Mac16Address m_dstAddr
Destination address.
uint8_t m_msduHandle
MSDU handle.