Represent the GTS information fields. More...
#include "lr-wpan-fields.h"
Classes | |
struct | gtsDescriptor |
GTS Descriptor. More... | |
Public Member Functions | |
GtsFields () | |
Buffer::Iterator | Deserialize (Buffer::Iterator i) |
Deserialize the entire GTS fields. More... | |
uint8_t | GetGtsDirectionField (void) const |
Get the GTS Direction Field from the GTS Fields. More... | |
uint8_t | GetGtsSpecField (void) const |
Get the GTS Specification Field from the GTS Fields. More... | |
uint32_t | GetSerializedSize (void) const |
Get the size of the serialized GTS fields. More... | |
Buffer::Iterator | Serialize (Buffer::Iterator i) const |
Serialize the entire GTS fields. More... | |
void | SetGtsDirectionField (uint8_t gtsDir) |
Set the GTS direction field to the GTS Fields. More... | |
void | SetGtsSpecField (uint8_t gtsSpec) |
Set the GTS Specification Field to the GTS Fields. More... | |
Private Attributes | |
uint8_t | m_gtsDirMask |
GTS Direction field Directions Mask (Bit 0-6) More... | |
gtsDescriptor | m_gtsList [7] |
GTS List field (maximum descriptors stored == 7) More... | |
uint8_t | m_gtsSpecDescCount |
GTS specification field Descriptor Count (Bit 0-2) More... | |
uint8_t | m_gtsSpecPermit |
GTS specification field GTS Permit (Bit 7) More... | |
Represent the GTS information fields.
See IEEE 802.15.4-2011 Section 5.2.2 Figure 39
Definition at line 175 of file lr-wpan-fields.h.
ns3::GtsFields::GtsFields | ( | ) |
Definition at line 198 of file lr-wpan-fields.cc.
References m_gtsDirMask, m_gtsSpecDescCount, and m_gtsSpecPermit.
Buffer::Iterator ns3::GtsFields::Deserialize | ( | Buffer::Iterator | i | ) |
Deserialize the entire GTS fields.
i | an iterator which points to where the superframe specification field should be read. |
Definition at line 283 of file lr-wpan-fields.cc.
References ns3::GtsFields::gtsDescriptor::m_gtsDescLength, ns3::GtsFields::gtsDescriptor::m_gtsDescStartSlot, m_gtsList, m_gtsSpecDescCount, ns3::ReadFrom(), ns3::Buffer::Iterator::ReadU8(), SetGtsDirectionField(), and SetGtsSpecField().
Referenced by ns3::BeaconPayloadHeader::Deserialize().
uint8_t ns3::GtsFields::GetGtsDirectionField | ( | void | ) | const |
Get the GTS Direction Field from the GTS Fields.
Definition at line 220 of file lr-wpan-fields.cc.
References m_gtsDirMask.
Referenced by ns3::operator<<(), and Serialize().
uint8_t ns3::GtsFields::GetGtsSpecField | ( | void | ) | const |
Get the GTS Specification Field from the GTS Fields.
Definition at line 208 of file lr-wpan-fields.cc.
References m_gtsSpecDescCount, and m_gtsSpecPermit.
Referenced by ns3::operator<<(), ns3::BeaconPayloadHeader::Print(), and Serialize().
uint32_t ns3::GtsFields::GetSerializedSize | ( | void | ) | const |
Get the size of the serialized GTS fields.
Definition at line 245 of file lr-wpan-fields.cc.
References m_gtsSpecDescCount.
Referenced by ns3::BeaconPayloadHeader::GetSerializedSize().
Buffer::Iterator ns3::GtsFields::Serialize | ( | Buffer::Iterator | i | ) | const |
Serialize the entire GTS fields.
i | an iterator which points to where the superframe specification field should be written. |
Definition at line 260 of file lr-wpan-fields.cc.
References GetGtsDirectionField(), GetGtsSpecField(), ns3::GtsFields::gtsDescriptor::m_gtsDescLength, ns3::GtsFields::gtsDescriptor::m_gtsDescStartSlot, m_gtsList, m_gtsSpecDescCount, ns3::WriteTo(), and ns3::Buffer::Iterator::WriteU8().
Referenced by ns3::BeaconPayloadHeader::Serialize().
void ns3::GtsFields::SetGtsDirectionField | ( | uint8_t | gtsDir | ) |
Set the GTS direction field to the GTS Fields.
gtsDir | The GTS Direction Field to set |
Definition at line 238 of file lr-wpan-fields.cc.
References m_gtsDirMask.
Referenced by Deserialize().
void ns3::GtsFields::SetGtsSpecField | ( | uint8_t | gtsSpec | ) |
Set the GTS Specification Field to the GTS Fields.
gtsSpec | The GTS Specification Field to set. |
Definition at line 230 of file lr-wpan-fields.cc.
References m_gtsSpecDescCount, and m_gtsSpecPermit.
Referenced by Deserialize().
|
private |
GTS Direction field Directions Mask (Bit 0-6)
Definition at line 234 of file lr-wpan-fields.h.
Referenced by GtsFields(), GetGtsDirectionField(), and SetGtsDirectionField().
|
private |
GTS List field (maximum descriptors stored == 7)
Definition at line 237 of file lr-wpan-fields.h.
Referenced by Deserialize(), and Serialize().
|
private |
GTS specification field Descriptor Count (Bit 0-2)
Definition at line 230 of file lr-wpan-fields.h.
Referenced by GtsFields(), Deserialize(), GetGtsSpecField(), GetSerializedSize(), Serialize(), and SetGtsSpecField().
|
private |
GTS specification field GTS Permit (Bit 7)
Definition at line 232 of file lr-wpan-fields.h.
Referenced by GtsFields(), GetGtsSpecField(), and SetGtsSpecField().