Live Data progress

This commit is contained in:
rusefillc 2022-01-06 15:20:58 -05:00
parent 0445ea9f57
commit e7c28e685e
3 changed files with 8 additions and 5 deletions

View File

@ -227,14 +227,15 @@ jobs:
bash gen_config_board.sh ${{matrix.folder}} ${{matrix.build-target}} ${{matrix.ini-file}}
fi
- name: Generate Enum Strings
working-directory: ./firmware/
run: bash gen_enum_to_string.sh
- name: Generate Live Documentation
working-directory: ./firmware/
run: bash gen_live_documentation.sh
# live_data_ids.h is generated above so order of operations is important here!
- name: Generate Enum Strings
working-directory: ./firmware/
run: bash gen_enum_to_string.sh
# Build machines don't have arm-none-eabi gcc, so let's download it and put it on the path
- name: Download & Install GCC
env:

View File

@ -13,6 +13,7 @@ CONSOLE_SRC_CPP = $(PROJECT_DIR)/console/status_loop.cpp \
CONSOLE_INC=\
$(PROJECT_DIR)/console/binary/generated \
$(PROJECT_DIR)/console/binary \
$(PROJECT_DIR)/console \
$(PROJECT_DIR)/console/binary_log

View File

@ -7,7 +7,8 @@ Usages:
fan_control: [ "FanControl.java", "controllers/actuators" ]
fuel_pump: [ "FuelPump.java", "controllers/actuators" ]
main_relay: [ "MainRelay.java", "controllers/actuators" ]
pid_state: [ "PidState.java", "util/math" ]
#todo: handle ETB pid and Idle pid which point at same pid_state.txt
#pid_state: [ "PidState.java", "util/math" ]
engine_state: [ "EngineState.java", "controllers/algo" ]
tps_accel_state: [ "TpsAccelState.java", "controllers/algo" ]
trigger_central: [ "TriggerCentral.java", "controllers/trigger" ]