summaryrefslogtreecommitdiff
path: root/peripheral/libupm/src/st7735/javaupm_st7735.i
diff options
context:
space:
mode:
Diffstat (limited to 'peripheral/libupm/src/st7735/javaupm_st7735.i')
-rw-r--r--peripheral/libupm/src/st7735/javaupm_st7735.i57
1 files changed, 0 insertions, 57 deletions
diff --git a/peripheral/libupm/src/st7735/javaupm_st7735.i b/peripheral/libupm/src/st7735/javaupm_st7735.i
deleted file mode 100644
index e60367c..0000000
--- a/peripheral/libupm/src/st7735/javaupm_st7735.i
+++ /dev/null
@@ -1,57 +0,0 @@
-%module javaupm_st7735
-%include "../upm.i"
-%include "arrays_java.i"
-%include "typemaps.i"
-%include "stdint.i"
-
-%ignore m_map;
-%ignore Bcmd;
-%ignore font;
-%ignore Rcmd1;
-%ignore Rcmd2green;
-%ignore Rcmd2red;
-%ignore Rcmd3;
-
-
-/*
-%typemap(jni) unsigned char[] "jbyteArray";
-%typemap(jtype) unsigned char[] "byte[]";
-%typemap(jstype) unsigned char[] "byte[]";
-
-%typemap(out) unsigned char[] {
- $result = SWIG_JavaArrayOutSchar(jenv, reinterpret_cast<signed char*>($1), sizeof($1));
-}
-%typemap(freearg) unsigned char* {
- JCALL3(ReleaseByteArrayElements, jenv, $input, reinterpret_cast<jbyte*>($1), 0);
-}
-*/
-%typemap(jni) unsigned char* "jbyteArray";
-%typemap(jtype) unsigned char* "byte[]";
-%typemap(jstype) unsigned char* "byte[]";
-
-%typemap(javain) unsigned char* "$javainput"
-
-%typemap(in) unsigned char* {
- $1 = (unsigned char *)JCALL2(GetByteArrayElements, jenv, $input, NULL);
-}
-
-%include "gfx.h"
-%{
- #include "gfx.h"
-%}
-
-%include "st7735.h"
-%{
- #include "st7735.h"
-%}
-
-%pragma(java) jniclasscode=%{
- static {
- try {
- System.loadLibrary("javaupm_st7735");
- } catch (UnsatisfiedLinkError e) {
- System.err.println("Native code library failed to load. \n" + e);
- System.exit(1);
- }
- }
-%} \ No newline at end of file