mirror of
				https://github.com/eclipse/upm.git
				synced 2025-10-29 14:15:33 +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; |     return $jnicall; | ||||||
| } | } | ||||||
|  |  | ||||||
| %typemap(out) float *getAcceleration { | %typemap(out) float * { | ||||||
|     $result = JCALL1(NewFloatArray, jenv, 3); |     $result = JCALL1(NewFloatArray, jenv, 3); | ||||||
|     JCALL4(SetFloatArrayRegion, jenv, $result, 0, 3, $1); |     JCALL4(SetFloatArrayRegion, jenv, $result, 0, 3, $1); | ||||||
|  |     delete [] $1; | ||||||
| } | } | ||||||
|  |  | ||||||
|  |  | ||||||
| %typemap(jni) int16_t* "jintArray" | %typemap(jni) int16_t* "jshortArray" | ||||||
| %typemap(jstype) int16_t* "int[]" | %typemap(jstype) int16_t* "short[]" | ||||||
| %typemap(jtype) int16_t* "int[]" | %typemap(jtype) int16_t* "short[]" | ||||||
|  |  | ||||||
| %typemap(javaout) int16_t* { | %typemap(javaout) int16_t* { | ||||||
|     return $jnicall; |     return $jnicall; | ||||||
| } | } | ||||||
|  |  | ||||||
| %typemap(out) int16_t *getRawValues { | %typemap(out) int16_t *getRawValues { | ||||||
|     $result = JCALL1(NewIntArray, jenv, 3); |     $result = JCALL1(NewShortArray, jenv, 3); | ||||||
|     JCALL4(SetIntArrayRegion, jenv, $result, 0, 3, (const signed int*)$1); |     JCALL4(SetShortArrayRegion, jenv, $result, 0, 3, (jshort*)$1); | ||||||
|     //delete [] $1; |     delete [] $1; | ||||||
| } | } | ||||||
|  |  | ||||||
| %include "adxl345.h" | %include "adxl345.h" | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user