mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
This is the changes made by Patrick Plenefisch converting the native code to use CMake and the CMake Maven Plugin, as opposed to the native Maven plugin. This is to allow for compatibility with newer versions of the GCC toolchain. All the cpp sources were moved from maven style directories to cpp style directories for CMake. Change-Id: I67f5e3608948f37c83b0990d232105a3784f8593
213 lines
6.5 KiB
C++
213 lines
6.5 KiB
C++
#include <jni.h>
|
|
#include <assert.h>
|
|
#include "Log.h"
|
|
|
|
#include "edu_wpi_first_wpilibj_hal_DIOJNI.h"
|
|
|
|
#include "HAL/Digital.h"
|
|
|
|
// set the logging level
|
|
TLogLevel dioJNILogLevel = logDEBUG;
|
|
|
|
#define DIOJNI_LOG(level) \
|
|
if (level > dioJNILogLevel) ; \
|
|
else Log().Get(level)
|
|
|
|
/*
|
|
* Class: edu_wpi_first_wpilibj_hal_DIOJNI
|
|
* Method: initializeDigitalPort
|
|
* Signature: (Ljava/nio/ByteBuffer;Ljava/nio/IntBuffer;)Ljava/nio/ByteBuffer;
|
|
*/
|
|
JNIEXPORT jobject JNICALL Java_edu_wpi_first_wpilibj_hal_DIOJNI_initializeDigitalPort
|
|
(JNIEnv * env, jclass, jobject id, jobject status)
|
|
{
|
|
DIOJNI_LOG(logDEBUG) << "Calling DIOJNI initializeDigitalPort";
|
|
void ** javaId = (void**)env->GetDirectBufferAddress(id);
|
|
DIOJNI_LOG(logDEBUG) << "Port Ptr = " << *javaId;
|
|
jint * statusPtr = (jint*)env->GetDirectBufferAddress(status);
|
|
DIOJNI_LOG(logDEBUG) << "Status Ptr = " << statusPtr;
|
|
void** dioPtr = (void**)new unsigned char[4];
|
|
*dioPtr = initializeDigitalPort(*javaId, statusPtr);
|
|
DIOJNI_LOG(logDEBUG) << "Status = " << *statusPtr;
|
|
DIOJNI_LOG(logDEBUG) << "DIO Ptr = " << *dioPtr;
|
|
return env->NewDirectByteBuffer( dioPtr, 4);
|
|
}
|
|
|
|
/*
|
|
* Class: edu_wpi_first_wpilibj_hal_DIOJNI
|
|
* Method: allocateDIO
|
|
* Signature: (Ljava/nio/ByteBuffer;BLjava/nio/IntBuffer;)B
|
|
*/
|
|
JNIEXPORT jbyte JNICALL Java_edu_wpi_first_wpilibj_hal_DIOJNI_allocateDIO
|
|
(JNIEnv * env, jclass, jobject id, jbyte value, jobject status)
|
|
{
|
|
DIOJNI_LOG(logDEBUG) << "Calling DIOJNI allocateDIO";
|
|
void ** javaId = (void**)env->GetDirectBufferAddress(id);
|
|
DIOJNI_LOG(logDEBUG) << "Port Ptr = " << *javaId;
|
|
jint * statusPtr = (jint*)env->GetDirectBufferAddress(status);
|
|
DIOJNI_LOG(logDEBUG) << "Status Ptr = " << statusPtr;
|
|
jbyte returnValue = allocateDIO(*javaId, value, statusPtr);
|
|
DIOJNI_LOG(logDEBUG) << "Status = " << *statusPtr;
|
|
DIOJNI_LOG(logDEBUG) << "allocateDIOResult = " << (jint)returnValue;
|
|
return returnValue;
|
|
}
|
|
|
|
/*
|
|
* Class: edu_wpi_first_wpilibj_hal_DIOJNI
|
|
* Method: freeDIO
|
|
* Signature: (Ljava/nio/ByteBuffer;Ljava/nio/IntBuffer;)V
|
|
*/
|
|
JNIEXPORT void JNICALL Java_edu_wpi_first_wpilibj_hal_DIOJNI_freeDIO
|
|
(JNIEnv * env, jclass, jobject id, jobject status)
|
|
{
|
|
DIOJNI_LOG(logDEBUG) << "Calling DIOJNI freeDIO";
|
|
void ** javaId = (void**)env->GetDirectBufferAddress(id);
|
|
DIOJNI_LOG(logDEBUG) << "Port Ptr = " << *javaId;
|
|
jint * statusPtr = (jint*)env->GetDirectBufferAddress(status);
|
|
DIOJNI_LOG(logDEBUG) << "Status Ptr = " << statusPtr;
|
|
freeDIO(*javaId, statusPtr);
|
|
DIOJNI_LOG(logDEBUG) << "Status = " << *statusPtr;
|
|
}
|
|
|
|
/*
|
|
* Class: edu_wpi_first_wpilibj_hal_DIOJNI
|
|
* Method: setDIO
|
|
* Signature: (Ljava/nio/ByteBuffer;SLjava/nio/IntBuffer;)V
|
|
*/
|
|
JNIEXPORT void JNICALL Java_edu_wpi_first_wpilibj_hal_DIOJNI_setDIO
|
|
(JNIEnv *env, jclass, jobject id, jshort value, jobject status)
|
|
{
|
|
//DIOJNI_LOG(logDEBUG) << "Calling DIOJNI setDIO";
|
|
void ** javaId = (void**)env->GetDirectBufferAddress(id);
|
|
//DIOJNI_LOG(logDEBUG) << "Port Ptr = " << *javaId;
|
|
//DIOJNI_LOG(logDEBUG) << "Value = " << value;
|
|
jint * statusPtr = (jint*)env->GetDirectBufferAddress(status);
|
|
//DIOJNI_LOG(logDEBUG) << "Status Ptr = " << statusPtr;
|
|
setDIO(*javaId, value, statusPtr);
|
|
//DIOJNI_LOG(logDEBUG) << "Status = " << *statusPtr;
|
|
}
|
|
|
|
/*
|
|
* Class: edu_wpi_first_wpilibj_hal_DIOJNI
|
|
* Method: getDIO
|
|
* Signature: (Ljava/nio/ByteBuffer;Ljava/nio/IntBuffer;)B
|
|
*/
|
|
JNIEXPORT jbyte JNICALL Java_edu_wpi_first_wpilibj_hal_DIOJNI_getDIO
|
|
(JNIEnv * env, jclass, jobject id, jobject status)
|
|
{
|
|
//DIOJNI_LOG(logDEBUG) << "Calling DIOJNI getDIO";
|
|
void ** javaId = (void**)env->GetDirectBufferAddress(id);
|
|
//DIOJNI_LOG(logDEBUG) << "Port Ptr = " << *javaId;
|
|
jint * statusPtr = (jint*)env->GetDirectBufferAddress(status);
|
|
//DIOJNI_LOG(logDEBUG) << "Status Ptr = " << statusPtr;
|
|
jbyte returnValue = getDIO(*javaId, statusPtr);
|
|
//DIOJNI_LOG(logDEBUG) << "Status = " << *statusPtr;
|
|
//DIOJNI_LOG(logDEBUG) << "getDIOResult = " << (jint)returnValue;
|
|
return returnValue;
|
|
|
|
}
|
|
|
|
/*
|
|
* Class: edu_wpi_first_wpilibj_hal_DIOJNI
|
|
* Method: getDIODirection
|
|
* Signature: (Ljava/nio/ByteBuffer;Ljava/nio/IntBuffer;)B
|
|
*/
|
|
JNIEXPORT jbyte JNICALL Java_edu_wpi_first_wpilibj_hal_DIOJNI_getDIODirection
|
|
(JNIEnv *, jclass, jobject, jobject)
|
|
{
|
|
assert(false);
|
|
|
|
}
|
|
|
|
/*
|
|
* Class: edu_wpi_first_wpilibj_hal_DIOJNI
|
|
* Method: checkDigitalModule
|
|
* Signature: (B)B
|
|
*/
|
|
JNIEXPORT jbyte JNICALL Java_edu_wpi_first_wpilibj_hal_DIOJNI_checkDigitalModule
|
|
(JNIEnv *, jclass, jbyte value)
|
|
{
|
|
DIOJNI_LOG(logDEBUG) << "Calling DIOJNI checkDigitalModule";
|
|
DIOJNI_LOG(logDEBUG) << "Module = " << (jint)value;
|
|
jbyte returnValue = checkDigitalModule( value );
|
|
DIOJNI_LOG(logDEBUG) << "checkDigitalModuleResult = " << (jint)returnValue;
|
|
return returnValue;
|
|
}
|
|
|
|
/*
|
|
* Class: edu_wpi_first_wpilibj_hal_DIOJNI
|
|
* Method: pulse
|
|
* Signature: (Ljava/nio/ByteBuffer;DLjava/nio/IntBuffer;)V
|
|
*/
|
|
JNIEXPORT void JNICALL Java_edu_wpi_first_wpilibj_hal_DIOJNI_pulse
|
|
(JNIEnv *, jclass, jobject, jdouble, jobject)
|
|
{
|
|
assert(false);
|
|
|
|
}
|
|
|
|
/*
|
|
* Class: edu_wpi_first_wpilibj_hal_DIOJNI
|
|
* Method: isPulsing
|
|
* Signature: (Ljava/nio/ByteBuffer;Ljava/nio/IntBuffer;)B
|
|
*/
|
|
JNIEXPORT jbyte JNICALL Java_edu_wpi_first_wpilibj_hal_DIOJNI_isPulsing
|
|
(JNIEnv *, jclass, jobject, jobject)
|
|
{
|
|
assert(false);
|
|
|
|
}
|
|
|
|
/*
|
|
* Class: edu_wpi_first_wpilibj_hal_DIOJNI
|
|
* Method: isAnyPulsing
|
|
* Signature: (Ljava/nio/IntBuffer;)B
|
|
*/
|
|
JNIEXPORT jbyte JNICALL Java_edu_wpi_first_wpilibj_hal_DIOJNI_isAnyPulsing
|
|
(JNIEnv *, jclass, jobject)
|
|
{
|
|
assert(false);
|
|
|
|
}
|
|
|
|
/*
|
|
* Class: edu_wpi_first_wpilibj_hal_DIOJNI
|
|
* Method: isAnyPulsingWithModule
|
|
* Signature: (BLjava/nio/IntBuffer;)B
|
|
*/
|
|
JNIEXPORT jbyte JNICALL Java_edu_wpi_first_wpilibj_hal_DIOJNI_isAnyPulsingWithModule
|
|
(JNIEnv *, jclass, jbyte, jobject)
|
|
{
|
|
assert(false);
|
|
|
|
}
|
|
|
|
/*
|
|
* Class: edu_wpi_first_wpilibj_hal_DIOJNI
|
|
* Method: getLoopTiming
|
|
* Signature: (Ljava/nio/IntBuffer;)S
|
|
*/
|
|
JNIEXPORT jshort JNICALL Java_edu_wpi_first_wpilibj_hal_DIOJNI_getLoopTiming
|
|
(JNIEnv * env, jclass, jobject status)
|
|
{
|
|
DIOJNI_LOG(logDEBUG) << "Calling DIOJNI getLoopTimeing";
|
|
jint * statusPtr = (jint*)env->GetDirectBufferAddress(status);
|
|
jshort returnValue = getLoopTiming( statusPtr );
|
|
DIOJNI_LOG(logDEBUG) << "Status = " << *statusPtr;
|
|
DIOJNI_LOG(logDEBUG) << "LoopTiming = " << returnValue;
|
|
return returnValue;
|
|
|
|
}
|
|
|
|
/*
|
|
* Class: edu_wpi_first_wpilibj_hal_DIOJNI
|
|
* Method: getLoopTimingWithModule
|
|
* Signature: (BLjava/nio/IntBuffer;)S
|
|
*/
|
|
JNIEXPORT jshort JNICALL Java_edu_wpi_first_wpilibj_hal_DIOJNI_getLoopTimingWithModule
|
|
(JNIEnv *, jclass, jbyte, jobject)
|
|
{
|
|
assert(false);
|
|
|
|
}
|