2020-07-09 07:27:20 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-07-30 13:28:27 -07:00
|
|
|
echo "This batch files reads rusefi_enums.h and produces auto_generated_enums.* files"
|
2020-01-02 15:58:28 -08:00
|
|
|
|
|
|
|
rm gen_enum_to_string.log
|
|
|
|
|
2021-10-14 15:36:47 -07:00
|
|
|
java -DSystemOut.name=gen_java_enum -cp ../java_tools/enum2string.jar com.rusefi.ToJavaEnum -enumInputFile controllers/algo/live_data_ids.h -outputPath ../java_console/ui/src/main/java/com/rusefi/enums
|
|
|
|
|
2021-07-03 18:01:29 -07:00
|
|
|
java -DSystemOut.name=gen_enum_to_string \
|
|
|
|
-jar ../java_tools/enum2string.jar \
|
|
|
|
-outputPath controllers/algo \
|
|
|
|
-generatedFile codes \
|
|
|
|
-enumInputFile controllers/algo/obd_error_codes.h
|
|
|
|
|
2021-07-12 18:31:40 -07:00
|
|
|
java -DSystemOut.name=gen_enum_to_string \
|
|
|
|
-jar ../java_tools/enum2string.jar \
|
|
|
|
-outputPath controllers/algo \
|
|
|
|
-generatedFile commonenum \
|
|
|
|
-enumInputFile controllers/algo/rusefi_enums.h
|
|
|
|
|
2021-07-03 18:01:29 -07:00
|
|
|
# TODO: rearrange enums so that we have WAY less duplicated generated code? at the moment too many enums are generated 4 times
|
|
|
|
|
2020-01-02 15:58:28 -08:00
|
|
|
java -DSystemOut.name=gen_enum_to_string \
|
|
|
|
-jar ../java_tools/enum2string.jar \
|
|
|
|
-outputPath controllers/algo \
|
|
|
|
-enumInputFile controllers/algo/rusefi_hw_enums.h \
|
2020-07-04 18:02:50 -07:00
|
|
|
|
|
|
|
pwd
|
|
|
|
cd config/boards/kinetis/config
|
2020-07-09 07:27:20 -07:00
|
|
|
bash kinetis_gen_enum_to_string.sh
|
2020-09-27 07:40:37 -07:00
|
|
|
cd ../../../..
|
|
|
|
|
|
|
|
cd config/boards/hellen/cypress/config
|
|
|
|
bash hellen_cypress_gen_enum_to_string.sh
|
|
|
|
cd ../../../../..
|
2021-02-18 15:18:13 -08:00
|
|
|
|
|
|
|
bash config/boards/subaru_eg33/config/gen_enum_to_string.sh
|