2015-08-05 19:43:31 +03:00
|
|
|
%module javaupm_gas
|
|
|
|
%include "../upm.i"
|
|
|
|
%include "typemaps.i"
|
|
|
|
|
|
|
|
%{
|
|
|
|
#include "gas.h"
|
|
|
|
#include "mq2.h"
|
|
|
|
#include "mq3.h"
|
|
|
|
#include "mq5.h"
|
2015-09-14 15:32:08 -06:00
|
|
|
#include "mq7.h"
|
2015-09-14 15:36:45 -06:00
|
|
|
#include "mq8.h"
|
2015-08-05 19:43:31 +03:00
|
|
|
#include "mq9.h"
|
2015-09-01 15:52:35 +03:00
|
|
|
#include "tp401.h"
|
2015-08-05 19:43:31 +03:00
|
|
|
%}
|
|
|
|
|
2015-09-07 19:00:30 +03:00
|
|
|
%typemap(jni) (uint16_t *buffer, int len) "jshortArray";
|
|
|
|
%typemap(jtype) (uint16_t *buffer, int len) "short[]";
|
|
|
|
%typemap(jstype) (uint16_t *buffer, int len) "short[]";
|
2015-09-01 15:52:35 +03:00
|
|
|
|
2015-09-07 19:00:30 +03:00
|
|
|
%typemap(javain) (uint16_t *buffer, int len) "$javainput";
|
2015-09-01 15:52:35 +03:00
|
|
|
|
2015-09-07 19:00:30 +03:00
|
|
|
%typemap(in) (uint16_t *buffer, int len) {
|
2015-09-01 15:52:35 +03:00
|
|
|
$1 = (uint16_t *) JCALL2(GetShortArrayElements, jenv, $input, NULL);
|
|
|
|
$2 = JCALL1(GetArrayLength, jenv, $input);
|
|
|
|
}
|
|
|
|
|
2015-09-07 19:00:30 +03:00
|
|
|
%typemap(freearg) (uint16_t *buffer, int len) {
|
2015-09-01 15:52:35 +03:00
|
|
|
JCALL3(ReleaseShortArrayElements, jenv, $input, (jshort *)$1, 0);
|
|
|
|
}
|
|
|
|
|
2015-09-07 19:00:30 +03:00
|
|
|
%typemap(jni) (int numberOfSamples, uint16_t *buffer) "jshortArray";
|
|
|
|
%typemap(jtype) (int numberOfSamples, uint16_t *buffer) "short[]";
|
|
|
|
%typemap(jstype) (int numberOfSamples, uint16_t *buffer) "short[]";
|
2015-09-01 15:52:35 +03:00
|
|
|
|
2015-09-07 19:00:30 +03:00
|
|
|
%typemap(javain) (int numberOfSamples, uint16_t *buffer) "$javainput";
|
2015-09-01 15:52:35 +03:00
|
|
|
|
2015-09-07 19:00:30 +03:00
|
|
|
%typemap(in) (int numberOfSamples, uint16_t *buffer) {
|
2015-09-01 15:52:35 +03:00
|
|
|
$2 = (uint16_t *) JCALL2(GetShortArrayElements, jenv, $input, NULL);
|
|
|
|
$1 = JCALL1(GetArrayLength, jenv, $input);
|
|
|
|
}
|
|
|
|
|
2015-09-07 19:00:30 +03:00
|
|
|
%typemap(freearg) (int numberOfSamples, uint16_t *buffer) {
|
2015-09-01 15:52:35 +03:00
|
|
|
JCALL3(ReleaseShortArrayElements, jenv, $input, (jshort *)$2, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
%include "gas.h"
|
|
|
|
%include "mq2.h"
|
|
|
|
%include "mq3.h"
|
|
|
|
%include "mq5.h"
|
2015-09-14 15:32:08 -06:00
|
|
|
%include "mq7.h"
|
2015-09-14 15:36:45 -06:00
|
|
|
%include "mq8.h"
|
2015-09-01 15:52:35 +03:00
|
|
|
%include "mq9.h"
|
2015-08-05 19:43:31 +03:00
|
|
|
%include "tp401.h"
|