Index: sources/ApplicationPost.cpp =================================================================== diff -u -r3f555c49ddd2c983f469709e3c001d0e76159248 -rcab6f784c0fa71adc3b69c9617da5721ea0daef2 --- sources/ApplicationPost.cpp (.../ApplicationPost.cpp) (revision 3f555c49ddd2c983f469709e3c001d0e76159248) +++ sources/ApplicationPost.cpp (.../ApplicationPost.cpp) (revision cab6f784c0fa71adc3b69c9617da5721ea0daef2) @@ -20,6 +20,7 @@ // Project #include "FileHandler.h" #include "StorageGlobals.h" + /*! * \brief ApplicationPost::ApplicationPost * \details Constructor @@ -55,7 +56,7 @@ /*! * \brief ApplicationPost::checkFileSystem * \details Checks the File System Integrity - * \return false if there is an issue. + * \return false if there is an issue [No Implementation yet (always true)]. */ bool ApplicationPost::checkFileSystem() { @@ -80,7 +81,7 @@ /*! * \brief ApplicationPost::checkDisplay * \details Checks the display driver is loaded - * \return false if there is an issue. + * \return false if there is an issue [No Implementation yet (always true)]. */ bool ApplicationPost::checkDisplay() { @@ -104,7 +105,7 @@ /*! * \brief ApplicationPost::checkSDCard - * \details Checks the SD-Card driver is loaded and the is functional + * \details Checks the SD-Card drive is loaded and functional * \return false if there is an issue. */ bool ApplicationPost::checkSDCard() @@ -116,8 +117,8 @@ /*! * \brief ApplicationPost::CRC - * \details Checks the CAN Bus driver is loaded and the bus is functional - * \return false if there is an issue. + * \details Checks the RTC driver is loaded and functional + * \return false if there is an issue */ bool ApplicationPost::RTC() { @@ -126,6 +127,11 @@ return ok; } +/*! + * \brief ApplicationPost::checkWiFi + * \details Checks the WiFi driver is loaded and functional + * \return false if there is an issue [No Implementation yet (always true)]. + */ bool ApplicationPost::checkWiFi() { bool ok = true; @@ -134,6 +140,11 @@ return ok; } +/*! + * \brief ApplicationPost::checkBluetooth + * \details Checks the Bluetooth driver is loaded and functional + * \return false if there is an issue [No Implementation yet (always false)]. + */ bool ApplicationPost::checkBluetooth() { bool ok = true; // This should not stop the FW POST and is only a warning that will show up in the alarm list. @@ -143,6 +154,11 @@ return ok; } +/*! + * \brief ApplicationPost::checkEthernet + * \details Checks the Ethernet driver is loaded and functional. + * \return false if there is an issue [No Implementation yet (always true)]. + */ bool ApplicationPost::checkEthernet() { bool ok = true; @@ -151,6 +167,11 @@ return ok; } +/*! + * \brief ApplicationPost::checkSound + * \details Checks the sound driver is loaded. + * \return false if there is an issue [No Implementation yet (always true)]. + */ bool ApplicationPost::checkSound() { bool ok = true;