Added bitfield-c library
authorRomain Forlot <romain.forlot@iot.bzh>
Mon, 13 Feb 2017 22:23:06 +0000 (22:23 +0000)
committerRomain Forlot <romain.forlot@iot.bzh>
Mon, 13 Feb 2017 23:31:56 +0000 (23:31 +0000)
Change-Id: Ied7e4819b2568205f0790751d5b753e321275990
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
.gitmodules
can-signals.cpp [new file with mode: 0644]
libs/bitfield-c [new submodule]
libs/uds-c [new submodule]

index 564beef..ba6895e 100644 (file)
@@ -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 (file)
index 0000000..13ff30b
--- /dev/null
@@ -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 (submodule)
index 0000000..a34745e
--- /dev/null
@@ -0,0 +1 @@
+Subproject commit a34745ec93ae0a1d4f1b640dba8fb6702331a8e9
diff --git a/libs/uds-c b/libs/uds-c
new file mode 160000 (submodule)
index 0000000..e506334
--- /dev/null
@@ -0,0 +1 @@
+Subproject commit e506334e270d77b20c0bc259ac6c7d8c9b702b7a