auto-sync

This commit is contained in:
rusEfi 2015-09-13 14:02:32 -04:00
parent eaa55e48b0
commit 49bbfdf746
4 changed files with 80 additions and 16 deletions

View File

@ -234,7 +234,7 @@ float getSparkDwellMsT(int rpm DECLARE_ENGINE_PARAMETER_S) {
return interpolate2d(rpm, engineConfiguration->sparkDwellBins, engineConfiguration->sparkDwell, DWELL_CURVE_SIZE);
}
static int findAngleIndex(float angleOffset DECLARE_ENGINE_PARAMETER_S) {
static int findAngleIndex(float target DECLARE_ENGINE_PARAMETER_S) {
/**
* Here we rely on this to be pre-calculated, that's a performance optimization
*/
@ -242,7 +242,6 @@ static int findAngleIndex(float angleOffset DECLARE_ENGINE_PARAMETER_S) {
efiAssert(engineCycleEventCount > 0, "engineCycleEventCount", 0);
uint32_t middle;
uint32_t left = 0;
uint32_t right = engineCycleEventCount - 1;
@ -250,21 +249,21 @@ static int findAngleIndex(float angleOffset DECLARE_ENGINE_PARAMETER_S) {
* Let's find the last trigger angle which is less or equal to the desired angle
* todo: extract binary search as template method?
*/
while (true) {
middle = (left + right) / 2;
while (left <= right) {
int middle = (left + right) / 2;
angle_t eventAngle = TRIGGER_SHAPE(eventAngles[middle]);
if (middle == left) {
return middle;
}
if (angleOffset < eventAngle) {
right = middle;
} else if (angleOffset > eventAngle) {
left = middle;
} else {
return middle;
}
}
if (eventAngle < target) {
left = middle + 1;
} else if (eventAngle > target) {
right = middle - 1;
} else {
// Values are equal
return middle; // Key found
}
}
return left - 1;
}
void findTriggerPosition(event_trigger_position_s *position, angle_t angleOffset DECLARE_ENGINE_PARAMETER_S) {
@ -367,6 +366,7 @@ static NamedOutputPin * getIgnitionPinForIndex(int i DECLARE_ENGINE_PARAMETER_S
#if EFI_ENGINE_CONTROL || defined(__DOXYGEN__)
int is700 = 0;
void prepareOutputSignals(DECLARE_ENGINE_PARAMETER_F) {
engine_configuration2_s *engineConfiguration2 = engine->engineConfiguration2;
@ -379,6 +379,9 @@ void prepareOutputSignals(DECLARE_ENGINE_PARAMETER_F) {
}
for (int angle = 0; angle < CONFIG(engineCycle); angle++) {
if (angle==700) {
is700++;
}
int triggerShapeIndex = findAngleIndex(angle PASS_ENGINE_PARAMETER);
if (engineConfiguration->useOnlyFrontForTrigger)
triggerShapeIndex = triggerShapeIndex & 0xFFFFFFFE; // we need even index for front_only

View File

@ -0,0 +1,29 @@
package com.rusefi;
public class BinarySearch {
public static int binarySearch(double target, double[] angles) {
System.out.println("Testing " + target);
int left = 0;
int right = angles.length - 1;
while (left <= right) {
int mid = (left + right) / 2;
double midVal = angles[mid];
if (midVal < target)
left = mid + 1; // Neither val is NaN, thisVal is smaller
else if (midVal > target)
right = mid - 1; // Neither val is NaN, thisVal is larger
else {
if (midVal == target) // Values are equal
return mid; // Key found
else if (midVal < target) // (-0.0, 0.0) or (!NaN, NaN)
left = mid + 1;
else // (0.0, -0.0) or (NaN, !NaN)
right = mid - 1;
}
}
return left - 1;
}
}

View File

@ -0,0 +1,32 @@
package com.rusefi.test;
import com.rusefi.BinarySearch;
import junit.framework.TestCase;
import java.util.Arrays;
public class BinarySearchTest extends TestCase {
public static void main(String[] args) {
new BinarySearchTest().testBinary();
}
public void testBinary() {
double[] angles = new double[] {0, 56, 126, 180, 236, 279, 306, 416, 486, 540, 596, 666};
Arrays.sort(angles);
assertEquals(0, BinarySearch.binarySearch(0, angles));
assertEquals(0, BinarySearch.binarySearch(40, angles));
assertEquals(1, BinarySearch.binarySearch(56, angles));
assertEquals(1, BinarySearch.binarySearch(60, angles));
assertEquals(10, BinarySearch.binarySearch(660, angles));
assertEquals(11, BinarySearch.binarySearch(666, angles));
assertEquals(11, BinarySearch.binarySearch(700, angles));
}
}

View File

@ -475,7 +475,7 @@ void testTriggerDecoder(void) {
assertEquals(666, t->eventAngles[11]);
assertEqualsM("index for 665", 10, t->triggerIndexByAngle[665]);
assertEqualsM("index for 668", 10, t->triggerIndexByAngle[668]); // todo: WHY? looks like a bug with last index?
assertEqualsM("index for 668", 11, t->triggerIndexByAngle[668]);
}
// testTriggerDecoder2("miata 1990", MIATA_1990, 0, 0.6280, 0.0);