diff --git a/FreeRTOS-Plus/Demo/Common/FreeRTOS_Plus_CLI_Demos/Sample-CLI-commands.c b/FreeRTOS-Plus/Demo/Common/FreeRTOS_Plus_CLI_Demos/Sample-CLI-commands.c
index 0b06ac00b..e23074dad 100644
--- a/FreeRTOS-Plus/Demo/Common/FreeRTOS_Plus_CLI_Demos/Sample-CLI-commands.c
+++ b/FreeRTOS-Plus/Demo/Common/FreeRTOS_Plus_CLI_Demos/Sample-CLI-commands.c
@@ -70,8 +70,7 @@
/******************************************************************************
*
- * See the following URL for information on the commands defined in this file:
- * http://www.FreeRTOS.org/FreeRTOS-Plus/FreeRTOS_Plus_UDP/Embedded_Ethernet_Examples/Ethernet_Related_CLI_Commands.shtml
+ * http://www.FreeRTOS.org/cli
*
******************************************************************************/
@@ -339,7 +338,7 @@ static BaseType_t prvThreeParameterEchoCommand( char *pcWriteBuffer, size_t xWri
{
const char *pcParameter;
BaseType_t xParameterStringLength, xReturn;
-static BaseType_t lParameterNumber = 0;
+static UBaseType_t uxParameterNumber = 0;
/* Remove compile time warnings about unused parameters, and check the
write buffer is not NULL. NOTE - for simplicity, this example assumes the
@@ -348,7 +347,7 @@ static BaseType_t lParameterNumber = 0;
( void ) xWriteBufferLen;
configASSERT( pcWriteBuffer );
- if( lParameterNumber == 0 )
+ if( uxParameterNumber == 0 )
{
/* The first time the function is called after the command has been
entered just a header string is returned. */
@@ -356,7 +355,7 @@ static BaseType_t lParameterNumber = 0;
/* Next time the function is called the first parameter will be echoed
back. */
- lParameterNumber = 1L;
+ uxParameterNumber = 1U;
/* There is more data to be returned as no parameters have been echoed
back yet. */
@@ -368,7 +367,7 @@ static BaseType_t lParameterNumber = 0;
pcParameter = FreeRTOS_CLIGetParameter
(
pcCommandString, /* The command string itself. */
- lParameterNumber, /* Return the next parameter. */
+ uxParameterNumber, /* Return the next parameter. */
&xParameterStringLength /* Store the parameter string length. */
);
@@ -377,24 +376,24 @@ static BaseType_t lParameterNumber = 0;
/* Return the parameter string. */
memset( pcWriteBuffer, 0x00, xWriteBufferLen );
- sprintf( pcWriteBuffer, "%d: ", ( int ) lParameterNumber );
- strncat( pcWriteBuffer, pcParameter, xParameterStringLength );
+ sprintf( pcWriteBuffer, "%d: ", ( int ) uxParameterNumber );
+ strncat( pcWriteBuffer, pcParameter, ( size_t ) xParameterStringLength );
strncat( pcWriteBuffer, "\r\n", strlen( "\r\n" ) );
/* If this is the last of the three parameters then there are no more
strings to return after this one. */
- if( lParameterNumber == 3L )
+ if( uxParameterNumber == 3U )
{
/* If this is the last of the three parameters then there are no more
strings to return after this one. */
xReturn = pdFALSE;
- lParameterNumber = 0L;
+ uxParameterNumber = 0;
}
else
{
/* There are more parameters to return after this one. */
xReturn = pdTRUE;
- lParameterNumber++;
+ uxParameterNumber++;
}
}
@@ -406,7 +405,7 @@ static BaseType_t prvParameterEchoCommand( char *pcWriteBuffer, size_t xWriteBuf
{
const char *pcParameter;
BaseType_t xParameterStringLength, xReturn;
-static BaseType_t lParameterNumber = 0;
+static UBaseType_t uxParameterNumber = 0;
/* Remove compile time warnings about unused parameters, and check the
write buffer is not NULL. NOTE - for simplicity, this example assumes the
@@ -415,7 +414,7 @@ static BaseType_t lParameterNumber = 0;
( void ) xWriteBufferLen;
configASSERT( pcWriteBuffer );
- if( lParameterNumber == 0 )
+ if( uxParameterNumber == 0 )
{
/* The first time the function is called after the command has been
entered just a header string is returned. */
@@ -423,7 +422,7 @@ static BaseType_t lParameterNumber = 0;
/* Next time the function is called the first parameter will be echoed
back. */
- lParameterNumber = 1L;
+ uxParameterNumber = 1U;
/* There is more data to be returned as no parameters have been echoed
back yet. */
@@ -435,7 +434,7 @@ static BaseType_t lParameterNumber = 0;
pcParameter = FreeRTOS_CLIGetParameter
(
pcCommandString, /* The command string itself. */
- lParameterNumber, /* Return the next parameter. */
+ uxParameterNumber, /* Return the next parameter. */
&xParameterStringLength /* Store the parameter string length. */
);
@@ -443,13 +442,13 @@ static BaseType_t lParameterNumber = 0;
{
/* Return the parameter string. */
memset( pcWriteBuffer, 0x00, xWriteBufferLen );
- sprintf( pcWriteBuffer, "%d: ", ( int ) lParameterNumber );
- strncat( pcWriteBuffer, pcParameter, xParameterStringLength );
+ sprintf( pcWriteBuffer, "%d: ", ( int ) uxParameterNumber );
+ strncat( pcWriteBuffer, ( char * ) pcParameter, ( size_t ) xParameterStringLength );
strncat( pcWriteBuffer, "\r\n", strlen( "\r\n" ) );
/* There might be more parameters to return after this one. */
xReturn = pdTRUE;
- lParameterNumber++;
+ uxParameterNumber++;
}
else
{
@@ -461,7 +460,7 @@ static BaseType_t lParameterNumber = 0;
xReturn = pdFALSE;
/* Start over the next time this command is executed. */
- lParameterNumber = 0;
+ uxParameterNumber = 0;
}
}
diff --git a/FreeRTOS-Plus/Demo/Common/FreeRTOS_Plus_CLI_Demos/UARTCommandConsole.c b/FreeRTOS-Plus/Demo/Common/FreeRTOS_Plus_CLI_Demos/UARTCommandConsole.c
index 3f6179944..ce5f02d7a 100644
--- a/FreeRTOS-Plus/Demo/Common/FreeRTOS_Plus_CLI_Demos/UARTCommandConsole.c
+++ b/FreeRTOS-Plus/Demo/Common/FreeRTOS_Plus_CLI_Demos/UARTCommandConsole.c
@@ -164,7 +164,7 @@ xComPortHandle xPort;
xPort = xSerialPortInitMinimal( configCLI_BAUD_RATE, cmdQUEUE_LENGTH );
/* Send the welcome message. */
- vSerialPutString( xPort, ( signed char * ) pcWelcomeMessage, strlen( pcWelcomeMessage ) );
+ vSerialPutString( xPort, ( signed char * ) pcWelcomeMessage, ( unsigned short ) strlen( pcWelcomeMessage ) );
for( ;; )
{
@@ -183,7 +183,7 @@ xComPortHandle xPort;
if( cRxedChar == '\n' || cRxedChar == '\r' )
{
/* Just to space the output from the input. */
- vSerialPutString( xPort, ( signed char * ) pcNewLine, strlen( pcNewLine ) );
+ vSerialPutString( xPort, ( signed char * ) pcNewLine, ( unsigned short ) strlen( pcNewLine ) );
/* See if the command is empty, indicating that the last command
is to be executed again. */
@@ -203,7 +203,7 @@ xComPortHandle xPort;
xReturned = FreeRTOS_CLIProcessCommand( cInputString, pcOutputString, configCOMMAND_INT_MAX_OUTPUT_SIZE );
/* Write the generated string to the UART. */
- vSerialPutString( xPort, ( signed char * ) pcOutputString, strlen( pcOutputString ) );
+ vSerialPutString( xPort, ( signed char * ) pcOutputString, ( unsigned short ) strlen( pcOutputString ) );
} while( xReturned != pdFALSE );
@@ -215,7 +215,7 @@ xComPortHandle xPort;
ucInputIndex = 0;
memset( cInputString, 0x00, cmdMAX_INPUT_SIZE );
- vSerialPutString( xPort, ( signed char * ) pcEndOfOutputMessage, strlen( pcEndOfOutputMessage ) );
+ vSerialPutString( xPort, ( signed char * ) pcEndOfOutputMessage, ( unsigned short ) strlen( pcEndOfOutputMessage ) );
}
else
{
@@ -260,7 +260,7 @@ void vOutputString( const char * const pcMessage )
{
if( xSemaphoreTake( xTxMutex, cmdMAX_MUTEX_WAIT ) == pdPASS )
{
- vSerialPutString( xPort, ( signed char * ) pcMessage, strlen( pcMessage ) );
+ vSerialPutString( xPort, ( signed char * ) pcMessage, ( unsigned short ) strlen( pcMessage ) );
xSemaphoreGive( xTxMutex );
}
}
diff --git a/FreeRTOS/Demo/CORTEX_A5_SAMA5D3x_Xplained_IAR/Full_Demo/reg_test.S b/FreeRTOS/Demo/CORTEX_A5_SAMA5D3x_Xplained_IAR/Full_Demo/reg_test.S
index c111bebee..fae7dfa13 100644
--- a/FreeRTOS/Demo/CORTEX_A5_SAMA5D3x_Xplained_IAR/Full_Demo/reg_test.S
+++ b/FreeRTOS/Demo/CORTEX_A5_SAMA5D3x_Xplained_IAR/Full_Demo/reg_test.S
@@ -123,7 +123,7 @@ vRegTest1Implementation
vmov d14, r4, r5
vmov d15, r6, r7
- ; Loop, checking each itteration that each register still contains the
+ ; Loop, checking each iteration that each register still contains the
; expected value.
reg1_loop
; Yield to increase test coverage
@@ -317,7 +317,7 @@ vRegTest2Implementation
vmov d14, r4, r5
vmov d15, r6, r7
- ; Loop, checking each itteration that each register still contains the
+ ; Loop, checking each iteration that each register still contains the
; expected value.
reg2_loop
; Check all the VFP registers still contain the values set above.
diff --git a/FreeRTOS/Demo/CORTEX_A5_SAMA5D4x_EK_IAR/Full_Demo/reg_test.S b/FreeRTOS/Demo/CORTEX_A5_SAMA5D4x_EK_IAR/Full_Demo/reg_test.S
index 45ddc9f8e..e17686ed7 100644
--- a/FreeRTOS/Demo/CORTEX_A5_SAMA5D4x_EK_IAR/Full_Demo/reg_test.S
+++ b/FreeRTOS/Demo/CORTEX_A5_SAMA5D4x_EK_IAR/Full_Demo/reg_test.S
@@ -142,7 +142,7 @@ vRegTest1Implementation
vmov d30, r4, r5
vmov d31, r6, r7
- ; Loop, checking each itteration that each register still contains the
+ ; Loop, checking each iteration that each register still contains the
; expected value.
reg1_loop
; Yield to increase test coverage
@@ -434,7 +434,7 @@ vRegTest2Implementation
vmov d30, r4, r5
vmov d31, r6, r7
- ; Loop, checking each itteration that each register still contains the
+ ; Loop, checking each iteration that each register still contains the
; expected value.
reg2_loop
; Check all the VFP registers still contain the values set above.
diff --git a/FreeRTOS/Demo/CORTEX_A9_Cyclone_V_SoC_DK/reg_test.S b/FreeRTOS/Demo/CORTEX_A9_Cyclone_V_SoC_DK/reg_test.S
index 6a0198771..780ec13b6 100644
--- a/FreeRTOS/Demo/CORTEX_A9_Cyclone_V_SoC_DK/reg_test.S
+++ b/FreeRTOS/Demo/CORTEX_A9_Cyclone_V_SoC_DK/reg_test.S
@@ -135,7 +135,7 @@ vRegTest1Implementation:
vmov d30, r4, r5
vmov d31, r6, r7
- /* Loop, checking each itteration that each register still contains the
+ /* Loop, checking each iteration that each register still contains the
expected value. */
reg1_loop:
/* Yield to increase test coverage */
@@ -425,7 +425,7 @@ vRegTest2Implementation:
vmov d30, r4, r5
vmov d31, r6, r7
- /* Loop, checking each itteration that each register still contains the
+ /* Loop, checking each iteration that each register still contains the
expected value. */
reg2_loop:
/* Check all the VFP registers still contain the values set above.
diff --git a/FreeRTOS/Demo/CORTEX_A9_RZ_R7S72100_IAR_DS-5/Source/Full-Demo/reg_test.s b/FreeRTOS/Demo/CORTEX_A9_RZ_R7S72100_IAR_DS-5/Source/Full-Demo/reg_test.s
index c9e269ff6..af98e7eee 100644
--- a/FreeRTOS/Demo/CORTEX_A9_RZ_R7S72100_IAR_DS-5/Source/Full-Demo/reg_test.s
+++ b/FreeRTOS/Demo/CORTEX_A9_RZ_R7S72100_IAR_DS-5/Source/Full-Demo/reg_test.s
@@ -146,7 +146,7 @@ vRegTest1Implementation
vmov d30, r4, r5
vmov d31, r6, r7
- ; Loop, checking each itteration that each register still contains the
+ ; Loop, checking each iteration that each register still contains the
; expected value.
reg1_loop
; Yield to increase test coverage
@@ -438,7 +438,7 @@ vRegTest2Implementation
vmov d30, r4, r5
vmov d31, r6, r7
- ; Loop, checking each itteration that each register still contains the
+ ; Loop, checking each iteration that each register still contains the
; expected value.
reg2_loop
; Check all the VFP registers still contain the values set above.
diff --git a/FreeRTOS/Demo/CORTEX_A9_Zynq_ZC702/RTOSDemo/src/Full_Demo/reg_test.S b/FreeRTOS/Demo/CORTEX_A9_Zynq_ZC702/RTOSDemo/src/Full_Demo/reg_test.S
index 6a0198771..780ec13b6 100644
--- a/FreeRTOS/Demo/CORTEX_A9_Zynq_ZC702/RTOSDemo/src/Full_Demo/reg_test.S
+++ b/FreeRTOS/Demo/CORTEX_A9_Zynq_ZC702/RTOSDemo/src/Full_Demo/reg_test.S
@@ -135,7 +135,7 @@ vRegTest1Implementation:
vmov d30, r4, r5
vmov d31, r6, r7
- /* Loop, checking each itteration that each register still contains the
+ /* Loop, checking each iteration that each register still contains the
expected value. */
reg1_loop:
/* Yield to increase test coverage */
@@ -425,7 +425,7 @@ vRegTest2Implementation:
vmov d30, r4, r5
vmov d31, r6, r7
- /* Loop, checking each itteration that each register still contains the
+ /* Loop, checking each iteration that each register still contains the
expected value. */
reg2_loop:
/* Check all the VFP registers still contain the values set above.
diff --git a/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/.cproject b/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/.cproject
index b6ac7fa6a..be6b644f4 100644
--- a/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/.cproject
+++ b/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/.cproject
@@ -44,6 +44,7 @@
-
+
-
-
-
-
+
diff --git a/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/.project b/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/.project
index 46213b545..564380c6c 100644
--- a/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/.project
+++ b/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/.project
@@ -30,11 +30,26 @@
2FREERTOS_ROOT/FreeRTOS/Source
+
+ src/Full_Demo/FreeRTOS-Plus-CLI
+ 2
+ FREERTOS_ROOT/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI
+
+
+ src/Full_Demo/Sample-CLI-commands.c
+ 1
+ FREERTOS_ROOT/FreeRTOS-Plus/Demo/Common/FreeRTOS_Plus_CLI_Demos/Sample-CLI-commands.c
+
src/Full_Demo/Standard_Demo_Tasks2FREERTOS_ROOT/FreeRTOS/Demo/Common/Minimal
+
+ src/Full_Demo/UARTCommandConsole.c
+ 1
+ FREERTOS_ROOT/FreeRTOS-Plus/Demo/Common/FreeRTOS_Plus_CLI_Demos/UARTCommandConsole.c
+
src/Full_Demo/Standard_Demo_Tasks/include2
@@ -42,6 +57,78 @@
+
+ 1444470719732
+
+ 6
+
+ org.eclipse.ui.ide.multiFilter
+ 1.0-name-matches-false-false-RTOSDemo.ewd
+
+
+
+ 1444470719742
+
+ 6
+
+ org.eclipse.ui.ide.multiFilter
+ 1.0-name-matches-false-false-RTOSDemo.eww
+
+
+
+ 1444470719742
+
+ 6
+
+ org.eclipse.ui.ide.multiFilter
+ 1.0-name-matches-false-false-RTOSDemo.ewp
+
+
+
+ 1444470719757
+
+ 6
+
+ org.eclipse.ui.ide.multiFilter
+ 1.0-name-matches-false-false-RTOSDemo.ewt
+
+
+
+ 1444470719769
+
+ 6
+
+ org.eclipse.ui.ide.multiFilter
+ 1.0-name-matches-false-false-RTOSDemo.dep
+
+
+
+ 1444470719775
+
+ 10
+
+ org.eclipse.ui.ide.multiFilter
+ 1.0-name-matches-false-false-Debug
+
+
+
+ 1444470719782
+
+ 10
+
+ org.eclipse.ui.ide.multiFilter
+ 1.0-name-matches-false-false-setting
+
+
+
+ 1444470719788
+
+ 10
+
+ org.eclipse.ui.ide.multiFilter
+ 1.0-name-matches-false-false-settings
+
+ 1442133034715System
diff --git a/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/.settings/language.settings.xml b/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/.settings/language.settings.xml
index 546c39b1e..e9eeb925c 100644
--- a/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/.settings/language.settings.xml
+++ b/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/.settings/language.settings.xml
@@ -3,7 +3,7 @@
-
+
diff --git a/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/RTOSDemo HardwareDebug.launch b/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/RTOSDemo HardwareDebug.launch
index f652b92fd..246f801ae 100644
--- a/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/RTOSDemo HardwareDebug.launch
+++ b/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/RTOSDemo HardwareDebug.launch
@@ -13,7 +13,7 @@
-
+
@@ -46,7 +46,7 @@
-
+
@@ -54,10 +54,10 @@
-
-
+
+
-
+
@@ -69,11 +69,11 @@
-
+
-
+
diff --git a/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/RTOSDemo.ewp b/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/RTOSDemo.ewp
index d10d23c8d..a8212ec67 100644
--- a/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/RTOSDemo.ewp
+++ b/FreeRTOS/Demo/CORTEX_R4F_RZ_T_GCC_IAR/RTOSDemo.ewp
@@ -233,7 +233,7 @@
-
+
+
diff --git a/FreeRTOS/Demo/RX100_RX113-RSK_Renesas_e2studio/src/Full_Demo/main_full.c b/FreeRTOS/Demo/RX100_RX113-RSK_Renesas_e2studio/src/Full_Demo/main_full.c
index ce18a1789..5b3e7eced 100644
--- a/FreeRTOS/Demo/RX100_RX113-RSK_Renesas_e2studio/src/Full_Demo/main_full.c
+++ b/FreeRTOS/Demo/RX100_RX113-RSK_Renesas_e2studio/src/Full_Demo/main_full.c
@@ -520,7 +520,7 @@ static void prvRegTest1Implementation( void )
MOV.L #14, R14
MOV.L #15, R15
- ; Loop, checking each itteration that each register still contains the
+ ; Loop, checking each iteration that each register still contains the
; expected value.
TestLoop1:
@@ -607,7 +607,7 @@ static void prvRegTest2Implementation( void )
MOV.L #140, R14
MOV.L #150, R15
- ; Loop, checking on each itteration that each register still contains the
+ ; Loop, checking on each iteration that each register still contains the
; expected value.
TestLoop2:
diff --git a/FreeRTOS/Demo/RX200_RX210-RSK_Renesas/RTOSDemo/main-full.c b/FreeRTOS/Demo/RX200_RX210-RSK_Renesas/RTOSDemo/main-full.c
index d43c1809c..3650e12e5 100644
--- a/FreeRTOS/Demo/RX200_RX210-RSK_Renesas/RTOSDemo/main-full.c
+++ b/FreeRTOS/Demo/RX200_RX210-RSK_Renesas/RTOSDemo/main-full.c
@@ -524,7 +524,7 @@ static void prvRegTest1Implementation( void )
MOV.L #14, R14
MOV.L #15, R15
- ; Loop, checking each itteration that each register still contains the
+ ; Loop, checking each iteration that each register still contains the
; expected value.
TestLoop1:
@@ -611,7 +611,7 @@ static void prvRegTest2Implementation( void )
MOV.L #140, R14
MOV.L #150, R15
- ; Loop, checking on each itteration that each register still contains the
+ ; Loop, checking on each iteration that each register still contains the
; expected value.
TestLoop2:
diff --git a/FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Full_Demo/RegTest_GCC.S b/FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Full_Demo/RegTest_GCC.S
index 0d8d1e4cf..eca1d5ca7 100644
--- a/FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Full_Demo/RegTest_GCC.S
+++ b/FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Full_Demo/RegTest_GCC.S
@@ -92,7 +92,7 @@ _vRegTest1Implementation:
MOV.L #14, R14
MOV.L #15, R15
- ; Loop, checking each itteration that each register still contains the
+ ; Loop, checking each iteration that each register still contains the
; expected value.
TestLoop1:
@@ -177,7 +177,7 @@ _vRegTest2Implementation:
MOV.L #140, R14
MOV.L #150, R15
- ; Loop, checking on each itteration that each register still contains the
+ ; Loop, checking on each iteration that each register still contains the
; expected value.
TestLoop2:
diff --git a/FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Full_Demo/RegTest_IAR.s b/FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Full_Demo/RegTest_IAR.s
index af07b4bf0..b61ecb167 100644
--- a/FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Full_Demo/RegTest_IAR.s
+++ b/FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Full_Demo/RegTest_IAR.s
@@ -106,7 +106,7 @@ _vRegTest1Implementation:
MVTACLO R2, A0
MVTACHI R3, A1
MVTACLO R4, A1
- /* Loop, checking each itteration that each register still contains the
+ /* Loop, checking each iteration that each register still contains the
expected value. */
TestLoop1:
@@ -223,7 +223,7 @@ _vRegTest2Implementation:
MVTACHI R3, A1
MVTACLO R4, A1
- /* Loop, checking each itteration that each register still contains the
+ /* Loop, checking each iteration that each register still contains the
expected value. */
TestLoop2:
diff --git a/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Full_Demo/main_full.c b/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Full_Demo/main_full.c
index 3a879d48e..ef637c35a 100644
--- a/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Full_Demo/main_full.c
+++ b/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Full_Demo/main_full.c
@@ -522,7 +522,7 @@ static void prvRegTest1Implementation( void )
MOV.L #14, R14
MOV.L #15, R15
- ; Loop, checking each itteration that each register still contains the
+ ; Loop, checking each iteration that each register still contains the
; expected value.
TestLoop1:
@@ -609,7 +609,7 @@ static void prvRegTest2Implementation( void )
MOV.L #140, R14
MOV.L #150, R15
- ; Loop, checking on each itteration that each register still contains the
+ ; Loop, checking on each iteration that each register still contains the
; expected value.
TestLoop2:
diff --git a/FreeRTOS/Demo/RX600_RX62N-RDK_GNURX/RTOSDemo/main-full.c b/FreeRTOS/Demo/RX600_RX62N-RDK_GNURX/RTOSDemo/main-full.c
index 08ff29807..b0f506d97 100644
--- a/FreeRTOS/Demo/RX600_RX62N-RDK_GNURX/RTOSDemo/main-full.c
+++ b/FreeRTOS/Demo/RX600_RX62N-RDK_GNURX/RTOSDemo/main-full.c
@@ -539,7 +539,7 @@ static void prvRegTest1Implementation( void )
"MOV #14, R14 \n" \
"MOV #15, R15 \n" \
- /* Loop, checking each itteration that each register still contains the
+ /* Loop, checking each iteration that each register still contains the
expected value. */
"TestLoop1: \n" \
@@ -628,7 +628,7 @@ static void prvRegTest2Implementation( void )
"MOV #140H, R14 \n" \
"MOV #150H, R15 \n" \
- /* Loop, checking each itteration that each register still contains the
+ /* Loop, checking each iteration that each register still contains the
expected value. */
"TestLoop2: \n" \
diff --git a/FreeRTOS/Demo/RX600_RX62N-RDK_IAR/RegTest.s b/FreeRTOS/Demo/RX600_RX62N-RDK_IAR/RegTest.s
index 4f9a3eea9..bc0eb478d 100644
--- a/FreeRTOS/Demo/RX600_RX62N-RDK_IAR/RegTest.s
+++ b/FreeRTOS/Demo/RX600_RX62N-RDK_IAR/RegTest.s
@@ -95,7 +95,7 @@ _prvRegTest1Implementation:
MOV #14, R14
MOV #15, R15
- /* Loop, checking each itteration that each register still contains the
+ /* Loop, checking each iteration that each register still contains the
expected value. */
TestLoop1:
@@ -180,7 +180,7 @@ _prvRegTest2Implementation:
MOV #140H, R14
MOV #150H, R15
- /* Loop, checking each itteration that each register still contains the
+ /* Loop, checking each iteration that each register still contains the
expected value. */
TestLoop2:
diff --git a/FreeRTOS/Demo/RX600_RX62N-RDK_Renesas/RTOSDemo/main-full.c b/FreeRTOS/Demo/RX600_RX62N-RDK_Renesas/RTOSDemo/main-full.c
index 5a6d5e86f..219a52da9 100644
--- a/FreeRTOS/Demo/RX600_RX62N-RDK_Renesas/RTOSDemo/main-full.c
+++ b/FreeRTOS/Demo/RX600_RX62N-RDK_Renesas/RTOSDemo/main-full.c
@@ -525,7 +525,7 @@ static void prvRegTest1Implementation( void )
MOV.L #14, R14
MOV.L #15, R15
- ; Loop, checking each itteration that each register still contains the
+ ; Loop, checking each iteration that each register still contains the
; expected value.
TestLoop1:
@@ -612,7 +612,7 @@ static void prvRegTest2Implementation( void )
MOV.L #140, R14
MOV.L #150, R15
- ; Loop, checking on each itteration that each register still contains the
+ ; Loop, checking on each iteration that each register still contains the
; expected value.
TestLoop2:
diff --git a/FreeRTOS/Demo/RX600_RX62N-RSK_GNURX/RTOSDemo/main-full.c b/FreeRTOS/Demo/RX600_RX62N-RSK_GNURX/RTOSDemo/main-full.c
index 08ff29807..b0f506d97 100644
--- a/FreeRTOS/Demo/RX600_RX62N-RSK_GNURX/RTOSDemo/main-full.c
+++ b/FreeRTOS/Demo/RX600_RX62N-RSK_GNURX/RTOSDemo/main-full.c
@@ -539,7 +539,7 @@ static void prvRegTest1Implementation( void )
"MOV #14, R14 \n" \
"MOV #15, R15 \n" \
- /* Loop, checking each itteration that each register still contains the
+ /* Loop, checking each iteration that each register still contains the
expected value. */
"TestLoop1: \n" \
@@ -628,7 +628,7 @@ static void prvRegTest2Implementation( void )
"MOV #140H, R14 \n" \
"MOV #150H, R15 \n" \
- /* Loop, checking each itteration that each register still contains the
+ /* Loop, checking each iteration that each register still contains the
expected value. */
"TestLoop2: \n" \
diff --git a/FreeRTOS/Demo/RX600_RX62N-RSK_IAR/RegTest.s b/FreeRTOS/Demo/RX600_RX62N-RSK_IAR/RegTest.s
index 4f9a3eea9..bc0eb478d 100644
--- a/FreeRTOS/Demo/RX600_RX62N-RSK_IAR/RegTest.s
+++ b/FreeRTOS/Demo/RX600_RX62N-RSK_IAR/RegTest.s
@@ -95,7 +95,7 @@ _prvRegTest1Implementation:
MOV #14, R14
MOV #15, R15
- /* Loop, checking each itteration that each register still contains the
+ /* Loop, checking each iteration that each register still contains the
expected value. */
TestLoop1:
@@ -180,7 +180,7 @@ _prvRegTest2Implementation:
MOV #140H, R14
MOV #150H, R15
- /* Loop, checking each itteration that each register still contains the
+ /* Loop, checking each iteration that each register still contains the
expected value. */
TestLoop2:
diff --git a/FreeRTOS/Demo/RX600_RX62N-RSK_Renesas/RTOSDemo/main-full.c b/FreeRTOS/Demo/RX600_RX62N-RSK_Renesas/RTOSDemo/main-full.c
index 9232b7425..29c2f9ca3 100644
--- a/FreeRTOS/Demo/RX600_RX62N-RSK_Renesas/RTOSDemo/main-full.c
+++ b/FreeRTOS/Demo/RX600_RX62N-RSK_Renesas/RTOSDemo/main-full.c
@@ -525,7 +525,7 @@ static void prvRegTest1Implementation( void )
MOV.L #14, R14
MOV.L #15, R15
- ; Loop, checking each itteration that each register still contains the
+ ; Loop, checking each iteration that each register still contains the
; expected value.
TestLoop1:
@@ -612,7 +612,7 @@ static void prvRegTest2Implementation( void )
MOV.L #140, R14
MOV.L #150, R15
- ; Loop, checking on each itteration that each register still contains the
+ ; Loop, checking on each iteration that each register still contains the
; expected value.
TestLoop2:
diff --git a/FreeRTOS/Demo/RX600_RX630-RSK_Renesas/RTOSDemo/main-full.c b/FreeRTOS/Demo/RX600_RX630-RSK_Renesas/RTOSDemo/main-full.c
index 73c01e630..8ecb8a268 100644
--- a/FreeRTOS/Demo/RX600_RX630-RSK_Renesas/RTOSDemo/main-full.c
+++ b/FreeRTOS/Demo/RX600_RX630-RSK_Renesas/RTOSDemo/main-full.c
@@ -519,7 +519,7 @@ static void prvRegTest1Implementation( void )
MOV.L #14, R14
MOV.L #15, R15
- ; Loop, checking each itteration that each register still contains the
+ ; Loop, checking each iteration that each register still contains the
; expected value.
TestLoop1:
@@ -606,7 +606,7 @@ static void prvRegTest2Implementation( void )
MOV.L #140, R14
MOV.L #150, R15
- ; Loop, checking on each itteration that each register still contains the
+ ; Loop, checking on each iteration that each register still contains the
; expected value.
TestLoop2:
diff --git a/FreeRTOS/Demo/RX600_RX63N-RDK_Renesas/RTOSDemo/main-full.c b/FreeRTOS/Demo/RX600_RX63N-RDK_Renesas/RTOSDemo/main-full.c
index f5db0e821..ea04c06f6 100644
--- a/FreeRTOS/Demo/RX600_RX63N-RDK_Renesas/RTOSDemo/main-full.c
+++ b/FreeRTOS/Demo/RX600_RX63N-RDK_Renesas/RTOSDemo/main-full.c
@@ -557,7 +557,7 @@ static void prvRegTest1Implementation( void )
MOV.L #14, R14
MOV.L #15, R15
- ; Loop, checking each itteration that each register still contains the
+ ; Loop, checking each iteration that each register still contains the
; expected value.
TestLoop1:
@@ -644,7 +644,7 @@ static void prvRegTest2Implementation( void )
MOV.L #140, R14
MOV.L #150, R15
- ; Loop, checking on each itteration that each register still contains the
+ ; Loop, checking on each iteration that each register still contains the
; expected value.
TestLoop2:
diff --git a/FreeRTOS/Demo/RX600_RX63N-RSK_Renesas/RTOSDemo/main-full.c b/FreeRTOS/Demo/RX600_RX63N-RSK_Renesas/RTOSDemo/main-full.c
index be5848d7d..55b775cd1 100644
--- a/FreeRTOS/Demo/RX600_RX63N-RSK_Renesas/RTOSDemo/main-full.c
+++ b/FreeRTOS/Demo/RX600_RX63N-RSK_Renesas/RTOSDemo/main-full.c
@@ -565,7 +565,7 @@ static void prvRegTest1Implementation( void )
MOV.L #14, R14
MOV.L #15, R15
- ; Loop, checking each itteration that each register still contains the
+ ; Loop, checking each iteration that each register still contains the
; expected value.
TestLoop1:
@@ -652,7 +652,7 @@ static void prvRegTest2Implementation( void )
MOV.L #140, R14
MOV.L #150, R15
- ; Loop, checking on each itteration that each register still contains the
+ ; Loop, checking on each iteration that each register still contains the
; expected value.
TestLoop2:
diff --git a/FreeRTOS/Demo/RX600_RX64M_RSK_GCC_e2studio/src/RegTest.S b/FreeRTOS/Demo/RX600_RX64M_RSK_GCC_e2studio/src/RegTest.S
index 310079738..952ddee8c 100644
--- a/FreeRTOS/Demo/RX600_RX64M_RSK_GCC_e2studio/src/RegTest.S
+++ b/FreeRTOS/Demo/RX600_RX64M_RSK_GCC_e2studio/src/RegTest.S
@@ -104,7 +104,7 @@ _vRegTest1Implementation:
MVTACHI R3, A1
MVTACLO R4, A1
- ;/* Loop, checking each itteration that each register still contains the
+ ;/* Loop, checking each iteration that each register still contains the
;expected value. */
TestLoop1:
@@ -221,7 +221,7 @@ _vRegTest2Implementation:
MVTACHI R3, A1
MVTACLO R4, A1
- ;/* Loop, checking each itteration that each register still contains the
+ ;/* Loop, checking each iteration that each register still contains the
;expected value. */
TestLoop2:
diff --git a/FreeRTOS/Demo/RX600_RX64M_RSK_Renesas_e2studio/Source/RegTest.src b/FreeRTOS/Demo/RX600_RX64M_RSK_Renesas_e2studio/Source/RegTest.src
index 60eed56b1..3caedc08f 100644
--- a/FreeRTOS/Demo/RX600_RX64M_RSK_Renesas_e2studio/Source/RegTest.src
+++ b/FreeRTOS/Demo/RX600_RX64M_RSK_Renesas_e2studio/Source/RegTest.src
@@ -104,7 +104,7 @@ _vRegTest1Implementation:
MVTACHI R3, A1
MVTACLO R4, A1
- ;/* Loop, checking each itteration that each register still contains the
+ ;/* Loop, checking each iteration that each register still contains the
;expected value. */
TestLoop1:
@@ -221,7 +221,7 @@ _vRegTest2Implementation:
MVTACHI R3, A1
MVTACLO R4, A1
- ;/* Loop, checking each itteration that each register still contains the
+ ;/* Loop, checking each iteration that each register still contains the
;expected value. */
TestLoop2:
diff --git a/FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Full_Demo/RegTest_GCC.S b/FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Full_Demo/RegTest_GCC.S
index 310079738..952ddee8c 100644
--- a/FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Full_Demo/RegTest_GCC.S
+++ b/FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Full_Demo/RegTest_GCC.S
@@ -104,7 +104,7 @@ _vRegTest1Implementation:
MVTACHI R3, A1
MVTACLO R4, A1
- ;/* Loop, checking each itteration that each register still contains the
+ ;/* Loop, checking each iteration that each register still contains the
;expected value. */
TestLoop1:
@@ -221,7 +221,7 @@ _vRegTest2Implementation:
MVTACHI R3, A1
MVTACLO R4, A1
- ;/* Loop, checking each itteration that each register still contains the
+ ;/* Loop, checking each iteration that each register still contains the
;expected value. */
TestLoop2:
diff --git a/FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Full_Demo/RegTest_IAR.s b/FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Full_Demo/RegTest_IAR.s
index af07b4bf0..b61ecb167 100644
--- a/FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Full_Demo/RegTest_IAR.s
+++ b/FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Full_Demo/RegTest_IAR.s
@@ -106,7 +106,7 @@ _vRegTest1Implementation:
MVTACLO R2, A0
MVTACHI R3, A1
MVTACLO R4, A1
- /* Loop, checking each itteration that each register still contains the
+ /* Loop, checking each iteration that each register still contains the
expected value. */
TestLoop1:
@@ -223,7 +223,7 @@ _vRegTest2Implementation:
MVTACHI R3, A1
MVTACLO R4, A1
- /* Loop, checking each itteration that each register still contains the
+ /* Loop, checking each iteration that each register still contains the
expected value. */
TestLoop2:
diff --git a/FreeRTOS/Demo/RX700_RX71M_RSK_Renesas_e2studio/src/Full_Demo/main_full.c b/FreeRTOS/Demo/RX700_RX71M_RSK_Renesas_e2studio/src/Full_Demo/main_full.c
index 5aa053cdf..50d2cc81c 100644
--- a/FreeRTOS/Demo/RX700_RX71M_RSK_Renesas_e2studio/src/Full_Demo/main_full.c
+++ b/FreeRTOS/Demo/RX700_RX71M_RSK_Renesas_e2studio/src/Full_Demo/main_full.c
@@ -524,7 +524,7 @@ static void prvRegTest1Implementation( void )
MOV.L #14, R14
MOV.L #15, R15
- ; Loop, checking each itteration that each register still contains the
+ ; Loop, checking each iteration that each register still contains the
; expected value.
TestLoop1:
@@ -611,7 +611,7 @@ static void prvRegTest2Implementation( void )
MOV.L #140, R14
MOV.L #150, R15
- ; Loop, checking on each itteration that each register still contains the
+ ; Loop, checking on each iteration that each register still contains the
; expected value.
TestLoop2: