-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adapted APPSensorFusion to refactored Logging
- Loading branch information
Showing
10 changed files
with
29 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
/** | ||
* @brief Error state | ||
* @author Andreas Merkle <[email protected]> | ||
* | ||
* | ||
* @addtogroup Application | ||
* | ||
* @{ | ||
|
@@ -91,21 +91,20 @@ class ErrorState : public IState | |
|
||
/** | ||
* Set error message, which to show on the display. | ||
* | ||
* | ||
* @param[in] msg Error message | ||
*/ | ||
void setErrorMsg(const char* msg); | ||
|
||
protected: | ||
private: | ||
|
||
/** | ||
* The error message string size in bytes, which | ||
* includes the terminating character. | ||
*/ | ||
static const size_t ERROR_MSG_SIZE = 20; | ||
static const size_t ERROR_MSG_SIZE = 20; | ||
|
||
char m_errorMsg[ERROR_MSG_SIZE]; /**< Error message, which to show. */ | ||
char m_errorMsg[ERROR_MSG_SIZE]; /**< Error message, which to show. */ | ||
|
||
/** | ||
* Default constructor. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
/** | ||
* @brief Parameter state | ||
* @author Andreas Merkle <[email protected]> | ||
* | ||
* | ||
* @addtogroup Application | ||
* | ||
* @{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
/** | ||
* @brief Ready state | ||
* @author Andreas Merkle <[email protected]> | ||
* | ||
* | ||
* @addtogroup Application | ||
* | ||
* @{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
/** | ||
* @brief Release track state | ||
* @author Andreas Merkle <[email protected]> | ||
* | ||
* | ||
* @addtogroup Application | ||
* | ||
* @{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
/** | ||
* @brief Startup state | ||
* @author Andreas Merkle <[email protected]> | ||
* | ||
* | ||
* @addtogroup Application | ||
* | ||
* @{ | ||
|