您现在的位置是:首页 >学无止境 >wifi c++源代码解析之一:速率调整minstrel HT之一网站首页学无止境

wifi c++源代码解析之一:速率调整minstrel HT之一

relis 2024-10-04 12:01:05
简介wifi c++源代码解析之一:速率调整minstrel HT之一

选自ns3源码。

#include <iomanip>
#include "ns3/packet.h"
#include "ns3/simulator.h"
#include "ns3/log.h"
#include "ns3/random-variable-stream.h"
#include "minstrel-ht-wifi-manager.h"
#include "wifi-mac.h"
#include "wifi-phy.h"

#define Min(a,b) ((a < b) ? a : b)
#define Max(a,b) ((a > b) ? a : b)

NS_LOG_COMPONENT_DEFINE ("MinstrelHtWifiManager");

头定义,将引用的文件包含,除了packet和simulator两个最基本,剩下的就只有wifi-mac和wifi-phy了。解读:这个速率manager是以类似wifi management的形式存在的。

namespace ns3 {

///MinstrelHtWifiRemoteStation structure
struct MinstrelHtWifiRemoteStation : MinstrelWifiRemoteStation
{
  uint8_t m_sampleGroup;     //!< The group that the sample rate belongs to.

  uint32_t m_sampleWait;      //!< How many transmission attempts to wait until a new

风语者!平时喜欢研究各种技术,目前在从事后端开发工作,热爱生活、热爱工作。