p802_15_4const.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:7k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /********************************************/
  2. /*     NS2 Simulator for IEEE 802.15.4      */
  3. /*           (per P802.15.4/D18)            */
  4. /*------------------------------------------*/
  5. /* by:        Jianliang Zheng               */
  6. /*        (zheng@ee.ccny.cuny.edu)          */
  7. /*              Myung J. Lee                */
  8. /*          (lee@ccny.cuny.edu)             */
  9. /*        ~~~~~~~~~~~~~~~~~~~~~~~~~         */
  10. /*           SAIT-CUNY Joint Lab            */
  11. /********************************************/
  12. // File:  p802_15_4const.h
  13. // Mode:  C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t
  14. // $Header: /cvsroot/nsnam/ns-2/wpan/p802_15_4const.h,v 1.2 2007/01/30 05:00:51 tom_henderson Exp $
  15. /*
  16.  * Copyright (c) 2003-2004 Samsung Advanced Institute of Technology and
  17.  * The City University of New York. All rights reserved.
  18.  *
  19.  * Redistribution and use in source and binary forms, with or without
  20.  * modification, are permitted provided that the following conditions
  21.  * are met:
  22.  * 1. Redistributions of source code must retain the above copyright
  23.  *    notice, this list of conditions and the following disclaimer.
  24.  * 2. Redistributions in binary form must reproduce the above copyright
  25.  *    notice, this list of conditions and the following disclaimer in the
  26.  *    documentation and/or other materials provided with the distribution.
  27.  * 3. All advertising materials mentioning features or use of this software
  28.  *    must display the following acknowledgement:
  29.  * This product includes software developed by the Joint Lab of Samsung 
  30.  *      Advanced Institute of Technology and The City University of New York.
  31.  * 4. Neither the name of Samsung Advanced Institute of Technology nor of 
  32.  *    The City University of New York may be used to endorse or promote 
  33.  *    products derived from this software without specific prior written 
  34.  *    permission.
  35.  *
  36.  * THIS SOFTWARE IS PROVIDED BY THE JOINT LAB OF SAMSUNG ADVANCED INSTITUTE
  37.  * OF TECHNOLOGY AND THE CITY UNIVERSITY OF NEW YORK ``AS IS'' AND ANY EXPRESS 
  38.  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 
  39.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 
  40.  * NO EVENT SHALL SAMSUNG ADVANCED INSTITUTE OR THE CITY UNIVERSITY OF NEW YORK 
  41.  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
  42.  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 
  43.  * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
  44.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
  45.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 
  46.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  47.  */
  48. #ifndef p802_15_4const_h
  49. #define p802_15_4const_h
  50. #include "p802_15_4def.h"
  51. //---PHY layer constants (Table 18)---
  52. const UINT_8 aMaxPHYPacketSize =  127; //max PSDU size (in bytes) the PHY shall be able to receive
  53. const UINT_8 aTurnaroundTime = 12; //Rx-to-Tx or Tx-to-Rx max turnaround time (in symbol period)
  54. const UINT_8 aCCATime = 8;  //2.31 change: CCA duration (in symbol period) 
  55. //---PHY_PIB default values---
  56. //All the default values are not given in the draft.
  57. //They are chosen for sake of a value
  58. #define def_phyCurrentChannel 11
  59. #define def_phyChannelsSupported 0x07ffffff
  60. #define def_phyTransmitPower 0
  61. #define def_phyCCAMode 1
  62. //---MAC sublayer constants (Table 70)---
  63. const UINT_8 aNumSuperframeSlots = 16; //# of slots contained in a superframe
  64. const UINT_8 aBaseSlotDuration = 60; //# of symbols comprising a superframe slot of order 0
  65. const UINT_16 aBaseSuperframeDuration
  66. = aBaseSlotDuration * aNumSuperframeSlots; //# of symbols comprising a superframe of order 0
  67. //aExtendedAddress = ; //64-bit (IEEE) address assigned to the device (device specific)
  68. const UINT_8 aMaxBE = 5; //max value of the backoff exponent in the CSMA-CA algorithm
  69. const UINT_8 aMaxBeaconOverhead = 75; //max # of octets added by the MAC sublayer to the payload of its beacon frame
  70. const UINT_8 aMaxBeaconPayloadLength
  71. = aMaxPHYPacketSize - aMaxBeaconOverhead; //max size, in octets, of a beacon payload
  72. const UINT_8 aGTSDescPersistenceTime = 4; //# of superframes that a GTS descriptor exists in the beacon frame of a PAN coordinator
  73. const UINT_8 aMaxFrameOverhead = 25; //max # of octets added by the MAC sublayer to its payload w/o security.
  74. const UINT_16 aMaxFrameResponseTime = 1220; //max # of symbols (or CAP symbols) to wait for a response frame
  75. const UINT_8 aMaxFrameRetries = 3; //max # of retries allowed after a transmission failures
  76. const UINT_8 aMaxLostBeacons = 4; //max # of consecutive beacons the MAC sublayer can miss w/o declaring a loss of synchronization
  77. const UINT_8 aMaxMACFrameSize
  78. = aMaxPHYPacketSize - aMaxFrameOverhead; //max # of octets that can be transmitted in the MAC frame payload field
  79. const UINT_8 aMaxSIFSFrameSize = 18; //max size of a frame, in octets, that can be followed by a SIFS period
  80. const UINT_16 aMinCAPLength = 440; //min # of symbols comprising the CAP
  81. const UINT_8 aMinLIFSPeriod = 40; //min # of symbols comprising a LIFS period
  82. const UINT_8 aMinSIFSPeriod = 12; //min # of symbols comprising a SIFS period
  83. const UINT_16 aResponseWaitTime
  84. = 32 * aBaseSuperframeDuration; //max # of symbols a device shall wait for a response command following a request command
  85. const UINT_8 aUnitBackoffPeriod = 20; //# of symbols comprising the basic time period used by the CSMA-CA algorithm
  86. //---MAC_PIB default values (Tables 71,72)---
  87. //attributes from Table 71
  88. #define def_macAckWaitDuration 54 //22(ack) + 20(backoff slot) + 12(turnaround); propagation delay ignored?
  89. #define def_macAssociationPermit false
  90. #define def_macAutoRequest true
  91. #define def_macBattLifeExt false
  92. #define def_macBattLifeExtPeriods 6
  93. #define def_macBeaconPayload ""
  94. #define def_macBeaconPayloadLength 0
  95. #define def_macBeaconOrder 15
  96. #define def_macBeaconTxTime 0x000000
  97. //#define def_macBSN Random::random() % 0x100
  98. //#define def_macCoordExtendedAddress 0xffffffffffffffffLL
  99. #define def_macCoordExtendedAddress 0xffff
  100. //not defined in draft
  101. #define def_macCoordShortAddress 0xffff
  102. //#define def_macDSN Random::random() % 0x100
  103. #define def_macGTSPermit true
  104. #define def_macMaxCSMABackoffs 4
  105. #define def_macMinBE 3
  106. #define def_macPANId 0xffff
  107. #define def_macPromiscuousMode false
  108. #define def_macRxOnWhenIdle false
  109. #define def_macShortAddress 0xffff
  110. #define def_macSuperframeOrder 15
  111. #define def_macTransactionPersistenceTime 0x01f4
  112. //attributes from Table 72 (security attributes)
  113. #define def_macACLEntryDescriptorSet NULL
  114. #define def_macACLEntryDescriptorSetSize 0x00
  115. #define def_macDefaultSecurity false
  116. #define def_macACLDefaultSecurityMaterialLength 0x15
  117. #define def_macDefaultSecurityMaterial NULL
  118. #define def_macDefaultSecuritySuite 0x00
  119. #define def_macSecurityMode 0x00
  120. #endif
  121. // End of file: p802_15_4const.h