diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-13 15:03:00 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-16 17:15:55 +0100 |
commit | 542518e3f4390fcb0d8fb17bcbb14c7eb4335a61 (patch) | |
tree | 340eda25b52c5f6e4b47dae3aace322c57359e55 /src/can | |
parent | f0d7a6523955ee94a32ec4b62e2a207b23f62316 (diff) |
Move member from obd2_signals_t class to
active_diagnostic_request_t (adr)class. It's more logical
to have them here as call about incoming diagnostic CAN
messages are made against adr class not obd2_signal_t that
it's a subset of diagnostic messages.
It's made to handle obd2 requests as well as normal UDS
diagnostic request for constructor proprietary diagnostic
signals.
Change-Id: I96c714640d6ecfa25dfc9942974057c1797eb0e1
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/can')
-rw-r--r-- | src/can/can-signals.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/can/can-signals.cpp b/src/can/can-signals.cpp index 27a7df9..ce4e264 100644 --- a/src/can/can-signals.cpp +++ b/src/can/can-signals.cpp @@ -25,7 +25,7 @@ #include "../obd2/obd2-signals.hpp" #include "../low-can-binding.hpp" -std::string can_signal_t::prefix_ = "messages."; +std::string can_signal_t::prefix_ = "messages"; can_message_definition_t& can_signal_t::get_message() { |