I know How to send a message for car a to car b or rsu. but I need to send beacons. what is different between sending a message and sending beacons. I cant see any sendBeacon(). How should I send one?
相关问题
- 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
- Omnet++ : Ad Hoc Network
- 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
- Transmission of vehicular status in Veins
- Calculating distance between cars nodes VEINS
- How to change configuration of network during simu
Fundamentally, a beacon is simply a repeated broadcast message that carries some information of general interest in the vicinity of the sender. You can achieve this in Veins by having your application call its
sendDown
method every once in a while.You can find some example code that does this in https://github.com/sommer/veins/blob/veins-4.5/src/veins/modules/application/ieee80211p/BaseWaveApplLayer.cc#L242