A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
lr-wpan-lqi-tag.cc
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2013 Fraunhofer FKIE
3
*
4
* This program is free software; you can redistribute it and/or modify
5
* it under the terms of the GNU General Public License version 2 as
6
* published by the Free Software Foundation;
7
*
8
* This program is distributed in the hope that it will be useful,
9
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
* GNU General Public License for more details.
12
*
13
* You should have received a copy of the GNU General Public License
14
* along with this program; if not, write to the Free Software
15
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16
*
17
* Author:
18
* Sascha Alexander Jopen <jopen@cs.uni-bonn.de>
19
*/
20
#include "
lr-wpan-lqi-tag.h
"
21
22
#include <ns3/integer.h>
23
24
namespace
ns3
25
{
26
27
NS_OBJECT_ENSURE_REGISTERED
(LrWpanLqiTag);
28
29
TypeId
30
LrWpanLqiTag::GetTypeId
()
31
{
32
static
TypeId
tid =
TypeId
(
"ns3::LrWpanLqiTag"
)
33
.
SetParent
<
Tag
>()
34
.SetGroupName(
"LrWpan"
)
35
.AddConstructor<
LrWpanLqiTag
>()
36
.AddAttribute(
"Lqi"
,
37
"The lqi of the last packet received"
,
38
IntegerValue
(0),
39
MakeIntegerAccessor
(&
LrWpanLqiTag::Get
),
40
MakeIntegerChecker<uint8_t>());
41
return
tid;
42
}
43
44
TypeId
45
LrWpanLqiTag::GetInstanceTypeId
()
const
46
{
47
return
GetTypeId
();
48
}
49
50
LrWpanLqiTag::LrWpanLqiTag
()
51
: m_lqi(0)
52
{
53
}
54
55
LrWpanLqiTag::LrWpanLqiTag
(uint8_t lqi)
56
: m_lqi(lqi)
57
{
58
}
59
60
uint32_t
61
LrWpanLqiTag::GetSerializedSize
()
const
62
{
63
return
sizeof
(uint8_t);
64
}
65
66
void
67
LrWpanLqiTag::Serialize
(
TagBuffer
i)
const
68
{
69
i.
WriteU8
(
m_lqi
);
70
}
71
72
void
73
LrWpanLqiTag::Deserialize
(
TagBuffer
i)
74
{
75
m_lqi
= i.
ReadU8
();
76
}
77
78
void
79
LrWpanLqiTag::Print
(std::ostream& os)
const
80
{
81
os <<
"Lqi = "
<<
m_lqi
;
82
}
83
84
void
85
LrWpanLqiTag::Set
(uint8_t lqi)
86
{
87
m_lqi
= lqi;
88
}
89
90
uint8_t
91
LrWpanLqiTag::Get
()
const
92
{
93
return
m_lqi
;
94
}
95
96
}
// namespace ns3
ns3::IntegerValue
Hold a signed integer type.
Definition:
integer.h:45
ns3::LrWpanLqiTag
Represent the LQI (Link Quality Estination).
Definition:
lr-wpan-lqi-tag.h:38
ns3::LrWpanLqiTag::Deserialize
void Deserialize(TagBuffer i) override
Definition:
lr-wpan-lqi-tag.cc:73
ns3::LrWpanLqiTag::Get
uint8_t Get() const
Get the LQI value.
Definition:
lr-wpan-lqi-tag.cc:91
ns3::LrWpanLqiTag::Set
void Set(uint8_t lqi)
Set the LQI to the given value.
Definition:
lr-wpan-lqi-tag.cc:85
ns3::LrWpanLqiTag::GetSerializedSize
uint32_t GetSerializedSize() const override
Definition:
lr-wpan-lqi-tag.cc:61
ns3::LrWpanLqiTag::m_lqi
uint8_t m_lqi
The current LQI value of the tag.
Definition:
lr-wpan-lqi-tag.h:83
ns3::LrWpanLqiTag::GetInstanceTypeId
TypeId GetInstanceTypeId() const override
Get the most derived TypeId for this Object.
Definition:
lr-wpan-lqi-tag.cc:45
ns3::LrWpanLqiTag::GetTypeId
static TypeId GetTypeId()
Get the type ID.
Definition:
lr-wpan-lqi-tag.cc:30
ns3::LrWpanLqiTag::Print
void Print(std::ostream &os) const override
Definition:
lr-wpan-lqi-tag.cc:79
ns3::LrWpanLqiTag::LrWpanLqiTag
LrWpanLqiTag()
Create a LrWpanLqiTag with the default LQI 0.
Definition:
lr-wpan-lqi-tag.cc:50
ns3::LrWpanLqiTag::Serialize
void Serialize(TagBuffer i) const override
Definition:
lr-wpan-lqi-tag.cc:67
ns3::TagBuffer
read and write tag data
Definition:
tag-buffer.h:52
ns3::TagBuffer::WriteU8
TAG_BUFFER_INLINE void WriteU8(uint8_t v)
Definition:
tag-buffer.h:172
ns3::TagBuffer::ReadU8
TAG_BUFFER_INLINE uint8_t ReadU8()
Definition:
tag-buffer.h:196
ns3::Tag
tag a set of bytes in a packet
Definition:
tag.h:39
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:59
ns3::TypeId::SetParent
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition:
type-id.cc:931
NS_OBJECT_ENSURE_REGISTERED
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition:
object-base.h:46
lr-wpan-lqi-tag.h
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::MakeIntegerAccessor
Ptr< const AttributeAccessor > MakeIntegerAccessor(T1 a1)
Definition:
integer.h:46
src
lr-wpan
model
lr-wpan-lqi-tag.cc
Generated on Sun Mar 3 2024 17:11:00 for ns-3 by
1.9.1