Changing WSM(WAVE Short Message) packet size in Veins

做~自己de王妃 提交于 2019-11-28 12:43:26

You can implement a packet for your application in a .msg file as follows:

cplusplus {{
#include "veins/modules/messages/WaveShortMessage_m.h"
}}

class WaveShortMessage;

message MyAppsPacket extends WaveShortMessage {
    string sourceAddress;           
    string destinationAddress;      
    simtime_t sendingTime;
}

Then in your code you can use the built-in setByteLength(). Use cPacket subclass for your messages because:

(cPacket is) A subclass of cMessage that can be used to represent packets (frames, * datagrams, application messages, etc). cPacket adds length (measured in * bits or bytes), bit error flag, and encapsulation capability to cMessage. * Length and bit error flag are significant when the packet travels through * a cDatarateChannel or another channel that supports data rate and/or * error modelling. *

Related Q&A which shows the casting from cMessage to cPacket.

I know it is decades later, but maybe it can help some new vanets lovers like me.

In omnet++5.4.1 and Veins 4.7.1, in the function

populateWSM()

defined in BaseWaveApplLayer.cc (veins/modules/application/ieee80211p), you can set the bit length with the

wsm->setBitLength()

method and it changes the size of the wsm packet. By default, it has the length of the header

wsm->setBitLength(headerLength)

I have played with this and could obtain different packet sizes.

Hope this is useful.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!