Index: firmware/App/Modes/ModeInitPOST.c =================================================================== diff -u -r54f45c387430e440ab4607451fc84dea61f273f1 -re72a38b16bc66552f555ae5253c7c68d9921428e --- firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 54f45c387430e440ab4607451fc84dea61f273f1) +++ firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision e72a38b16bc66552f555ae5253c7c68d9921428e) @@ -18,12 +18,13 @@ #include "Accel.h" #include "CPLD.h" #include "FPGA.h" +#include "Heaters.h" +#include "ModeInitPOST.h" #include "OperationModes.h" +#include "Pressures.h" +#include "RTC.h" #include "TemperatureSensors.h" #include "WatchdogMgmt.h" -#include "ModeInitPOST.h" -#include "Heaters.h" -#include "Pressures.h" /** * @addtogroup DGInitAndPOSTMode @@ -99,6 +100,11 @@ postState = handlePOSTStatus( testStatus ); break; + case DG_POST_STATE_RTC: + testStatus = execRTCSelfTest(); + postState = handlePOSTStatus( testStatus ); + break; + case DG_POST_STATE_TEMPERATURE_SENSORS: testStatus = execTemperatureSensorsSelfTest(); postState = handlePOSTStatus( testStatus );