aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-02-13 22:23:06 +0000
committerRomain Forlot <romain.forlot@iot.bzh>2017-02-13 23:31:56 +0000
commite28b4da3cf2042695e0c0a99b9448eb3a548e0f5 (patch)
tree5dc7ebbcf4520dbb2fd70baa4b95c32da9028c3f
parent1c322797c8a4000b54a0666d88025de3c2df7f0b (diff)
Added bitfield-c library
Change-Id: Ied7e4819b2568205f0790751d5b753e321275990 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r--.gitmodules4
-rw-r--r--can-signals.cpp40
m---------libs/bitfield-c6
m---------libs/uds-c10
4 files changed, 60 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules
index 564beeff..ba6895ed 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 00000000..13ff30b1
--- /dev/null
+++ b/can-signals.cpp
@@ -0,0 +1,40 @@
+/*
+ * Copyright (C) 2015, 2016 "IoT.bzh"
+ * Author "Romain Forlot" <romain.forlot@iot.bzh>
+ *
+ * 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 <string>
+#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
+Subproject a34745ec93ae0a1d4f1b640dba8fb6702331a8e
diff --git a/libs/uds-c b/libs/uds-c
new file mode 160000
+Subproject e506334e270d77b20c0bc259ac6c7d8c9b702b7