Skip to content

Commit

Permalink
happy java tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mck1117 committed Jul 2, 2023
1 parent 74cc385 commit f8595f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions firmware/integration/LiveData.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@ Usages:
folder: controllers/engine_cycle
output_name: knock

- name: throttle_model
java: ThrottleModel.java
folder: controllers/math
output_name: throttle_model

- name: high_pressure_fuel_pump
java: HighPressureFuelPump.java
folder: controllers/engine_cycle
Expand Down Expand Up @@ -158,6 +153,11 @@ Usages:
folder: controllers/sensors
prepend: integration/rusefi_config_shared.txt

- name: throttle_model
java: ThrottleModel.java
folder: controllers/math
output_name: throttle_model

- name: vvt
java: VvtState.java
folder: controllers/actuators
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ public enum StateDictionary {
register(live_data_e.LDS_antilag_system_state, AntilagSystem.VALUES, "antilag_system");
register(live_data_e.LDS_dc_motors, DcMotors.VALUES, "dc_motors");
register(live_data_e.LDS_sent_state, SentState.VALUES, "sent");
register(live_data_e.LDS_throttle_model, ThrottleModel.VALUES, "throttle_model");
register(live_data_e.LDS_throttle_model, ThrottleModel.VALUES, "throttle_model");
register(live_data_e.LDS_vvt, VvtState.VALUES, "vvt");
if (map.size() != live_data_e.values().length) {
Set<live_data_e> missing = new HashSet<>(Arrays.asList(live_data_e.values()));
missing.removeAll(map.keySet());
Expand Down

0 comments on commit f8595f0

Please sign in to comment.