From a4873df5d9e49c370895fa8bae17b8596f908135 Mon Sep 17 00:00:00 2001 From: rtel Date: Thu, 28 Nov 2013 13:24:05 +0000 Subject: [PATCH] Spelling corrections in comments only. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@2119 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- FreeRTOS/Demo/ARM7_LPC2106_GCC/ParTest/ParTest.c | 2 +- FreeRTOS/Demo/ARM7_LPC2129_IAR/ParTest/ParTest.c | 2 +- FreeRTOS/Demo/ARM7_LPC2129_Keil_RVDS/ParTest/ParTest.c | 2 +- FreeRTOS/Demo/ARM7_LPC2368_Eclipse/RTOSDemo/ParTest/ParTest.c | 2 +- FreeRTOS/Demo/ARM7_LPC2368_Rowley/ParTest/ParTest.c | 2 +- FreeRTOS/Demo/CORTEX_LPC1768_GCC_Rowley/ParTest.c | 2 +- FreeRTOS/Demo/CORTEX_LPC1768_IAR/ParTest.c | 4 ++-- FreeRTOS/Demo/Cygnal/main.c | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/FreeRTOS/Demo/ARM7_LPC2106_GCC/ParTest/ParTest.c b/FreeRTOS/Demo/ARM7_LPC2106_GCC/ParTest/ParTest.c index 76103713d..8853b8192 100644 --- a/FreeRTOS/Demo/ARM7_LPC2106_GCC/ParTest/ParTest.c +++ b/FreeRTOS/Demo/ARM7_LPC2106_GCC/ParTest/ParTest.c @@ -124,7 +124,7 @@ unsigned long ulLED = partstFIRST_IO, ulCurrentState; attached. */ ulLED <<= ( unsigned long ) uxLED; - /* If this bit is already set, clear it, and visa versa. */ + /* If this bit is already set, clear it, and vice versa. */ ulCurrentState = GPIO0_IOPIN; if( ulCurrentState & ulLED ) { diff --git a/FreeRTOS/Demo/ARM7_LPC2129_IAR/ParTest/ParTest.c b/FreeRTOS/Demo/ARM7_LPC2129_IAR/ParTest/ParTest.c index 6a5393c2d..7df146175 100644 --- a/FreeRTOS/Demo/ARM7_LPC2129_IAR/ParTest/ParTest.c +++ b/FreeRTOS/Demo/ARM7_LPC2129_IAR/ParTest/ParTest.c @@ -119,7 +119,7 @@ unsigned long ulLED = partstFIRST_IO, ulCurrentState; attached. */ ulLED <<= ( unsigned long ) uxLED; - /* If this bit is already set, clear it, and visa versa. */ + /* If this bit is already set, clear it, and vice versa. */ ulCurrentState = IO1PIN; if( ulCurrentState & ulLED ) { diff --git a/FreeRTOS/Demo/ARM7_LPC2129_Keil_RVDS/ParTest/ParTest.c b/FreeRTOS/Demo/ARM7_LPC2129_Keil_RVDS/ParTest/ParTest.c index 448ac7241..36ca5c4b3 100644 --- a/FreeRTOS/Demo/ARM7_LPC2129_Keil_RVDS/ParTest/ParTest.c +++ b/FreeRTOS/Demo/ARM7_LPC2129_Keil_RVDS/ParTest/ParTest.c @@ -115,7 +115,7 @@ unsigned long ulLED = partstFIRST_IO, ulCurrentState; attached. */ ulLED <<= ( unsigned long ) uxLED; - /* If this bit is already set, clear it, and visa versa. */ + /* If this bit is already set, clear it, and vice versa. */ ulCurrentState = IOPIN1; if( ulCurrentState & ulLED ) { diff --git a/FreeRTOS/Demo/ARM7_LPC2368_Eclipse/RTOSDemo/ParTest/ParTest.c b/FreeRTOS/Demo/ARM7_LPC2368_Eclipse/RTOSDemo/ParTest/ParTest.c index 741349002..1b37e6324 100644 --- a/FreeRTOS/Demo/ARM7_LPC2368_Eclipse/RTOSDemo/ParTest/ParTest.c +++ b/FreeRTOS/Demo/ARM7_LPC2368_Eclipse/RTOSDemo/ParTest/ParTest.c @@ -121,7 +121,7 @@ unsigned portLONG ulLED = partstFIRST_IO, ulCurrentState; attached. */ ulLED <<= ( unsigned portLONG ) uxLED; - /* If this bit is already set, clear it, and visa versa. */ + /* If this bit is already set, clear it, and vice versa. */ ulCurrentState = FIO2PIN; if( ulCurrentState & ulLED ) { diff --git a/FreeRTOS/Demo/ARM7_LPC2368_Rowley/ParTest/ParTest.c b/FreeRTOS/Demo/ARM7_LPC2368_Rowley/ParTest/ParTest.c index 443781aeb..7baaef6d2 100644 --- a/FreeRTOS/Demo/ARM7_LPC2368_Rowley/ParTest/ParTest.c +++ b/FreeRTOS/Demo/ARM7_LPC2368_Rowley/ParTest/ParTest.c @@ -121,7 +121,7 @@ unsigned long ulLED = partstFIRST_IO, ulCurrentState; attached. */ ulLED <<= ( unsigned long ) uxLED; - /* If this bit is already set, clear it, and visa versa. */ + /* If this bit is already set, clear it, and vice versa. */ ulCurrentState = FIO2PIN; if( ulCurrentState & ulLED ) { diff --git a/FreeRTOS/Demo/CORTEX_LPC1768_GCC_Rowley/ParTest.c b/FreeRTOS/Demo/CORTEX_LPC1768_GCC_Rowley/ParTest.c index 5e33e3707..a291ef939 100644 --- a/FreeRTOS/Demo/CORTEX_LPC1768_GCC_Rowley/ParTest.c +++ b/FreeRTOS/Demo/CORTEX_LPC1768_GCC_Rowley/ParTest.c @@ -127,7 +127,7 @@ unsigned long ulLED = partstFIRST_IO, ulCurrentState; attached. */ ulLED <<= ( unsigned long ) ulLEDIn; - /* If this bit is already set, clear it, and visa versa. */ + /* If this bit is already set, clear it, and vice versa. */ ulCurrentState = GPIO2->FIOPIN; if( ulCurrentState & ulLED ) { diff --git a/FreeRTOS/Demo/CORTEX_LPC1768_IAR/ParTest.c b/FreeRTOS/Demo/CORTEX_LPC1768_IAR/ParTest.c index 43704f763..0056c80d5 100644 --- a/FreeRTOS/Demo/CORTEX_LPC1768_IAR/ParTest.c +++ b/FreeRTOS/Demo/CORTEX_LPC1768_IAR/ParTest.c @@ -127,7 +127,7 @@ unsigned long ulCurrentState; if( ulLEDIn == 0 ) { - /* If this bit is already set, clear it, and visa versa. */ + /* If this bit is already set, clear it, and vice versa. */ ulCurrentState = GPIO1->FIOPIN; if( ulCurrentState & partstLED1_OUTPUT ) { @@ -140,7 +140,7 @@ unsigned long ulCurrentState; } else if( ulLEDIn == 1 ) { - /* If this bit is already set, clear it, and visa versa. */ + /* If this bit is already set, clear it, and vice versa. */ ulCurrentState = GPIO0->FIOPIN; if( ulCurrentState & partstLED2_OUTPUT ) { diff --git a/FreeRTOS/Demo/Cygnal/main.c b/FreeRTOS/Demo/Cygnal/main.c index 1a0e05e80..4fb494a58 100644 --- a/FreeRTOS/Demo/Cygnal/main.c +++ b/FreeRTOS/Demo/Cygnal/main.c @@ -357,7 +357,7 @@ unsigned char ucOriginalSFRPage; static void prvToggleOnBoardLED( void ) { - /* If the on board LED is on, turn it off and visa versa. */ + /* If the on board LED is on, turn it off and vice versa. */ if( P1 & ucLED_BIT ) { P1 &= ~ucLED_BIT; -- 2.39.2