I am using the newly released INET 4.0 framework for OMNET++ and I would like to obtain the received signal strength value in a wireless host (of type AdhocHost). How may I do that?
相关问题
- Is it possible to use RInside in omnet++/Veins pro
- How to create own header structure in OMNET++
- How to get Coordinates of each vehicle in VEINS?
- Omnet++ , veins , the number of neighbors nodes fo
- How to collect traffic data and macroscopic statis
相关文章
- Wave Service Advertisement (WSA) implementation
- Bluetooth scan C#
- Omnet++ : Ad Hoc Network
- Android Getting WiFi signal strength as it changes
- A Kalman Filter for RSSI Distance approximations
- How can I get a traffic light that exists in sumo
- How can I combine my customize module with Omnet++
- Using a subset of a SUMO scenario for OMNeT++ netw
In
INET
4.0.0 the packet received by a module contains several tags. Between others there isSignalPowerInd
tag. According to SignalTag.msg:This tag is present in packet processing by a wireless MAC layer, for example:
And packet received by application layer contains
SignalPowerInd
too:One can obtain the value of
SignalPowerInd
from received radio packet in any layer using standard API. For example, to obtain it inUdpBasicApp
one should add inUdpBasicApp.cc
: