Raphael Riebl

Results 246 comments of Raphael Riebl

The GeoNetworking standard specifies so-called GeoUnicasts which would allow you to send a message to a particular station identified by its GeoNetworking address. This requires that you know the destination's...

Well, the readme of Artery-C says: > Our simulator relies on the simulation framework SimuLTE and substantially extends it by implementing a dedicated sidelink interface, sidelink resource allocation modes along...

Yes, Artery shall run with OMNeT++ 6.0 in the foreseeable future. For some changes, I have been waiting for the actual OMNeT++ release because I don't want to "support" pre-releases....

Thanks @wischhof for your hint/reminder! I will have a closer look at the forked repository as soon as I can spend some time for migration to OMNeT++ 6.0.

1) That's feasible if your V2X service does not use any Artery objects. However, our build system supports incremental builds, i.e. only files that have changed or when their dependencies...

Linking external libraries to Artery is not different to any other CMake project. Since your `TORCH_LIBRARIES` variable contains a list of libraries, you should not put double quotes around the...

Sorry for my late reply. I would try to compile OMNeT++ with C++14, though I wonder why the symbol names would have changed from C++11 to C++14. You can add...

*TransfusionService* has been designed to attach an external application easily via TCP/IP. Such an external application simply has to send `TransfusionMsg` (encoded by Protobuf) to the `TransfusionService` of Artery; the...

I suggest that your modified `TransfusionService` subscribes to either the "CamReceived" (if you want to forward received CAMs) or "CamSent" (if you want to forward the CAMs generated by the...

See the `ExampleService`, which subscribes to CAMs received by its sibling `CaService`: https://github.com/riebl/artery/blob/bc7013066c2f00aa84324d71cf0a9e9ffdf07b00/src/artery/application/ExampleService.cc#L57 The reception of a CAM is then handled here: https://github.com/riebl/artery/blob/bc7013066c2f00aa84324d71cf0a9e9ffdf07b00/src/artery/application/ExampleService.cc#L113-L116 You can cast the `cObject*` passed to...