Index: firmware/App/Modes/ModeInitPOST.c =================================================================== diff -u -r1747702a2e89998cd3fa1348907eeb623e9c16c8 -r3e9328290bdbc18a940935bd7f7c720ca8432b1d --- firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 1747702a2e89998cd3fa1348907eeb623e9c16c8) +++ firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 3e9328290bdbc18a940935bd7f7c720ca8432b1d) @@ -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: