From: Romain Forlot Date: Mon, 13 Feb 2017 22:23:06 +0000 (+0000) Subject: Added bitfield-c library X-Git-Tag: 3.99.1~509 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=e28b4da3cf2042695e0c0a99b9448eb3a548e0f5;hp=1c322797c8a4000b54a0666d88025de3c2df7f0b;p=apps%2Flow-level-can-service.git Added bitfield-c library Change-Id: Ied7e4819b2568205f0790751d5b753e321275990 Signed-off-by: Romain Forlot --- 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