From: richardbarry Date: Wed, 29 Dec 2010 22:05:28 +0000 (+0000) Subject: Rename a function in the STM32L demo to conform to the coding standard for private... X-Git-Tag: V6.1.1~66 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8edac4338717abea05d2fe1921ddc8c0cc4222c3;p=freertos Rename a function in the STM32L demo to conform to the coding standard for private functions. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1191 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Demo/Cortex_STM32L152_IAR/main.c b/Demo/Cortex_STM32L152_IAR/main.c index 8e7def36e..4d7065a89 100644 --- a/Demo/Cortex_STM32L152_IAR/main.c +++ b/Demo/Cortex_STM32L152_IAR/main.c @@ -184,7 +184,7 @@ static void prvLCDTask( void *pvParameters ); * Definition of the button poll task described in the comments at the top of * this file. */ -static void vButtonPollTask( void *pvParameters ); +static void prvButtonPollTask( void *pvParameters ); /* * Converts a status message value into an appropriate string for display on @@ -238,7 +238,7 @@ void main( void ) /* Create the LCD and button poll tasks, as described at the top of this file. */ xTaskCreate( prvLCDTask, ( signed char * ) "LCD", configMINIMAL_STACK_SIZE, NULL, mainLCD_TASK_PRIORITY, NULL ); - xTaskCreate( vButtonPollTask, ( signed char * ) "ButPoll", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL ); + xTaskCreate( prvButtonPollTask, ( signed char * ) "ButPoll", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL ); /* Create a subset of the standard demo tasks. */ vStartDynamicPriorityTasks(); @@ -436,7 +436,7 @@ static xQueueMessage xStatusMessage = { mainMESSAGE_STATUS, pdPASS }; } /*-----------------------------------------------------------*/ -static void vButtonPollTask( void *pvParameters ) +static void prvButtonPollTask( void *pvParameters ) { long lLastState = pdTRUE; long lState;