DSSS (HR/DSSS) PPDU (11b) More...
#include "dsss-ppdu.h"
Inheritance diagram for ns3::DsssPpdu:
Collaboration diagram for ns3::DsssPpdu:Classes | |
| class | DsssSigHeader |
| DSSS SIG PHY header. More... | |
Public Member Functions | |
| DsssPpdu (Ptr< const WifiPsdu > psdu, const WifiTxVector &txVector, uint16_t txCenterFreq, Time ppduDuration, uint64_t uid) | |
| Create a DSSS (HR/DSSS) PPDU. More... | |
| Ptr< WifiPpdu > | Copy () const override |
| Copy this instance. More... | |
| Time | GetTxDuration () const override |
| Get the total transmission duration of the PPDU. More... | |
Public Member Functions inherited from ns3::WifiPpdu | |
| WifiPpdu (const WifiConstPsduMap &psdus, const WifiTxVector &txVector, uint16_t txCenterFreq, uint64_t uid) | |
| Create a PPDU storing a map of PSDUs. More... | |
| WifiPpdu (Ptr< const WifiPsdu > psdu, const WifiTxVector &txVector, uint16_t txCenterFreq, uint64_t uid=UINT64_MAX) | |
| Create a PPDU storing a PSDU. More... | |
| virtual | ~WifiPpdu () |
| Destructor for WifiPpdu. More... | |
| virtual Ptr< WifiPpdu > | Copy () const |
| Copy this instance. More... | |
| bool | DoesOverlapChannel (uint16_t minFreq, uint16_t maxFreq) const |
| Check whether the given PPDU overlaps a given channel. More... | |
| WifiModulationClass | GetModulation () const |
| Get the modulation used for the PPDU. More... | |
| WifiPreamble | GetPreamble () const |
| Get the preamble of the PPDU. More... | |
| Ptr< const WifiPsdu > | GetPsdu () const |
| Get the payload of the PPDU. More... | |
| virtual uint16_t | GetStaId () const |
| Get the ID of the STA that transmitted the PPDU for UL MU, SU_STA_ID otherwise. More... | |
| virtual uint16_t | GetTransmissionChannelWidth () const |
| Get the channel width over which the PPDU will effectively be transmitted. More... | |
| uint16_t | GetTxCenterFreq () const |
| virtual Time | GetTxDuration () const |
| Get the total transmission duration of the PPDU. More... | |
| const WifiTxVector & | GetTxVector () const |
| Get the TXVECTOR used to send the PPDU. More... | |
| virtual WifiPpduType | GetType () const |
| Return the PPDU type (. More... | |
| uint64_t | GetUid () const |
| Get the UID of the PPDU. More... | |
| bool | IsTruncatedTx () const |
| void | Print (std::ostream &os) const |
| Print the PPDU contents. More... | |
| void | ResetTxVector () const |
| Reset the TXVECTOR. More... | |
| void | SetTruncatedTx () |
| Indicate that the PPDU's transmission was aborted due to transmitter switch off. More... | |
| void | UpdateTxVector (const WifiTxVector &updatedTxVector) const |
| Update the TXVECTOR based on some information known at the receiver. More... | |
Public Member Functions inherited from ns3::SimpleRefCount< WifiPpdu > | |
| SimpleRefCount () | |
| Default constructor. More... | |
| SimpleRefCount (const SimpleRefCount &o) | |
| Copy constructor. More... | |
| uint32_t | GetReferenceCount () const |
| Get the reference count of the object. More... | |
| SimpleRefCount & | operator= (const SimpleRefCount &o) |
| Assignment operator. More... | |
| void | Ref () const |
| Increment the reference count. More... | |
| void | Unref () const |
| Decrement the reference count. More... | |
Private Member Functions | |
| WifiTxVector | DoGetTxVector () const override |
| Get the TXVECTOR used to send the PPDU. More... | |
| void | SetDsssHeader (DsssSigHeader &dsssSig, const WifiTxVector &txVector, Time ppduDuration) const |
| Fill in the DSSS header. More... | |
| void | SetPhyHeaders (const WifiTxVector &txVector, Time ppduDuration) |
| Fill in the PHY headers. More... | |
| virtual void | SetTxVectorFromDsssHeader (WifiTxVector &txVector, const DsssSigHeader &dsssSig) const |
| Fill in the TXVECTOR from DSSS header. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from ns3::WifiPpdu | |
| virtual std::string | PrintPayload () const |
| Print the payload of the PPDU. More... | |
Protected Attributes inherited from ns3::WifiPpdu | |
| WifiModulationClass | m_modulation |
| the modulation used for the transmission of this PPDU More... | |
| Ptr< Packet > | m_phyHeaders |
| the PHY headers contained in this PPDU More... | |
| WifiPreamble | m_preamble |
| the PHY preamble More... | |
| WifiConstPsduMap | m_psdus |
| the PSDUs contained in this PPDU More... | |
| uint16_t | m_txCenterFreq |
| the center frequency (MHz) used for the transmission of this PPDU More... | |
| std::optional< WifiTxVector > | m_txVector |
| the TXVECTOR at TX PHY or the reconstructed TXVECTOR at RX PHY (or std::nullopt if TXVECTOR has not been reconstructed yet) More... | |
| uint64_t | m_uid |
| the unique ID of this PPDU More... | |
DSSS (HR/DSSS) PPDU (11b)
DsssPpdu stores a preamble, PHY headers and a PSDU of a PPDU with DSSS modulation.
Definition at line 45 of file dsss-ppdu.h.
| ns3::DsssPpdu::DsssPpdu | ( | Ptr< const WifiPsdu > | psdu, |
| const WifiTxVector & | txVector, | ||
| uint16_t | txCenterFreq, | ||
| Time | ppduDuration, | ||
| uint64_t | uid | ||
| ) |
Create a DSSS (HR/DSSS) PPDU.
| psdu | the PHY payload (PSDU) |
| txVector | the TXVECTOR that was used for this PPDU |
| txCenterFreq | the center frequency (MHz) that was used for this PPDU |
| ppduDuration | the transmission duration of this PPDU |
| uid | the unique ID of this PPDU |
Definition at line 35 of file dsss-ppdu.cc.
References NS_LOG_FUNCTION, and SetPhyHeaders().
Referenced by Copy().
Here is the call graph for this function:
Here is the caller graph for this function:Copy this instance.
Reimplemented from ns3::WifiPpdu.
Definition at line 116 of file dsss-ppdu.cc.
References DsssPpdu().
Here is the call graph for this function:
|
overrideprivatevirtual |
Get the TXVECTOR used to send the PPDU.
Reimplemented from ns3::WifiPpdu.
Definition at line 71 of file dsss-ppdu.cc.
References ns3::WifiPpdu::m_phyHeaders, ns3::WifiPpdu::m_preamble, NS_FATAL_ERROR, ns3::Packet::PeekHeader(), ns3::WifiTxVector::SetChannelWidth(), ns3::WifiTxVector::SetPreambleType(), and SetTxVectorFromDsssHeader().
Here is the call graph for this function:
|
overridevirtual |
Get the total transmission duration of the PPDU.
Reimplemented from ns3::WifiPpdu.
Definition at line 99 of file dsss-ppdu.cc.
References ns3::WifiPhy::CalculatePhyPreambleAndHeaderDuration(), ns3::DsssPpdu::DsssSigHeader::GetLength(), ns3::WifiPpdu::GetTxVector(), ns3::WifiPpdu::m_phyHeaders, ns3::MicroSeconds(), ns3::Packet::PeekHeader(), and ns3::Seconds().
Here is the call graph for this function:
|
private |
Fill in the DSSS header.
| dsssSig | the DSSS header to fill in |
| txVector | the TXVECTOR that was used for this PPDU |
| ppduDuration | the transmission duration of this PPDU |
Definition at line 61 of file dsss-ppdu.cc.
References ns3::WifiPhy::CalculatePhyPreambleAndHeaderDuration(), ns3::WifiMode::GetDataRate(), ns3::Time::GetMicroSeconds(), ns3::WifiTxVector::GetMode(), ns3::DsssPpdu::DsssSigHeader::SetLength(), and ns3::DsssPpdu::DsssSigHeader::SetRate().
Referenced by SetPhyHeaders().
Here is the call graph for this function:
Here is the caller graph for this function:
|
private |
Fill in the PHY headers.
| txVector | the TXVECTOR that was used for this PPDU |
| ppduDuration | the transmission duration of this PPDU |
Definition at line 47 of file dsss-ppdu.cc.
References ns3::Packet::AddHeader(), ns3::WifiPpdu::m_phyHeaders, NS_LOG_FUNCTION, and SetDsssHeader().
Referenced by DsssPpdu().
Here is the call graph for this function:
Here is the caller graph for this function:
|
privatevirtual |
Fill in the TXVECTOR from DSSS header.
| txVector | the TXVECTOR to fill in |
| dsssSig | the DSSS header |
Definition at line 93 of file dsss-ppdu.cc.
References ns3::DsssPhy::GetDsssRate(), ns3::DsssPpdu::DsssSigHeader::GetRate(), and ns3::WifiTxVector::SetMode().
Referenced by DoGetTxVector().
Here is the call graph for this function:
Here is the caller graph for this function: