From 89e072c41f3417e0a80cf95be3cf88326df32777 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Thu, 16 Mar 2017 17:08:57 +0100 Subject: Include file changes, typo and renaming operation. Change-Id: I6643333cfcc8bea120496c53f1cd3b8596e33398 Signed-off-by: Romain Forlot --- src/diagnostic/diagnostic-message.cpp | 28 ++++++++++------------------ 1 file changed, 10 insertions(+), 18 deletions(-) (limited to 'src/diagnostic/diagnostic-message.cpp') diff --git a/src/diagnostic/diagnostic-message.cpp b/src/diagnostic/diagnostic-message.cpp index bfca85b..c358aae 100644 --- a/src/diagnostic/diagnostic-message.cpp +++ b/src/diagnostic/diagnostic-message.cpp @@ -15,9 +15,11 @@ * limitations under the License. */ -#include "obd2-signals.hpp" +#include "obd2/obd2-signals.hpp" -#include "signals.hpp" +#include "utils/signals.hpp" + +#define OBD2_FUNCTIONAL_BROADCAST_ID 0x7df const char *UNIT_NAMES[10] = { "POURCENT", @@ -62,16 +64,9 @@ obd2_signals_t::obd2_signals_t(uint8_t pid, const char* generic_name, const int { } -void obd2_signals_t::init_diagnostic_shims(can_bus_dev_t& can_bus_dev) +std::vector& get_obd2_signals() { - DiagnosticShims shims_ = diagnostic_init_shims(shims_logger, can_bus_dev.send_can_message, NULL); - - int n_pids_, i_; - - n_pids_ = size(Obd2Pid); - for(i_=0; i_<=n_pids_; i_++) - { - } + return OBD2_PIDS; } /** @@ -83,7 +78,7 @@ void obd2_signals_t::init_diagnostic_shims(can_bus_dev_t& can_bus_dev) * * @return std::vector Vector of signals name found. */ -void obd2_signals_t::find_obd2_signals(const openxc_DynamicField &key, std::vector& found_signals) +void obd2_signals_t::find_obd2_signals(const openxc_DynamicField &key, std::vector& found_signals) { switch(key.type) { @@ -100,11 +95,6 @@ void obd2_signals_t::find_obd2_signals(const openxc_DynamicField &key, std::vect DEBUG(binder_interface, "Found %d signal(s)", (int)found_signals.size()); } -std::vector& get_obd2_signals() -{ - return OBD2_PIDS; -} - uint32_t get_signal_id(const Obd2Pid& sig) { return (uint32_t)sig.pid; @@ -156,7 +146,9 @@ bool obd2_signals_t::is_obd2_response(can_message_t can_message) { debug("Sent message ID is outside the valid range for emulator (7DF to 7E7)"); status=false; -}; + } + return false; +} void obd2_signals_t::add_request(int pid) { -- cgit 1.2.3-korg