mirror of
				https://github.com/eclipse/upm.git
				synced 2025-10-30 06:34:58 +03:00 
			
		
		
		
	java: fix some cast issues with adxl345, free arrays
Signed-off-by: Petre Eftime <petre.p.eftime@intel.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:
		 Petre Eftime
					Petre Eftime
				
			
				
					committed by
					
						 Mihai Tudor Panu
						Mihai Tudor Panu
					
				
			
			
				
	
			
			
			 Mihai Tudor Panu
						Mihai Tudor Panu
					
				
			
						parent
						
							a5a66e9e17
						
					
				
				
					commit
					fbf68d1dd8
				
			| @@ -13,24 +13,25 @@ | ||||
|     return $jnicall; | ||||
| } | ||||
|  | ||||
| %typemap(out) float *getAcceleration { | ||||
| %typemap(out) float * { | ||||
|     $result = JCALL1(NewFloatArray, jenv, 3); | ||||
|     JCALL4(SetFloatArrayRegion, jenv, $result, 0, 3, $1); | ||||
|     delete [] $1; | ||||
| } | ||||
|  | ||||
|  | ||||
| %typemap(jni) int16_t* "jintArray" | ||||
| %typemap(jstype) int16_t* "int[]" | ||||
| %typemap(jtype) int16_t* "int[]" | ||||
| %typemap(jni) int16_t* "jshortArray" | ||||
| %typemap(jstype) int16_t* "short[]" | ||||
| %typemap(jtype) int16_t* "short[]" | ||||
|  | ||||
| %typemap(javaout) int16_t* { | ||||
|     return $jnicall; | ||||
| } | ||||
|  | ||||
| %typemap(out) int16_t *getRawValues { | ||||
|     $result = JCALL1(NewIntArray, jenv, 3); | ||||
|     JCALL4(SetIntArrayRegion, jenv, $result, 0, 3, (const signed int*)$1); | ||||
|     //delete [] $1; | ||||
|     $result = JCALL1(NewShortArray, jenv, 3); | ||||
|     JCALL4(SetShortArrayRegion, jenv, $result, 0, 3, (jshort*)$1); | ||||
|     delete [] $1; | ||||
| } | ||||
|  | ||||
| %include "adxl345.h" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user