mirror of
https://github.com/eclipse/upm.git
synced 2025-06-08 14:20:38 +03:00

Signed-off-by: Serban Waltter <serban.waltter@rinftech.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
35 lines
817 B
OpenEdge ABL
35 lines
817 B
OpenEdge ABL
#ifdef SWIGPYTHON
|
|
%module (package="upm") bmp280
|
|
#endif
|
|
|
|
%import "interfaces/interfaces.i"
|
|
|
|
%include "../common_top.i"
|
|
|
|
/* BEGIN Java syntax ------------------------------------------------------- */
|
|
#ifdef SWIGJAVA
|
|
%typemap(javaimports) SWIGTYPE %{
|
|
import upm_interfaces.*;
|
|
%}
|
|
|
|
JAVA_JNI_LOADLIBRARY(javaupm_bmp280)
|
|
#endif
|
|
/* END Java syntax */
|
|
|
|
/* BEGIN Javascript syntax ------------------------------------------------- */
|
|
/* END Javascript syntax */
|
|
|
|
/* BEGIN Python syntax ----------------------------------------------------- */
|
|
/* END Python syntax */
|
|
|
|
/* BEGIN Common SWIG syntax ------------------------------------------------- */
|
|
%{
|
|
#include "bmp280_regs.h"
|
|
#include "bmp280.hpp"
|
|
#include "bme280.hpp"
|
|
%}
|
|
%include "bmp280_regs.h"
|
|
%include "bmp280.hpp"
|
|
%include "bme280.hpp"
|
|
/* END Common SWIG syntax */
|