From e28b4da3cf2042695e0c0a99b9448eb3a548e0f5 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Mon, 13 Feb 2017 22:23:06 +0000 Subject: [PATCH 1/1] Added bitfield-c library Change-Id: Ied7e4819b2568205f0790751d5b753e321275990 Signed-off-by: Romain Forlot --- .gitmodules | 4 ++++ can-signals.cpp | 40 ++++++++++++++++++++++++++++++++++++++++ libs/bitfield-c | 1 + libs/uds-c | 1 + 4 files changed, 46 insertions(+) create mode 100644 can-signals.cpp create mode 160000 libs/bitfield-c create mode 160000 libs/uds-c diff --git a/.gitmodules b/.gitmodules index 564beef..ba6895e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -7,3 +7,7 @@ [submodule "libs/uds-c"] path = libs/uds-c url = git@github.com:openxc/uds-c.git + url = git@github.com:nanopb/nanopb.git +[submodule "libs/bitfield-c"] + path = libs/bitfield-c + url = git@github.com:openxc/bitfield-c.git diff --git a/can-signals.cpp b/can-signals.cpp new file mode 100644 index 0000000..13ff30b --- /dev/null +++ b/can-signals.cpp @@ -0,0 +1,40 @@ +/* + * Copyright (C) 2015, 2016 "IoT.bzh" + * Author "Romain Forlot" + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include +#include "can-signals.h" + +bool match(const std::string &first, const std::string &second) +{ + +} + +CanSignal* getSignals(std::string name) +{ + int n_signals, i; + CanSignal ret_signals[]; + + n_signals = size(SIGNALS); + + for(i=0; i<=n_signals; i++) + { + if(SIGNALS[i].generic_name == name) + return &SIGNALS[i]; + i++; + } + return 0; +} diff --git a/libs/bitfield-c b/libs/bitfield-c new file mode 160000 index 0000000..a34745e --- /dev/null +++ b/libs/bitfield-c @@ -0,0 +1 @@ +Subproject commit a34745ec93ae0a1d4f1b640dba8fb6702331a8e9 diff --git a/libs/uds-c b/libs/uds-c new file mode 160000 index 0000000..e506334 --- /dev/null +++ b/libs/uds-c @@ -0,0 +1 @@ +Subproject commit e506334e270d77b20c0bc259ac6c7d8c9b702b7a -- 2.16.6