Index: firmware/App/Controllers/Voltages.c =================================================================== diff -u -r1efa1af5337b36f5022df5ce8cb7459352f13a8b -rb33c521fb4edf8a98c93d4a35909663469a41a0e --- firmware/App/Controllers/Voltages.c (.../Voltages.c) (revision 1efa1af5337b36f5022df5ce8cb7459352f13a8b) +++ firmware/App/Controllers/Voltages.c (.../Voltages.c) (revision b33c521fb4edf8a98c93d4a35909663469a41a0e) @@ -277,7 +277,8 @@ // Publish voltages monitor data on interval if ( ++voltagesDataPublicationTimerCounter >= getU32OverrideValue( &voltagesDataPublishInterval ) ) { - VOLTAGES_DATA_PAYLOAD_T data; + VOLTAGES_DATA_PAYLOAD_T data; + data.adc1_2VProc = getMonitoredLineLevel( MONITORED_LINE_1_2V ); data.adc3_3V = getMonitoredLineLevel( MONITORED_LINE_3_3V ); data.adc5VLogic = getMonitoredLineLevel( MONITORED_LINE_5V_LOGIC ); Index: firmware/App/HDCommon.h =================================================================== diff -u -rdee38a03f588a0382cb7074341a4afc1a5ef6391 -rb33c521fb4edf8a98c93d4a35909663469a41a0e --- firmware/App/HDCommon.h (.../HDCommon.h) (revision dee38a03f588a0382cb7074341a4afc1a5ef6391) +++ firmware/App/HDCommon.h (.../HDCommon.h) (revision b33c521fb4edf8a98c93d4a35909663469a41a0e) @@ -43,7 +43,7 @@ // #define DISABLE_FPGA_COUNTER_CHECKS 1 // Disable alarms associated with FPGA read/error counters // #define EMC_TEST_BUILD 1 // EMC test build - HD/DG run separately but connected, HD pumps toggle on/off w/ stop button #define DISABLE_WD_AND_SFTY_POST_TESTS 1 // Disable watchdog and safety shutdown POST tests -// #define DISABLE_UI_POST_TEST 1 // Disable the UI POST + #define DISABLE_UI_POST_TEST 1 // Disable the UI POST // TODO stays as a build switch until the calibration structure is updated with the build #define SKIP_CAL_CHECK 1 // Implement software configuration once the build switch is done