Index: sources/ApplicationPost.cpp =================================================================== diff -u -rfc329c788fe9453983072bee937ccbc95b4ed6e4 -r20453ac382a122d1dde3c399ed9fcaf8a39b4ad6 --- sources/ApplicationPost.cpp (.../ApplicationPost.cpp) (revision fc329c788fe9453983072bee937ccbc95b4ed6e4) +++ sources/ApplicationPost.cpp (.../ApplicationPost.cpp) (revision 20453ac382a122d1dde3c399ed9fcaf8a39b4ad6) @@ -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 CANBus 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;