From 8edac4338717abea05d2fe1921ddc8c0cc4222c3 Mon Sep 17 00:00:00 2001 From: richardbarry 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. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1191 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- 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; -- 2.39.2