Update docs for C++ (fixes artf3761 and artf3953)

Change-Id: Ic0c4ac8494cadff13461d9bb8b5943cd87619f0a
This commit is contained in:
Kevin O'Connor
2014-12-29 14:09:37 -05:00
parent a6aef54ef4
commit 6d8e782f53
39 changed files with 342 additions and 164 deletions

View File

@@ -21,7 +21,7 @@
static bool suspendOnAssertEnabled = false;
/**
* Enable suspend on asssert.
* Enable suspend on assert.
* If enabled, the user task will be suspended whenever an assert fails. This
* will allow the user to attach to the task with the debugger and examine variables
* around the failure.
@@ -204,7 +204,7 @@ uint32_t GetFPGATime()
/**
* Get the state of the "USER" button on the RoboRIO
* @return true if the button is currently pressed down
* @return True if the button is currently pressed down
*/
bool GetUserButton()
{
@@ -247,6 +247,7 @@ static std::string demangle(char const *mangledSymbol)
/**
* Get a stack trace, ignoring the first "offset" symbols.
* @param offset The number of symbols at the top of the stack to ignore
*/
std::string GetStackTrace(uint32_t offset)
{