From ab56e7ccbb8cb8114b1009455798c341ca02b67f Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Sat, 1 Jan 2011 17:24:46 +0000 Subject: [PATCH] Formatting only. --- Demo/Cortex_STM32L152_IAR/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Demo/Cortex_STM32L152_IAR/main.c b/Demo/Cortex_STM32L152_IAR/main.c index 4d7065a89..4457cd082 100644 --- a/Demo/Cortex_STM32L152_IAR/main.c +++ b/Demo/Cortex_STM32L152_IAR/main.c @@ -212,7 +212,7 @@ task. */ typedef struct { char cMessageID; /* << States what the message is. */ - long lMessageValue; /* << States the message value (can be an integer, string pointer, etc. depending on the value of cMessageID. */ + long lMessageValue; /* << States the message value (can be an integer, string pointer, etc. depending on the value of cMessageID). */ } xQueueMessage; /*-----------------------------------------------------------*/ @@ -586,7 +586,7 @@ void vApplicationMallocFailedHook( void ) void vApplicationIdleHook( void ) { - /* Called on each itteration of the idle task. In this case the idle task + /* Called on each iteration of the idle task. In this case the idle task just enters a low(ish) power mode. */ PWR_EnterSleepMode( PWR_Regulator_ON, PWR_SLEEPEntry_WFI ); }