ulburst.cc
上传用户:hzie11
上传日期:2013-10-07
资源大小:1487k
文件大小:2k
源码类别:

网络

开发平台:

C/C++

  1. /* This software was developed at the National Institute of Standards and
  2.  * Technology by employees of the Federal Government in the course of
  3.  * their official duties. Pursuant to title 17 Section 105 of the United
  4.  * States Code this software is not subject to copyright protection and
  5.  * is in the public domain.
  6.  * NIST assumes no responsibility whatsoever for its use by other parties,
  7.  * and makes no guarantees, expressed or implied, about its quality,
  8.  * reliability, or any other characteristic.
  9.  * <BR>
  10.  * We would appreciate acknowledgement if the software is used.
  11.  * <BR>
  12.  * NIST ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND
  13.  * DISCLAIM ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING
  14.  * FROM THE USE OF THIS SOFTWARE.
  15.  * </PRE></P>
  16.  * @author  rouil
  17.  */
  18. #include "ulburst.h"
  19. /**
  20.  * Creates a downlink burst
  21.  * @param phypdu The PhyPdu where it is located
  22.  */
  23. UlBurst::UlBurst (PhyPdu *phypdu) : Burst (phypdu)
  24. {
  25.   midamble_ = PREAMBLE_ONLY;
  26. }
  27. /**
  28.  * Set the burst to Fast Ranging
  29.  * @param macAddr address of MN
  30.  * @param uiuc Encoding to use
  31.  */
  32. void UlBurst::setFastRangingParam (int macAddr, int uiuc)
  33. {
  34.   assert (getIUC() == UIUC_EXT_UIUC);
  35.   extuiuc_ = UIUC_FAST_RANGING;
  36.   uiuc2_ = uiuc;
  37.   macAddr_ = macAddr;
  38. }
  39.   
  40. /**
  41.  * Return the mac address for fast ranging
  42.  * @return The mac address for fast ranging
  43.  */
  44. int UlBurst::getFastRangingMacAddr ()
  45. {
  46.   assert (extuiuc_ == UIUC_FAST_RANGING);
  47.   return macAddr_;
  48. }
  49. /**
  50.  * Return the UIUC encoding to use
  51.  * @return The UIUC encoding to use
  52.  */
  53. int UlBurst::getFastRangingUIUC (){
  54.   assert (extuiuc_ == UIUC_FAST_RANGING);
  55.   return uiuc2_;
  56. }