From a109f862a7fb0b8228f26e27355df2bad3307218 Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Wed, 29 Dec 2010 22:05:28 +0000 Subject: [PATCH] Rename a function in the STM32L demo to conform to the coding standard for private functions. --- Demo/Cortex_STM32L152_IAR/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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;