Index: sources/ApplicationPost.cpp =================================================================== diff -u -r79a6cfcb10472261f3ec26eaf0baf6f1245cd311 -r7e503c5459ec77a2816d6c7789da9b206cedbe8a --- sources/ApplicationPost.cpp (.../ApplicationPost.cpp) (revision 79a6cfcb10472261f3ec26eaf0baf6f1245cd311) +++ sources/ApplicationPost.cpp (.../ApplicationPost.cpp) (revision 7e503c5459ec77a2816d6c7789da9b206cedbe8a) @@ -53,12 +53,15 @@ // although some are not failing the final result, // so they need to be assigned to a variable and then, AND(&&) them, // otherwise on the first fail rest of the checks will not run by compiler optimization. - _isDone = _isShaSum && - _isCANBus && - _isDisplay && - _isTouch && - _isSDCard && - _isRtc ; + _isDone = isShaSum () && + isCANBus () && + isDisplay () && + isTouch () && + isSDCard () && + isRtc () && + isWiFi () && + isBluetooth () + ; } else { // TODO: Ignored for now but this could be a FileSystem check failure, and the post.log has to always exist.