diff --git a/firmware/controllers/engine_cycle/high_pressure_fuel_pump_generated.h b/firmware/controllers/engine_cycle/high_pressure_fuel_pump_generated.h new file mode 100644 index 0000000000..3cd799a0ef --- /dev/null +++ b/firmware/controllers/engine_cycle/high_pressure_fuel_pump_generated.h @@ -0,0 +1,24 @@ +// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/engine_cycle/high_pressure_fuel_pump.txt Fri Dec 31 03:07:40 EST 2021 +// by class com.rusefi.output.CHeaderConsumer +// begin +#pragma once +#include "rusefi_types.h" +// start of high_pressure_fuel_pump_s +struct high_pressure_fuel_pump_s { + /** + * offset 0 + */ + angle_t m_requested_pump = (angle_t)0; + /** + * offset 4 + */ + float fuel_requested_percent = (float)0; + /** + * offset 8 + */ + float fuel_requested_percent_pi = (float)0; + /** total size 12*/ +}; + +// end +// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/engine_cycle/high_pressure_fuel_pump.txt Fri Dec 31 03:07:40 EST 2021 diff --git a/firmware/gen_live_documentation.sh b/firmware/gen_live_documentation.sh index 1563fb7e96..df3f9f0191 100755 --- a/firmware/gen_live_documentation.sh +++ b/firmware/gen_live_documentation.sh @@ -2,6 +2,9 @@ rm gen_live_documentation.log +bash gen_live_documentation_one_file.sh high_pressure_fuel_pump HighPressureFuelPump.java controllers/engine_cycle +[ $? -eq 0 ] || { echo "ERROR generating"; exit 1; } + bash gen_live_documentation_one_file.sh injector_model InjectorModel.java controllers/algo/fuel [ $? -eq 0 ] || { echo "ERROR generating"; exit 1; } diff --git a/java_console/models/src/main/java/com/rusefi/config/generated/HighPressureFuelPump.java b/java_console/models/src/main/java/com/rusefi/config/generated/HighPressureFuelPump.java new file mode 100644 index 0000000000..618cd937d3 --- /dev/null +++ b/java_console/models/src/main/java/com/rusefi/config/generated/HighPressureFuelPump.java @@ -0,0 +1,17 @@ +package com.rusefi.config.generated; + +// this file was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/engine_cycle/high_pressure_fuel_pump.txt Fri Dec 31 03:07:40 EST 2021 + +// by class com.rusefi.output.FileJavaFieldsConsumer +import com.rusefi.config.*; + +public class HighPressureFuelPump { + public static final Field M_REQUESTED_PUMP = Field.create("M_REQUESTED_PUMP", 0, FieldType.FLOAT); + public static final Field FUEL_REQUESTED_PERCENT = Field.create("FUEL_REQUESTED_PERCENT", 4, FieldType.FLOAT); + public static final Field FUEL_REQUESTED_PERCENT_PI = Field.create("FUEL_REQUESTED_PERCENT_PI", 8, FieldType.FLOAT); + public static final Field[] VALUES = { + M_REQUESTED_PUMP, + FUEL_REQUESTED_PERCENT, + FUEL_REQUESTED_PERCENT_PI, + }; +}