]> git.sur5r.net Git - freertos/commitdiff
Rename a function in the STM32L demo to conform to the coding standard for private...
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Wed, 29 Dec 2010 22:05:28 +0000 (22:05 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Wed, 29 Dec 2010 22:05:28 +0000 (22:05 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1191 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/Cortex_STM32L152_IAR/main.c

index 8e7def36e4448e9cc0ef98d3565eaf3375bbb9b7..4d7065a89f75aef9432ffc32d241f19a41056dcb 100644 (file)
@@ -184,7 +184,7 @@ static void prvLCDTask( void *pvParameters );
  * Definition of the button poll task described in the comments at the top of\r
  * this file.\r
  */\r
-static void vButtonPollTask( void *pvParameters );\r
+static void prvButtonPollTask( void *pvParameters );\r
 \r
 /*\r
  * Converts a status message value into an appropriate string for display on\r
@@ -238,7 +238,7 @@ void main( void )
                /* Create the LCD and button poll tasks, as described at the top of this\r
                file. */\r
                xTaskCreate( prvLCDTask, ( signed char * ) "LCD", configMINIMAL_STACK_SIZE, NULL, mainLCD_TASK_PRIORITY, NULL );\r
-               xTaskCreate( vButtonPollTask, ( signed char * ) "ButPoll", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );\r
+               xTaskCreate( prvButtonPollTask, ( signed char * ) "ButPoll", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );\r
                \r
                /* Create a subset of the standard demo tasks. */\r
                vStartDynamicPriorityTasks();\r
@@ -436,7 +436,7 @@ static xQueueMessage xStatusMessage = { mainMESSAGE_STATUS, pdPASS };
 }\r
 /*-----------------------------------------------------------*/\r
 \r
-static void vButtonPollTask( void *pvParameters )\r
+static void prvButtonPollTask( void *pvParameters )\r
 {\r
 long lLastState = pdTRUE;\r
 long lState;\r