summaryrefslogtreecommitdiff
path: root/peripheral/libupm/src/max31723
diff options
context:
space:
mode:
Diffstat (limited to 'peripheral/libupm/src/max31723')
-rw-r--r--peripheral/libupm/src/max31723/CMakeLists.txt2
-rw-r--r--peripheral/libupm/src/max31723/javaupm_max31723.i4
-rw-r--r--peripheral/libupm/src/max31723/jsupm_max31723.i4
-rw-r--r--peripheral/libupm/src/max31723/max31723.cxx2
-rw-r--r--peripheral/libupm/src/max31723/max31723.hpp (renamed from peripheral/libupm/src/max31723/max31723.h)0
-rw-r--r--peripheral/libupm/src/max31723/pyupm_max31723.i4
6 files changed, 8 insertions, 8 deletions
diff --git a/peripheral/libupm/src/max31723/CMakeLists.txt b/peripheral/libupm/src/max31723/CMakeLists.txt
index 911b374..f6e5c72 100644
--- a/peripheral/libupm/src/max31723/CMakeLists.txt
+++ b/peripheral/libupm/src/max31723/CMakeLists.txt
@@ -1,5 +1,5 @@
set (libname "max31723")
set (libdescription "Very accurate temperature sensor")
set (module_src ${libname}.cxx)
-set (module_h ${libname}.h)
+set (module_hpp ${libname}.hpp)
upm_module_init()
diff --git a/peripheral/libupm/src/max31723/javaupm_max31723.i b/peripheral/libupm/src/max31723/javaupm_max31723.i
index 419a34a..c4a6a0b 100644
--- a/peripheral/libupm/src/max31723/javaupm_max31723.i
+++ b/peripheral/libupm/src/max31723/javaupm_max31723.i
@@ -2,10 +2,10 @@
%include "../upm.i"
%{
- #include "max31723.h"
+ #include "max31723.hpp"
%}
-%include "max31723.h"
+%include "max31723.hpp"
%pragma(java) jniclasscode=%{
static {
diff --git a/peripheral/libupm/src/max31723/jsupm_max31723.i b/peripheral/libupm/src/max31723/jsupm_max31723.i
index e35ead5..cfb8a7e 100644
--- a/peripheral/libupm/src/max31723/jsupm_max31723.i
+++ b/peripheral/libupm/src/max31723/jsupm_max31723.i
@@ -2,7 +2,7 @@
%include "../upm.i"
%{
- #include "max31723.h"
+ #include "max31723.hpp"
%}
-%include "max31723.h"
+%include "max31723.hpp"
diff --git a/peripheral/libupm/src/max31723/max31723.cxx b/peripheral/libupm/src/max31723/max31723.cxx
index 133a44d..f34dd88 100644
--- a/peripheral/libupm/src/max31723/max31723.cxx
+++ b/peripheral/libupm/src/max31723/max31723.cxx
@@ -27,7 +27,7 @@
#include <stdlib.h>
#include <stdexcept>
-#include "max31723.h"
+#include "max31723.hpp"
using namespace upm;
diff --git a/peripheral/libupm/src/max31723/max31723.h b/peripheral/libupm/src/max31723/max31723.hpp
index 9aaaca2..9aaaca2 100644
--- a/peripheral/libupm/src/max31723/max31723.h
+++ b/peripheral/libupm/src/max31723/max31723.hpp
diff --git a/peripheral/libupm/src/max31723/pyupm_max31723.i b/peripheral/libupm/src/max31723/pyupm_max31723.i
index 2694b7d..da8e497 100644
--- a/peripheral/libupm/src/max31723/pyupm_max31723.i
+++ b/peripheral/libupm/src/max31723/pyupm_max31723.i
@@ -5,7 +5,7 @@
%feature("autodoc", "3");
-%include "max31723.h"
+%include "max31723.hpp"
%{
- #include "max31723.h"
+ #include "max31723.hpp"
%}