auto-sync

This commit is contained in:
rusEfi 2016-02-18 20:01:29 -05:00
parent 9a9b17b339
commit fcf8f522e3
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
package com.rusefi.autotune;
import java.util.Collection;
/**
* (c) Andrey Belomutskiy 2013-2016
2/18/2016.
*/
public enum FuelAutoTune2 implements FuelAutoLogic {
INSTANCE;
@Override
public FuelAutoTune.Result process(boolean smooth, Collection<FuelAutoTune.stDataOnline> dataECU, double STEP, double targetAFR, float[][] kgbcINIT) {
return null;
}
}