summaryrefslogtreecommitdiff
path: root/peripheral/libupm/src/mq303a
diff options
context:
space:
mode:
Diffstat (limited to 'peripheral/libupm/src/mq303a')
-rw-r--r--peripheral/libupm/src/mq303a/CMakeLists.txt2
-rw-r--r--peripheral/libupm/src/mq303a/javaupm_mq303a.i4
-rw-r--r--peripheral/libupm/src/mq303a/jsupm_mq303a.i4
-rw-r--r--peripheral/libupm/src/mq303a/mq303a.cxx2
-rw-r--r--peripheral/libupm/src/mq303a/mq303a.hpp (renamed from peripheral/libupm/src/mq303a/mq303a.h)0
-rw-r--r--peripheral/libupm/src/mq303a/pyupm_mq303a.i4
6 files changed, 8 insertions, 8 deletions
diff --git a/peripheral/libupm/src/mq303a/CMakeLists.txt b/peripheral/libupm/src/mq303a/CMakeLists.txt
index aae1c75..2607608 100644
--- a/peripheral/libupm/src/mq303a/CMakeLists.txt
+++ b/peripheral/libupm/src/mq303a/CMakeLists.txt
@@ -1,5 +1,5 @@
set (libname "mq303a")
set (libdescription "upm mq303a module")
set (module_src ${libname}.cxx)
-set (module_h ${libname}.h)
+set (module_hpp ${libname}.hpp)
upm_module_init()
diff --git a/peripheral/libupm/src/mq303a/javaupm_mq303a.i b/peripheral/libupm/src/mq303a/javaupm_mq303a.i
index da7c5bb..d6aa0dc 100644
--- a/peripheral/libupm/src/mq303a/javaupm_mq303a.i
+++ b/peripheral/libupm/src/mq303a/javaupm_mq303a.i
@@ -2,10 +2,10 @@
%include "../upm.i"
%{
- #include "mq303a.h"
+ #include "mq303a.hpp"
%}
-%include "mq303a.h"
+%include "mq303a.hpp"
%pragma(java) jniclasscode=%{
static {
diff --git a/peripheral/libupm/src/mq303a/jsupm_mq303a.i b/peripheral/libupm/src/mq303a/jsupm_mq303a.i
index 857b92a..f254749 100644
--- a/peripheral/libupm/src/mq303a/jsupm_mq303a.i
+++ b/peripheral/libupm/src/mq303a/jsupm_mq303a.i
@@ -2,7 +2,7 @@
%include "../upm.i"
%{
- #include "mq303a.h"
+ #include "mq303a.hpp"
%}
-%include "mq303a.h"
+%include "mq303a.hpp"
diff --git a/peripheral/libupm/src/mq303a/mq303a.cxx b/peripheral/libupm/src/mq303a/mq303a.cxx
index 612ffd5..0f5a959 100644
--- a/peripheral/libupm/src/mq303a/mq303a.cxx
+++ b/peripheral/libupm/src/mq303a/mq303a.cxx
@@ -26,7 +26,7 @@
#include <string>
#include <stdexcept>
-#include "mq303a.h"
+#include "mq303a.hpp"
using namespace upm;
diff --git a/peripheral/libupm/src/mq303a/mq303a.h b/peripheral/libupm/src/mq303a/mq303a.hpp
index 41e5c3b..41e5c3b 100644
--- a/peripheral/libupm/src/mq303a/mq303a.h
+++ b/peripheral/libupm/src/mq303a/mq303a.hpp
diff --git a/peripheral/libupm/src/mq303a/pyupm_mq303a.i b/peripheral/libupm/src/mq303a/pyupm_mq303a.i
index 4aee330..3d6eec4 100644
--- a/peripheral/libupm/src/mq303a/pyupm_mq303a.i
+++ b/peripheral/libupm/src/mq303a/pyupm_mq303a.i
@@ -5,7 +5,7 @@
%feature("autodoc", "3");
-%include "mq303a.h"
+%include "mq303a.hpp"
%{
- #include "mq303a.h"
+ #include "mq303a.hpp"
%}