2014-01-06 09:27:51 -05:00
|
|
|
#include <jni.h>
|
|
|
|
|
#include <assert.h>
|
2014-05-02 17:54:01 -04:00
|
|
|
#include "Log.hpp"
|
2014-01-06 09:27:51 -05:00
|
|
|
|
|
|
|
|
#include "edu_wpi_first_wpilibj_hal_InterruptJNI.h"
|
2014-08-04 14:19:01 -04:00
|
|
|
#include "HAL/Interrupts.hpp"
|
2015-11-01 09:11:52 -08:00
|
|
|
#include "HALUtil.h"
|
2014-08-04 14:19:01 -04:00
|
|
|
|
|
|
|
|
TLogLevel interruptJNILogLevel = logERROR;
|
|
|
|
|
|
|
|
|
|
#define INTERRUPTJNI_LOG(level) \
|
2014-10-05 17:17:59 -04:00
|
|
|
if (level > interruptJNILogLevel) ; \
|
|
|
|
|
else Log().Get(level)
|
2014-08-04 14:19:01 -04:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
extern "C" {
|
2014-01-06 09:27:51 -05:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Class: edu_wpi_first_wpilibj_hal_InterruptJNI
|
|
|
|
|
* Method: initializeInterrupts
|
2015-11-01 09:11:52 -08:00
|
|
|
* Signature: (IZ)J
|
2014-01-06 09:27:51 -05:00
|
|
|
*/
|
2015-11-01 09:11:52 -08:00
|
|
|
JNIEXPORT jlong JNICALL Java_edu_wpi_first_wpilibj_hal_InterruptJNI_initializeInterrupts
|
|
|
|
|
(JNIEnv * env, jclass, jint interruptIndex, jboolean watcher)
|
2014-01-06 09:27:51 -05:00
|
|
|
{
|
2014-08-04 14:19:01 -04:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Calling INTERRUPTJNI initializeInterrupts";
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "interruptIndex = " << interruptIndex;
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "watcher = " << (bool) watcher;
|
2014-01-06 09:27:51 -05:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
int32_t status = 0;
|
|
|
|
|
void* interrupt = initializeInterrupts(interruptIndex, watcher, &status);
|
2014-08-04 14:19:01 -04:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Interrupt Ptr = " << interrupt;
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Status = " << status;
|
2014-08-04 14:19:01 -04:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
CheckStatus(env, status);
|
|
|
|
|
return (jlong)interrupt;
|
2014-01-06 09:27:51 -05:00
|
|
|
}
|
|
|
|
|
|
2014-08-04 14:19:01 -04:00
|
|
|
|
2014-01-06 09:27:51 -05:00
|
|
|
/*
|
|
|
|
|
* Class: edu_wpi_first_wpilibj_hal_InterruptJNI
|
|
|
|
|
* Method: cleanInterrupts
|
2015-11-01 09:11:52 -08:00
|
|
|
* Signature: (J)V
|
2014-01-06 09:27:51 -05:00
|
|
|
*/
|
|
|
|
|
JNIEXPORT void JNICALL Java_edu_wpi_first_wpilibj_hal_InterruptJNI_cleanInterrupts
|
2015-11-01 09:11:52 -08:00
|
|
|
(JNIEnv * env, jclass, jlong interrupt_pointer)
|
2014-01-06 09:27:51 -05:00
|
|
|
{
|
2014-08-04 14:19:01 -04:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Calling INTERRUPTJNI cleanInterrupts";
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Interrupt Ptr = " << (void*)interrupt_pointer;
|
|
|
|
|
|
|
|
|
|
int32_t status = 0;
|
|
|
|
|
cleanInterrupts((void*)interrupt_pointer, &status);
|
2014-01-06 09:27:51 -05:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Status = " << status;
|
2014-08-04 14:19:01 -04:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
CheckStatus(env, status);
|
2014-01-06 09:27:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Class: edu_wpi_first_wpilibj_hal_InterruptJNI
|
|
|
|
|
* Method: waitForInterrupt
|
2015-11-01 09:11:52 -08:00
|
|
|
* Signature: (JD)V
|
2014-01-06 09:27:51 -05:00
|
|
|
*/
|
2014-10-05 17:17:59 -04:00
|
|
|
JNIEXPORT int JNICALL Java_edu_wpi_first_wpilibj_hal_InterruptJNI_waitForInterrupt
|
2015-11-01 09:11:52 -08:00
|
|
|
(JNIEnv * env, jclass, jlong interrupt_pointer, jdouble timeout, jboolean ignorePrevious)
|
2014-01-06 09:27:51 -05:00
|
|
|
{
|
2014-08-04 14:19:01 -04:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Calling INTERRUPTJNI waitForInterrupt";
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Interrupt Ptr = " << (void*)interrupt_pointer;
|
2014-08-04 14:19:01 -04:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
int32_t status = 0;
|
|
|
|
|
int result = waitForInterrupt((void*)interrupt_pointer, timeout, ignorePrevious, &status);
|
2014-01-06 09:27:51 -05:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Status = " << status;
|
2014-10-05 17:17:59 -04:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
CheckStatus(env, status);
|
2014-10-05 17:17:59 -04:00
|
|
|
return result;
|
2014-01-06 09:27:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Class: edu_wpi_first_wpilibj_hal_InterruptJNI
|
|
|
|
|
* Method: enableInterrupts
|
2015-11-01 09:11:52 -08:00
|
|
|
* Signature: (J)V
|
2014-01-06 09:27:51 -05:00
|
|
|
*/
|
|
|
|
|
JNIEXPORT void JNICALL Java_edu_wpi_first_wpilibj_hal_InterruptJNI_enableInterrupts
|
2015-11-01 09:11:52 -08:00
|
|
|
(JNIEnv * env, jclass, jlong interrupt_pointer)
|
2014-01-06 09:27:51 -05:00
|
|
|
{
|
2014-08-04 14:19:01 -04:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Calling INTERRUPTJNI enableInterrupts";
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Interrupt Ptr = " << (void*)interrupt_pointer;
|
2014-01-06 09:27:51 -05:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
int32_t status = 0;
|
|
|
|
|
enableInterrupts((void*)interrupt_pointer, &status);
|
2014-08-04 14:19:01 -04:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Status = " << status;
|
|
|
|
|
|
|
|
|
|
CheckStatus(env, status);
|
2014-01-06 09:27:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Class: edu_wpi_first_wpilibj_hal_InterruptJNI
|
|
|
|
|
* Method: disableInterrupts
|
2015-11-01 09:11:52 -08:00
|
|
|
* Signature: (J)V
|
2014-01-06 09:27:51 -05:00
|
|
|
*/
|
|
|
|
|
JNIEXPORT void JNICALL Java_edu_wpi_first_wpilibj_hal_InterruptJNI_disableInterrupts
|
2015-11-01 09:11:52 -08:00
|
|
|
(JNIEnv * env, jclass, jlong interrupt_pointer)
|
2014-01-06 09:27:51 -05:00
|
|
|
{
|
2014-08-04 14:19:01 -04:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Calling INTERRUPTJNI disableInterrupts";
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Interrupt Ptr = " << (void*)interrupt_pointer;
|
|
|
|
|
|
|
|
|
|
int32_t status = 0;
|
|
|
|
|
disableInterrupts((void*)interrupt_pointer, &status);
|
2014-08-04 14:19:01 -04:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Status = " << status;
|
2014-01-06 09:27:51 -05:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
CheckStatus(env, status);
|
2014-01-06 09:27:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Class: edu_wpi_first_wpilibj_hal_InterruptJNI
|
2014-10-05 17:17:59 -04:00
|
|
|
* Method: readRisingTimestamp
|
2015-11-01 09:11:52 -08:00
|
|
|
* Signature: (J)D
|
2014-10-05 17:17:59 -04:00
|
|
|
*/
|
|
|
|
|
JNIEXPORT jdouble JNICALL Java_edu_wpi_first_wpilibj_hal_InterruptJNI_readRisingTimestamp
|
2015-11-01 09:11:52 -08:00
|
|
|
(JNIEnv * env, jclass, jlong interrupt_pointer)
|
2014-10-05 17:17:59 -04:00
|
|
|
{
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Calling INTERRUPTJNI readRisingTimestamp";
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Interrupt Ptr = " << (void*)interrupt_pointer;
|
2014-10-05 17:17:59 -04:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
int32_t status = 0;
|
|
|
|
|
jdouble timeStamp = readRisingTimestamp((void*)interrupt_pointer, &status);
|
2014-10-05 17:17:59 -04:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Status = " << status;
|
|
|
|
|
CheckStatus(env, status);
|
2014-10-05 17:17:59 -04:00
|
|
|
return timeStamp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Class: edu_wpi_first_wpilibj_hal_InterruptJNI
|
|
|
|
|
* Method: readFallingTimestamp
|
2015-11-01 09:11:52 -08:00
|
|
|
* Signature: (J)D
|
2014-01-06 09:27:51 -05:00
|
|
|
*/
|
2014-10-05 17:17:59 -04:00
|
|
|
JNIEXPORT jdouble JNICALL Java_edu_wpi_first_wpilibj_hal_InterruptJNI_readFallingTimestamp
|
2015-11-01 09:11:52 -08:00
|
|
|
(JNIEnv * env, jclass, jlong interrupt_pointer)
|
2014-01-06 09:27:51 -05:00
|
|
|
{
|
2014-10-05 17:17:59 -04:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Calling INTERRUPTJNI readFallingTimestamp";
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Interrupt Ptr = " << (void*)interrupt_pointer;
|
2014-08-04 14:19:01 -04:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
int32_t status = 0;
|
|
|
|
|
jdouble timeStamp = readFallingTimestamp((void*)interrupt_pointer, &status);
|
2014-01-06 09:27:51 -05:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Status = " << status;
|
|
|
|
|
CheckStatus(env, status);
|
2014-08-04 14:19:01 -04:00
|
|
|
return timeStamp;
|
2014-01-06 09:27:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Class: edu_wpi_first_wpilibj_hal_InterruptJNI
|
|
|
|
|
* Method: requestInterrupts
|
2015-11-01 09:11:52 -08:00
|
|
|
* Signature: (JBIZ)V
|
2014-01-06 09:27:51 -05:00
|
|
|
*/
|
|
|
|
|
JNIEXPORT void JNICALL Java_edu_wpi_first_wpilibj_hal_InterruptJNI_requestInterrupts
|
2015-11-01 09:11:52 -08:00
|
|
|
(JNIEnv * env, jclass, jlong interrupt_pointer, jbyte routing_module, jint routing_pin, jboolean routing_analog_trigger)
|
2014-01-06 09:27:51 -05:00
|
|
|
{
|
2014-08-04 14:19:01 -04:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Calling INTERRUPTJNI requestInterrupts";
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Interrupt Ptr = " << (void*)interrupt_pointer;
|
2014-08-04 14:19:01 -04:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "routing module = " << (jint) routing_module;
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "routing pin = " << routing_pin;
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "routing analog trigger = " << (jint) routing_analog_trigger;
|
|
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
int32_t status = 0;
|
|
|
|
|
requestInterrupts((void*)interrupt_pointer, (uint8_t) routing_module, (uint32_t) routing_pin, routing_analog_trigger, &status);
|
2014-08-04 14:19:01 -04:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Status = " << status;
|
|
|
|
|
CheckStatus(env, status);
|
2014-08-04 14:19:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct InterruptHandlerParam {
|
|
|
|
|
/*
|
|
|
|
|
* The object edu/wpi/first/wpilibj/hal/InterruptJNI/InterruptHandlerFunction
|
|
|
|
|
* that contains the callback method [code]mid[/code].
|
|
|
|
|
*/
|
|
|
|
|
jobject handler_obj;
|
|
|
|
|
|
|
|
|
|
//The method id for the callback method
|
|
|
|
|
jmethodID mid;
|
|
|
|
|
|
|
|
|
|
//The params passed to the function
|
|
|
|
|
jobject param;
|
|
|
|
|
|
|
|
|
|
~InterruptHandlerParam(){
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Calling INTERRUPTJNI InterruptHandlerParam Destructor";
|
|
|
|
|
JNIEnv *env;
|
|
|
|
|
jint rs = jvm->AttachCurrentThread((void**)&env, NULL);
|
|
|
|
|
assert (rs == JNI_OK);
|
|
|
|
|
|
|
|
|
|
env->DeleteGlobalRef(handler_obj);
|
|
|
|
|
env->DeleteGlobalRef(param);
|
|
|
|
|
rs = jvm->DetachCurrentThread();
|
|
|
|
|
assert (rs == JNI_OK);
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Leaving INTERRUPTJNI InterruptHandlerParam Destructor";
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void interruptHandler(uint32_t mask, void *data) {
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Calling INTERRUPTJNI interruptHandler";
|
|
|
|
|
InterruptHandlerParam *param = static_cast<InterruptHandlerParam *>(data);
|
|
|
|
|
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "InterruptHandlerParam Ptr = " << param;
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "InterruptHandlerParam->obj = " << param->handler_obj;
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "InterruptHandlerParam->param = " << param->param;
|
2014-01-06 09:27:51 -05:00
|
|
|
|
2014-08-04 14:19:01 -04:00
|
|
|
//Because this is a callback in a new thread we must attach it to the JVM
|
|
|
|
|
JNIEnv *env;
|
|
|
|
|
jint rs = jvm->AttachCurrentThread((void**)&env, NULL);
|
|
|
|
|
assert (rs == JNI_OK);
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Attached to thread";
|
|
|
|
|
|
|
|
|
|
env->CallVoidMethod(param->handler_obj, param->mid, mask, param->param);
|
|
|
|
|
if (env->ExceptionCheck()) {
|
|
|
|
|
env->ExceptionDescribe();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rs = jvm->DetachCurrentThread();
|
|
|
|
|
assert (rs == JNI_OK);
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Leaving INTERRUPTJNI interruptHandler";
|
2014-01-06 09:27:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Class: edu_wpi_first_wpilibj_hal_InterruptJNI
|
|
|
|
|
* Method: attachInterruptHandler
|
2015-11-01 09:11:52 -08:00
|
|
|
* Signature: (JLedu/wpi/first/wpilibj/hal/InterruptJNI/InterruptHandlerFunction;Ljava/nio/ByteBuffer;)V
|
2014-01-06 09:27:51 -05:00
|
|
|
*/
|
|
|
|
|
JNIEXPORT void JNICALL Java_edu_wpi_first_wpilibj_hal_InterruptJNI_attachInterruptHandler
|
2015-11-01 09:11:52 -08:00
|
|
|
(JNIEnv * env, jclass, jlong interrupt_pointer, jobject handler, jobject param)
|
2014-01-06 09:27:51 -05:00
|
|
|
{
|
2014-08-04 14:19:01 -04:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Calling INTERRUPTJNI attachInterruptHandler";
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Interrupt Ptr = " << (void*)interrupt_pointer;
|
2014-08-04 14:19:01 -04:00
|
|
|
|
|
|
|
|
//Store the interrupt callback paramaters
|
|
|
|
|
InterruptHandlerParam *interruptHandlerParam = new InterruptHandlerParam();
|
|
|
|
|
//Stores the object that contains the callback
|
|
|
|
|
interruptHandlerParam->handler_obj = env->NewGlobalRef(handler);
|
|
|
|
|
//The parameter that will be passed back to the JVM when the method is called
|
|
|
|
|
interruptHandlerParam->param = env->NewGlobalRef(param);
|
|
|
|
|
|
|
|
|
|
jclass cls = env->GetObjectClass(handler);
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "class = " << cls;
|
|
|
|
|
if (cls == 0) {
|
|
|
|
|
INTERRUPTJNI_LOG(logERROR) << "Error getting java class";
|
|
|
|
|
assert (false);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2014-01-06 09:27:51 -05:00
|
|
|
|
2014-08-04 14:19:01 -04:00
|
|
|
jmethodID mid = env->GetMethodID(cls, "apply", "(ILjava/lang/Object;)V");
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "method = " << mid;
|
|
|
|
|
if (mid == 0) {
|
|
|
|
|
INTERRUPTJNI_LOG(logERROR) << "Error getting java method ID";
|
|
|
|
|
assert (false);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
interruptHandlerParam->mid = mid;
|
|
|
|
|
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "InterruptHandlerParam Ptr = " << interruptHandlerParam;
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "InterruptHandlerParam->obj (handler) = " << interruptHandlerParam->handler_obj;
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "InterruptHandlerParam->mid = " << interruptHandlerParam->mid;
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "InterruptHandlerParam->param = " << interruptHandlerParam->param;
|
|
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
int32_t status = 0;
|
|
|
|
|
attachInterruptHandler((void*)interrupt_pointer, interruptHandler, interruptHandlerParam, &status);
|
2014-08-04 14:19:01 -04:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Status = " << status;
|
|
|
|
|
CheckStatus(env, status);
|
2014-01-06 09:27:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Class: edu_wpi_first_wpilibj_hal_InterruptJNI
|
|
|
|
|
* Method: setInterruptUpSourceEdge
|
2015-11-01 09:11:52 -08:00
|
|
|
* Signature: (JZZ)V
|
2014-01-06 09:27:51 -05:00
|
|
|
*/
|
|
|
|
|
JNIEXPORT void JNICALL Java_edu_wpi_first_wpilibj_hal_InterruptJNI_setInterruptUpSourceEdge
|
2015-11-01 09:11:52 -08:00
|
|
|
(JNIEnv * env, jclass, jlong interrupt_pointer, jboolean risingEdge, jboolean fallingEdge)
|
2014-01-06 09:27:51 -05:00
|
|
|
{
|
2014-08-04 14:19:01 -04:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Calling INTERRUPTJNI setInterruptUpSourceEdge";
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Interrupt Ptr = " << (void*)interrupt_pointer;
|
2014-08-04 14:19:01 -04:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Rising Edge = " << (bool) risingEdge;
|
|
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Falling Edge = " << (bool) fallingEdge;
|
|
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
int32_t status = 0;
|
|
|
|
|
setInterruptUpSourceEdge((void*)interrupt_pointer, risingEdge, fallingEdge, &status);
|
2014-01-06 09:27:51 -05:00
|
|
|
|
2015-11-01 09:11:52 -08:00
|
|
|
INTERRUPTJNI_LOG(logDEBUG) << "Status = " << status;
|
|
|
|
|
CheckStatus(env, status);
|
2014-01-06 09:27:51 -05:00
|
|
|
}
|
2015-11-01 09:11:52 -08:00
|
|
|
|
|
|
|
|
} // extern "C"
|