static xQueueHandle xFlashQueue;\r
\r
/* This will be set to pdFALSE if we detect an error. */\r
-static unsigned portBASE_TYPE uxCoRoutineFlashStatus = pdPASS;\r
+static portBASE_TYPE xCoRoutineFlashStatus = pdPASS;\r
\r
/*-----------------------------------------------------------*/\r
\r
/* For the reasons stated at the top of the file we should always\r
find that we can post to the queue. If we could not then an error\r
has occurred. */\r
- uxCoRoutineFlashStatus = pdFAIL;\r
+ xCoRoutineFlashStatus = pdFAIL;\r
}\r
\r
crDELAY( xHandle, xFlashRates[ uxIndex ] );\r
if( xResult != pdPASS )\r
{\r
/* We would not expect to wake unless we received something. */\r
- uxCoRoutineFlashStatus = pdFAIL;\r
+ xCoRoutineFlashStatus = pdFAIL;\r
}\r
else\r
{\r
{\r
/* Return pdPASS or pdFAIL depending on whether an error has been detected\r
or not. */\r
- return uxCoRoutineFlashStatus;\r
+ return xCoRoutineFlashStatus;\r
}\r
\r