Index: firmware/App/Modes/ModeInitPOST.c =================================================================== diff -u -r8fe65bf6222137cc7182ccacff3a5f2fb2f03753 -ra89d6b091874136d75a9bfbdbbc1ff00f42467b3 --- firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 8fe65bf6222137cc7182ccacff3a5f2fb2f03753) +++ firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision a89d6b091874136d75a9bfbdbbc1ff00f42467b3) @@ -7,8 +7,8 @@ * * @file ModeInitPOST.c * -* @author (last) Sean Nash -* @date (last) 12-Nov-2021 +* @author (last) Dara Navaei +* @date (last) 06-Jul-2022 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 @@ -113,6 +113,9 @@ { case DG_POST_STATE_START: postState = handlePOSTStateStart(); +#ifdef BOARD_WITH_NO_HARDWARE + postState = DG_POST_STATE_RTC; +#endif break; case DG_POST_STATE_FW_COMPATIBILITY: @@ -144,8 +147,12 @@ // NVDataMgmt must load all the calibration data into RAM so the actuators // can query their corresponding calibration values successfully case DG_POST_STATE_TEMPERATURE_SENSORS: +#ifndef BOARD_WITH_NO_HARDWARE testStatus = execTemperatureSensorsSelfTest(); postState = handlePOSTStatus( testStatus ); +#else + postState = DG_POST_STATE_COMPLETED; +#endif break; case DG_POST_STATE_ACCELEROMETER: