Update Reliance Edge fail safe file system to the latest version.

This commit is contained in:
Richard Barry 2017-01-24 00:20:35 +00:00
parent 8d041c8e21
commit 67def3c14b
30 changed files with 5877 additions and 5544 deletions

View file

@ -222,7 +222,7 @@ static void vInitStartMarkers()
volatile int recorder_busy = 0;
/* Gives the last error message of the recorder. NULL if no error message. */
char* traceErrorMessage = NULL;
const char* traceErrorMessage = NULL;
void* xTraceNextFreeEventBufferSlot(void)
{
@ -468,7 +468,7 @@ void vTraceError(const char* msg)
if (traceErrorMessage == NULL)
{
traceErrorMessage = (char*)msg;
traceErrorMessage = msg;
(void)strncpy(RecorderDataPtr->systemInfo, traceErrorMessage, 80);
RecorderDataPtr->internalErrorOccured = 1;
}