Implementation of the LinkAdrAns LoRaWAN MAC command. More...
#include "lorawan-mac-command.h"
Public Member Functions | |
LinkAdrAns () | |
LinkAdrAns (bool powerAck, bool dataRateAck, bool channelMaskAck) | |
virtual uint8_t | Deserialize (Buffer::Iterator &start) |
Deserialize the buffer into a MAC command. More... | |
virtual void | Print (std::ostream &os) const |
Print the contents of this MAC command in human-readable format. More... | |
virtual void | Serialize (Buffer::Iterator &start) const |
Serialize the contents of this MAC command into a buffer, according to the LoRaWAN standard. More... | |
Public Member Functions inherited from ns3::LorawanMacCommand | |
LorawanMacCommand () | |
virtual | ~LorawanMacCommand () |
virtual enum MacCommandType | GetCommandType (void) const |
Get the commandType of this MAC command. More... | |
virtual uint8_t | GetSerializedSize (void) const |
Get serialized length of this MAC command. More... | |
Private Attributes | |
bool | m_channelMaskAck |
bool | m_dataRateAck |
bool | m_powerAck |
Additional Inherited Members | |
Static Public Member Functions inherited from ns3::LorawanMacCommand | |
static uint8_t | GetCIDFromLorawanMacCommand (enum MacCommandType commandType) |
Get the CID that corresponds to this MAC command. More... | |
static TypeId | GetTypeId (void) |
Protected Attributes inherited from ns3::LorawanMacCommand | |
enum MacCommandType | m_commandType |
The type of this command. More... | |
uint8_t | m_serializedSize |
This MAC command's serialized size. More... | |
Implementation of the LinkAdrAns LoRaWAN MAC command.
With this command, the end device acknowledges a LinkAdrReq.
Definition at line 278 of file lorawan-mac-command.h.
ns3::LinkAdrAns::LinkAdrAns | ( | ) |
Definition at line 386 of file lorawan-mac-command.cc.
References ns3::LINK_ADR_ANS, ns3::LorawanMacCommand::m_commandType, and ns3::LorawanMacCommand::m_serializedSize.
ns3::LinkAdrAns::LinkAdrAns | ( | bool | powerAck, |
bool | dataRateAck, | ||
bool | channelMaskAck | ||
) |
Definition at line 394 of file lorawan-mac-command.cc.
References ns3::LINK_ADR_ANS, ns3::LorawanMacCommand::m_commandType, and ns3::LorawanMacCommand::m_serializedSize.
|
virtual |
Deserialize the buffer into a MAC command.
start | A pointer to the buffer that contains the serialized command. |
Implements ns3::LorawanMacCommand.
Definition at line 419 of file lorawan-mac-command.cc.
References m_channelMaskAck, m_dataRateAck, m_powerAck, and ns3::LorawanMacCommand::m_serializedSize.
|
virtual |
Print the contents of this MAC command in human-readable format.
os | The std::ostream instance on which to print the MAC command. |
Implements ns3::LorawanMacCommand.
Definition at line 436 of file lorawan-mac-command.cc.
|
virtual |
Serialize the contents of this MAC command into a buffer, according to the LoRaWAN standard.
start | A pointer to the buffer into which to serialize the command. |
Implements ns3::LorawanMacCommand.
Definition at line 406 of file lorawan-mac-command.cc.
References ns3::LorawanMacCommand::GetCIDFromLorawanMacCommand(), m_channelMaskAck, ns3::LorawanMacCommand::m_commandType, m_dataRateAck, and m_powerAck.
|
private |
Definition at line 292 of file lorawan-mac-command.h.
Referenced by Deserialize(), and Serialize().
|
private |
Definition at line 291 of file lorawan-mac-command.h.
Referenced by Deserialize(), and Serialize().
|
private |
Definition at line 290 of file lorawan-mac-command.h.
Referenced by Deserialize(), and Serialize().