0

In Veins-4.x, setting the receiver sensitivity is done through this line

*.**.nic.phy80211p.sensitivity = -89dBm

However, this parameter disappeared in Veins-5.x. Is there a replacement in the current version of Veins?

Fady Samann
  • 115
  • 7

1 Answers1

1

The minPowerLevel gives the minimum receive power that is needed to even attempt decoding a frame.

Here is an example:

*.**.nic.phy80211p.minPowerLevel = -110dBm
thardes2
  • 1,162
  • 12
  • 28
  • Thanks very much for the answer. Where can I find a log for these changes? Moreover, what is the different between .minPowerLevel and .ccaThreshold? – Fady Samann Mar 28 '22 at 20:23
  • `minPowerLevel` specifies the value above which at least frames are tried to be decoded. `ccaThreshold` specifies the powerlevel at which the channel is considered busy. – thardes2 Mar 29 '22 at 06:15
  • What is the relation between these values? which one should be bigger than the other? – Fady Samann Mar 29 '22 at 06:31