nothing happens here

This commit is contained in:
rusefi 2019-06-17 20:45:46 -04:00
parent af6c342368
commit e91e3f9690
5 changed files with 7 additions and 9 deletions

4
firmware/.gitignore vendored
View File

@ -1,5 +1,3 @@
openocd
benchmark.txt
gen_config.log
gen_config_board.log
gen_enum_to_string.log
gen_*.log

View File

@ -1,4 +1,4 @@
// this section was generated automatically by ConfigDefinition.jar based on integration/thermistor.txt Sat Jun 15 17:39:00 EDT 2019
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on integration/thermistor.txt Mon Jun 17 20:32:33 EDT 2019
// begin
#ifndef CONTROLLERS_GENERATED_THERMISTOR_H
#define CONTROLLERS_GENERATED_THERMISTOR_H
@ -24,4 +24,4 @@ typedef struct thermistor_state_s thermistor_state_s;
#endif
// end
// this section was generated automatically by ConfigDefinition.jar based on integration/thermistor.txt Sat Jun 15 17:39:00 EDT 2019
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on integration/thermistor.txt Mon Jun 17 20:32:33 EDT 2019

View File

@ -1,6 +1,6 @@
package com.rusefi.config.generated;
// this file was generated automatically by ConfigDefinition.jar based on integration/thermistor.txt Sun Jun 16 22:18:54 EDT 2019
// this file was generated automatically by rusEfi tool ConfigDefinition.jar based on integration/thermistor.txt Mon Jun 17 20:32:33 EDT 2019
import com.rusefi.config.*;

View File

@ -2,7 +2,7 @@ package com.rusefi.ldmp.generated;
import com.rusefi.ldmp.*;
public class ThermistorMeta {
public class ThermistorsMeta {
public static final Request[] CONTENT = new Request[]{
new TextRequest("Analog_MCU_reads"),
new FieldRequest("voltageMCU"),

View File

@ -8,7 +8,7 @@ import com.rusefi.ldmp.ConfigRequest;
import com.rusefi.ldmp.FieldRequest;
import com.rusefi.ldmp.Request;
import com.rusefi.ldmp.TextRequest;
import com.rusefi.ldmp.generated.ThermistorMeta;
import com.rusefi.ldmp.generated.ThermistorsMeta;
import net.miginfocom.swing.MigLayout;
import org.jetbrains.annotations.NotNull;
@ -23,7 +23,7 @@ public class LiveDocPanel {
JPanel panel = new JPanel(new MigLayout());
panel.setBorder(BorderFactory.createTitledBorder(title));
List<RefreshActions> actions = createComponents(panel, ThermistorMeta.CONTENT, values, instancePrefix);
List<RefreshActions> actions = createComponents(panel, ThermistorsMeta.CONTENT, values, instancePrefix);
LiveDocHolder holder = new LiveDocHolder(id, actions, values) {
@Override