aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-02-14 14:32:55 +0100
committerRomain Forlot <romain.forlot@iot.bzh>2017-02-14 14:32:55 +0100
commitc2a2b12c1ec1a4e17a3c95ceb8f010ce961a909e (patch)
tree049a4cd7ebbbd2e8d6b4df3939b12e6303de805c
parent3a24351bda1208281189d17850555c017a7d342b (diff)
Move sources into src directory
make some cleaning Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r--.gitmodules16
-rw-r--r--src/CMakeLists.txt (renamed from CMakeLists.txt)0
-rw-r--r--src/can-decoder.cpp (renamed from can-decoder.cpp)0
-rw-r--r--src/can-decoder.h (renamed from can-decoder.h)0
-rw-r--r--src/can-signals.cpp (renamed from can-signals.cpp)0
-rw-r--r--src/can-signals.h (renamed from can-signals.h)0
-rw-r--r--src/can-utils.cpp (renamed from can-utils.cpp)0
-rw-r--r--src/can-utils.h (renamed from can-utils.h)0
-rw-r--r--src/can_decode_message.cpp (renamed from can_decoder.cpp)4
-rw-r--r--src/can_event_push.cpp (renamed from can_event_push.cpp)0
-rw-r--r--src/can_reader.cpp (renamed from can_reader.cpp)0
-rw-r--r--src/config.xml.in (renamed from config.xml.in)0
-rw-r--r--src/export.map (renamed from export.map)0
-rw-r--r--src/icon.png (renamed from icon.png)bin4035 -> 4035 bytes
m---------src/libs/bitfield-c (renamed from libs/bitfield-c)0
m---------src/libs/nanopb (renamed from libs/nanopb)0
m---------src/libs/openxc-message-format (renamed from libs/openxc-message-format)0
m---------src/libs/uds-c (renamed from libs/uds-c)0
-rw-r--r--src/low-can-binding.cpp (renamed from low-can-binding.cpp)0
-rw-r--r--src/obd2.cpp (renamed from obd2.cpp)0
-rw-r--r--src/obd2.h (renamed from obd2.h)0
-rw-r--r--src/timer.h (renamed from timer.h)0
22 files changed, 10 insertions, 10 deletions
diff --git a/.gitmodules b/.gitmodules
index 2faeffad..6b8fd5aa 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,12 +1,12 @@
-[submodule "libs/openxc-message-format"]
- path = libs/openxc-message-format
+[submodule "src/libs/openxc-message-format"]
+ path = src/libs/openxc-message-format
url = git@github.com:openxc/openxc-message-format.git
-[submodule "libs/nanopb"]
- path = libs/nanopb
+[submodule "src/libs/nanopb"]
+ path = src/libs/nanopb
url = git@github.com:nanopb/nanopb.git
-[submodule "libs/uds-c"]
- path = libs/uds-c
+[submodule "src/libs/uds-c"]
+ path = src/libs/uds-c
url = git@github.com:openxc/uds-c.git
-[submodule "libs/bitfield-c"]
- path = libs/bitfield-c
+[submodule "src/libs/bitfield-c"]
+ path = src/libs/bitfield-c
url = git@github.com:openxc/bitfield-c.git
diff --git a/CMakeLists.txt b/src/CMakeLists.txt
index 768d6b47..768d6b47 100644
--- a/CMakeLists.txt
+++ b/src/CMakeLists.txt
diff --git a/can-decoder.cpp b/src/can-decoder.cpp
index 000db2ac..000db2ac 100644
--- a/can-decoder.cpp
+++ b/src/can-decoder.cpp
diff --git a/can-decoder.h b/src/can-decoder.h
index 249d5b00..249d5b00 100644
--- a/can-decoder.h
+++ b/src/can-decoder.h
diff --git a/can-signals.cpp b/src/can-signals.cpp
index 13ff30b1..13ff30b1 100644
--- a/can-signals.cpp
+++ b/src/can-signals.cpp
diff --git a/can-signals.h b/src/can-signals.h
index f34c743e..f34c743e 100644
--- a/can-signals.h
+++ b/src/can-signals.h
diff --git a/can-utils.cpp b/src/can-utils.cpp
index 67214105..67214105 100644
--- a/can-utils.cpp
+++ b/src/can-utils.cpp
diff --git a/can-utils.h b/src/can-utils.h
index 8c850e6e..8c850e6e 100644
--- a/can-utils.h
+++ b/src/can-utils.h
diff --git a/can_decoder.cpp b/src/can_decode_message.cpp
index 5de6eda9..ba822026 100644
--- a/can_decoder.cpp
+++ b/src/can_decode_message.cpp
@@ -25,7 +25,7 @@
#include "can-utils.h"
#include "openxc.pb.h"
-void decode_can_message(CanBus_c *can_bus)
+void can_decode_message(CanBus_c *can_bus)
{
CanMessage_c can_message;
@@ -37,4 +37,4 @@ void decode_can_message(CanBus_c *can_bus)
can_bus->can_message_q.pop();
}
}
-}
+} \ No newline at end of file
diff --git a/can_event_push.cpp b/src/can_event_push.cpp
index b08619b8..b08619b8 100644
--- a/can_event_push.cpp
+++ b/src/can_event_push.cpp
diff --git a/can_reader.cpp b/src/can_reader.cpp
index d9b3e671..d9b3e671 100644
--- a/can_reader.cpp
+++ b/src/can_reader.cpp
diff --git a/config.xml.in b/src/config.xml.in
index 33a8ff85..33a8ff85 100644
--- a/config.xml.in
+++ b/src/config.xml.in
diff --git a/export.map b/src/export.map
index 52c1b4aa..52c1b4aa 100644
--- a/export.map
+++ b/src/export.map
diff --git a/icon.png b/src/icon.png
index 9bd6a6e4..9bd6a6e4 100644
--- a/icon.png
+++ b/src/icon.png
Binary files differ
diff --git a/libs/bitfield-c b/src/libs/bitfield-c
-Subproject a34745ec93ae0a1d4f1b640dba8fb6702331a8e
+Subproject a34745ec93ae0a1d4f1b640dba8fb6702331a8e
diff --git a/libs/nanopb b/src/libs/nanopb
-Subproject ffe4aff87cc3a15863c09aa808adf2381c8f2fb
+Subproject ffe4aff87cc3a15863c09aa808adf2381c8f2fb
diff --git a/libs/openxc-message-format b/src/libs/openxc-message-format
-Subproject d9f54f97578429773421abce98d5f6579717afc
+Subproject d9f54f97578429773421abce98d5f6579717afc
diff --git a/libs/uds-c b/src/libs/uds-c
-Subproject e506334e270d77b20c0bc259ac6c7d8c9b702b7
+Subproject e506334e270d77b20c0bc259ac6c7d8c9b702b7
diff --git a/low-can-binding.cpp b/src/low-can-binding.cpp
index b6098907..b6098907 100644
--- a/low-can-binding.cpp
+++ b/src/low-can-binding.cpp
diff --git a/obd2.cpp b/src/obd2.cpp
index 7db5d97d..7db5d97d 100644
--- a/obd2.cpp
+++ b/src/obd2.cpp
diff --git a/obd2.h b/src/obd2.h
index 862c04a2..862c04a2 100644
--- a/obd2.h
+++ b/src/obd2.h
diff --git a/timer.h b/src/timer.h
index 76eb51df..76eb51df 100644
--- a/timer.h
+++ b/src/timer.h