ETB JNI test progress
This commit is contained in:
parent
bcbe06d210
commit
0c69adaa1f
|
@ -21,5 +21,7 @@ public class EngineLogic {
|
|||
|
||||
public native void invokeEtbCycle();
|
||||
|
||||
public native void burnRequest();
|
||||
|
||||
public native byte[] getOutputs();
|
||||
}
|
||||
|
|
|
@ -63,6 +63,14 @@ JNIEXPORT void JNICALL Java_com_rusefi_native_1_EngineLogic_invokePeriodicCallba
|
|||
JNIEXPORT void JNICALL Java_com_rusefi_native_1_EngineLogic_invokeEtbCycle
|
||||
(JNIEnv *, jobject);
|
||||
|
||||
/*
|
||||
* Class: com_rusefi_native__EngineLogic
|
||||
* Method: burnRequest
|
||||
* Signature: ()V
|
||||
*/
|
||||
JNIEXPORT void JNICALL Java_com_rusefi_native_1_EngineLogic_burnRequest
|
||||
(JNIEnv *, jobject);
|
||||
|
||||
/*
|
||||
* Class: com_rusefi_native__EngineLogic
|
||||
* Method: getOutputs
|
||||
|
|
|
@ -80,6 +80,7 @@ JNIEXPORT void JNICALL Java_com_rusefi_native_1_EngineLogic_invokeEtbCycle
|
|||
EngineTestHelper* eth = getEth();
|
||||
Engine *engine = ð->engine;
|
||||
|
||||
printf("[native] invokeEtbCycle\n");
|
||||
for (int i = 0; i < ETB_COUNT; i++) {
|
||||
if (auto etb = engine->etbControllers[i]) {
|
||||
etb->update();
|
||||
|
@ -87,6 +88,12 @@ JNIEXPORT void JNICALL Java_com_rusefi_native_1_EngineLogic_invokeEtbCycle
|
|||
}
|
||||
}
|
||||
|
||||
JNIEXPORT void JNICALL Java_com_rusefi_native_1_EngineLogic_burnRequest
|
||||
(JNIEnv *, jobject) {
|
||||
printf("[native] onBurnRequest\n");
|
||||
onBurnRequest();
|
||||
}
|
||||
|
||||
JNIEXPORT jbyteArray JNICALL Java_com_rusefi_native_1_EngineLogic_getOutputs(JNIEnv * env, jobject instance) {
|
||||
jbyteArray retVal = env->NewByteArray(TS_TOTAL_OUTPUT_SIZE);
|
||||
jbyte *buf = env->GetByteArrayElements(retVal, NULL);
|
||||
|
|
Loading…
Reference in New Issue