auto-sync

This commit is contained in:
rusEfi 2016-01-09 11:01:43 -05:00
parent 743e665d5c
commit a4f33e9a34
3 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,7 @@
/** /**
* @file daihatsu.cpp * @file daihatsu.cpp
* *
* Daihatsu 3-Cylinder KF-VE
* set_engine_type 34 * set_engine_type 34
* *
* @date Sep 10, 2015 * @date Sep 10, 2015

View File

@ -401,13 +401,13 @@ static void configureOnePlus60_2(TriggerShape *s, operation_mode_e operationMode
* External logger is needed because at this point our logger is not yet initialized * External logger is needed because at this point our logger is not yet initialized
*/ */
void TriggerShape::initializeTriggerShape(Logging *logger DECLARE_ENGINE_PARAMETER_S) { void TriggerShape::initializeTriggerShape(Logging *logger DECLARE_ENGINE_PARAMETER_S) {
const trigger_config_s *triggerConfig = &engineConfiguration->trigger;
#if EFI_PROD_CODE || defined(__DOXYGEN__) #if EFI_PROD_CODE || defined(__DOXYGEN__)
efiAssertVoid(getRemainingStack(chThdSelf()) > 256, "init t"); efiAssertVoid(getRemainingStack(chThdSelf()) > 256, "init t");
scheduleMsg(logger, "initializeTriggerShape()"); scheduleMsg(logger, "initializeTriggerShape(%s/%d)", getTrigger_type_e(triggerConfig->type), (int) triggerConfig->type);
#endif #endif
TriggerShape *triggerShape = this; TriggerShape *triggerShape = this;
const trigger_config_s *triggerConfig = &engineConfiguration->trigger;
switch (triggerConfig->type) { switch (triggerConfig->type) {

View File

@ -20,6 +20,9 @@ import java.awt.image.BufferedImage;
import static com.rusefi.ui.util.LocalizedMessages.PAUSE; import static com.rusefi.ui.util.LocalizedMessages.PAUSE;
/**
* (c) Andrey Belomutskiy 2013-2015
*/
public class FormulasPane { public class FormulasPane {
private final JPanel content = new JPanel(new BorderLayout()); private final JPanel content = new JPanel(new BorderLayout());
private final JPanel centerProxy = new JPanel(new BorderLayout()); private final JPanel centerProxy = new JPanel(new BorderLayout());