wifi: fix doxygen warnings in src/wifi/examples

This commit is contained in:
Rediet
2021-05-19 10:28:27 +02:00
parent 2cd288b24d
commit ce57ee91a3
2 changed files with 17 additions and 2 deletions

View File

@@ -691,6 +691,21 @@ class Experiment
{
public:
Experiment ();
/**
* Configure and run the experiment.
*
* \param wifi the pre-configured WifiHelper
* \param wifiPhy the pre-configured YansWifiPhyHelper
* \param wifiMac the pre-configured WifiMacHelper
* \param wifiChannel the pre-configured YansWifiChannelHelper
* \param trialNumber the trial index
* \param networkSize the number of stations
* \param duration the duration (in seconds) of each simulation run
* \param pcap flag to enable/disable PCAP files generation
* \param infra flag to enable infrastructure model, ring adhoc network if not set
* \return 0 if all went well
*/
int Run (const WifiHelper &wifi, const YansWifiPhyHelper &wifiPhy, const WifiMacHelper &wifiMac, const YansWifiChannelHelper &wifiChannel,
uint32_t trialNumber, uint32_t networkSize, double duration, bool pcap, bool infra);
};

View File

@@ -126,8 +126,8 @@ private:
struct Input m_input; ///< input
bool m_droppedA; ///< flag to indicate whether packet A has been dropped
bool m_droppedB; ///< flag to indicate whether packet B has been dropped
mutable uint64_t m_uidA;
mutable uint64_t m_uidB;
mutable uint64_t m_uidA; ///< UID to use for packet A
mutable uint64_t m_uidB; ///< UID to use for packet B
};
void