diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-15 23:30:37 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-16 17:21:57 +0100 |
commit | 7175a87b640b9920e666bce53f46002ac19d4c21 (patch) | |
tree | 9381404327f826e35b33626ee379cd37b0b9dde3 /src/can/can-bus.hpp | |
parent | 5d7fbc236e5778a54c39afd51ed353c0e8761dec (diff) |
Finalization of decoding part of diagnostic messages.
Diagnostic request must have a name to be subscribed. Else, we
can't decode or event push for now.
Change-Id: I0901a71da31320d8598e512614437aceb552713d
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/can/can-bus.hpp')
-rw-r--r-- | src/can/can-bus.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/can/can-bus.hpp b/src/can/can-bus.hpp index a51dfb1..bedc05e 100644 --- a/src/can/can-bus.hpp +++ b/src/can/can-bus.hpp @@ -81,7 +81,7 @@ public: void stop_threads(); int process_can_signals(can_message_t& can_message); - int process_diagnostic_signals(active_diagnostic_request_t* adr, const can_message_t& can_message); + int process_diagnostic_signals(diagnostic_manager_t& manager, const can_message_t& can_message); can_message_t next_can_message(); void push_new_can_message(const can_message_t& can_msg); |