unified names for generated headers

This commit is contained in:
rusefi 2019-08-31 23:12:39 -04:00
parent c23b7d4156
commit 4858124edb
7 changed files with 18 additions and 18 deletions

View File

@ -13,7 +13,7 @@
#include "global.h"
#include "cyclic_buffer.h"
#include "table_helper.h"
#include "wall_fuel.h"
#include "wall_fuel_generated.h"
typedef Map3D<TPS_TPS_ACCEL_TABLE, TPS_TPS_ACCEL_TABLE, float, float> tps_tps_Map3D_t;

View File

@ -11,7 +11,7 @@
#include "global.h"
#include "engine_configuration_generated_structures.h"
#include "cyclic_buffer.h"
#include "thermistor.h"
#include "thermistor_generated.h"
#define MOCK_ADC_SIZE 16

View File

@ -1,8 +1,8 @@
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on integration/thermistor.txt Sun Jul 21 16:36:56 EDT 2019
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on integration/thermistor.txt Sat Aug 31 23:11:36 EDT 2019
// by class com.rusefi.output.CHeaderConsumer
// begin
#ifndef CONTROLLERS_GENERATED_THERMISTOR_H
#define CONTROLLERS_GENERATED_THERMISTOR_H
#ifndef CONTROLLERS_GENERATED_THERMISTOR_GENERATED_H
#define CONTROLLERS_GENERATED_THERMISTOR_GENERATED_H
#include "rusefi_types.h"
// start of thermistor_state_s
struct thermistor_state_s {
@ -25,4 +25,4 @@ typedef struct thermistor_state_s thermistor_state_s;
#endif
// end
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on integration/thermistor.txt Sun Jul 21 16:36:56 EDT 2019
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on integration/thermistor.txt Sat Aug 31 23:11:36 EDT 2019

View File

@ -1,8 +1,8 @@
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on integration/trigger.txt Sat Jul 20 12:29:51 EDT 2019
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on integration/trigger.txt Sat Aug 31 23:11:37 EDT 2019
// by class com.rusefi.output.CHeaderConsumer
// begin
#ifndef CONTROLLERS_GENERATED_TRIGGER_STRUCTS_H
#define CONTROLLERS_GENERATED_TRIGGER_STRUCTS_H
#ifndef CONTROLLERS_GENERATED_TRIGGER_GENERATED_H
#define CONTROLLERS_GENERATED_TRIGGER_GENERATED_H
#include "rusefi_types.h"
#define HW_EVENT_TYPES 6
// start of trigger_central_s
@ -19,4 +19,4 @@ typedef struct trigger_central_s trigger_central_s;
#endif
// end
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on integration/trigger.txt Sat Jul 20 12:29:51 EDT 2019
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on integration/trigger.txt Sat Aug 31 23:11:37 EDT 2019

View File

@ -1,8 +1,8 @@
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on integration/wall_fuel.txt Sun Jul 21 16:36:58 EDT 2019
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on integration/wall_fuel.txt Sat Aug 31 23:11:37 EDT 2019
// by class com.rusefi.output.CHeaderConsumer
// begin
#ifndef CONTROLLERS_GENERATED_WALL_FUEL_H
#define CONTROLLERS_GENERATED_WALL_FUEL_H
#ifndef CONTROLLERS_GENERATED_WALL_FUEL_GENERATED_H
#define CONTROLLERS_GENERATED_WALL_FUEL_GENERATED_H
#include "rusefi_types.h"
// start of wall_fuel_state
struct wall_fuel_state {
@ -23,4 +23,4 @@ typedef struct wall_fuel_state wall_fuel_state;
#endif
// end
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on integration/wall_fuel.txt Sun Jul 21 16:36:58 EDT 2019
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on integration/wall_fuel.txt Sat Aug 31 23:11:37 EDT 2019

View File

@ -11,7 +11,7 @@
#include "rusefi_enums.h"
#include "listener_array.h"
#include "trigger_decoder.h"
#include "trigger_structs.h"
#include "trigger_generated.h"
class Engine;
typedef void (*ShaftPositionListener)(trigger_event_e signal, uint32_t index DECLARE_ENGINE_PARAMETER_SUFFIX);

View File

@ -12,19 +12,19 @@ java -DSystemOut.name=gen_config2 ^
-jar ../java_tools/ConfigDefinition.jar ^
-definition integration/thermistor.txt ^
-java_destination ../java_console/models/src/com/rusefi/config/generated/ThermistorState.java ^
-c_destination controllers/generated/thermistor.h
-c_destination controllers/generated/thermistor_generated.h
java -DSystemOut.name=gen_config2 ^
-jar ../java_tools/ConfigDefinition.jar ^
-definition integration/trigger.txt ^
-java_destination ../java_console/models/src/com/rusefi/config/generated/TriggerState.java ^
-c_destination controllers/generated/trigger_structs.h
-c_destination controllers/generated/trigger_generated.h
java -DSystemOut.name=gen_config2 ^
-jar ../java_tools/ConfigDefinition.jar ^
-definition integration/wall_fuel.txt ^
-java_destination ../java_console/models/src/com/rusefi/config/generated/WallFuelState.java ^
-c_destination controllers/generated/wall_fuel.h
-c_destination controllers/generated/wall_fuel_generated.h
java -DSystemOut.name=gen_config2 ^
-cp ../java_tools/ConfigDefinition.jar;../java_tools/configuration_definition/lib/snakeyaml.jar ^