Raphael Riebl
Raphael Riebl
As an avid user of your fork @mouse07410, I am happy to hear that you have merged my PR :-)
DENM v1.3.1 defines `ReferenceDenms ::= SEQUENCE (SIZE(1..8, ...)) OF ActionID`. Please note the additional parentheses around `SIZE(1..8, ...)` compared to the original definition given by @MemoTrap. Interestingly, asn1c seems to...
Thanks @sodevel for providing this branch for discussion. I am fine with most commits. 1) Instead of hard-coding the station id assignment, we may realize a configurable mechanism supporting -...
Hi @sodevel, please have a look at my *cpservice_core* branch I have just pushed. What do you think of it? I have implemented 1) by `Identity::deriveStationId` which is called by...
Can you please move the clang-format stuff to a separate branch where we can further discuss the formatting-specific issues? In general, I am fine with clang-format, and I see the...
Yes, you can do that in `CaService::indicate`. Alternatively, you can listen to the `CamReceived` signal emitted by the `CaService`. This signal conveys a `CaObject` for every received CAM. Thus, you...
When you say "it doesn't work" you mean it does not even compile, right? `VehicleController::setSpeed` expects a Boost.Unit quantity, i.e. `0` is not sufficient. You need to pass `0.0 *...
You cannot call non-const methods on objects via const references. `VehicleController::setSpeed` is a non-const method whereas `getSpeed` is a const method. You can retrieve a non-const reference to `VehicleController` by...
No, there are no explicit collision detection algorithms in Artery. However, Christina implemented a time-to-collision trigger for Artery's storyboard: https://github.com/riebl/artery/blob/master/src/artery/storyboard/TtcCondition.h This triggering condition fires if two vehicles possibly crash within...
Hi @1234MaDa, please note that DEN messages are sent as GeoBroadcast packets at network layer, i.e. these messages are never explicitly sent from one station to another. Does the RSU...