]> git.sur5r.net Git - freertos/commitdiff
Fix a few typos and remove the "register" keyword.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 16 Aug 2013 13:31:54 +0000 (13:31 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 16 Aug 2013 13:31:54 +0000 (13:31 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@2004 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

FreeRTOS/Demo/CORTEX_EFMG890F128_IAR/main.c
FreeRTOS/Demo/CORTEX_SmartFusion2_M2S050_SoftConsole/RTOSDemo/RunTimeStatsTimer.c
FreeRTOS/Source/portable/IAR/ARM_CM4F/port.c
FreeRTOS/Source/portable/RVDS/ARM_CM3/port.c
FreeRTOS/Source/portable/RVDS/ARM_CM4F/port.c
FreeRTOS/Source/tasks.c

index decaa812f8c86904b607c27e582cf6ee74e6338b..be02953331dadf5bd657551593b2d1dde8e4653b 100644 (file)
@@ -161,7 +161,7 @@ int main( void )
        xTaskCreate( vLCDTask, "LCD", configMINIMAL_STACK_SIZE, NULL, mainLCD_TASK_PRIORITY, NULL );\r
 \r
        /* Create a task that writes to LEDs 8 to 15. */\r
-       xTaskCreate( vLEDTask, "LCDTask", configMINIMAL_STACK_SIZE, NULL, mainLED_TASK_PRIORITY, NULL );\r
+       xTaskCreate( vLEDTask, "LEDTask", configMINIMAL_STACK_SIZE, NULL, mainLED_TASK_PRIORITY, NULL );\r
 \r
        /* Create some of the standard demo tasks.  These just test the port and\r
        demonstrate how the FreeRTOS API can be used.  They do not provide any\r
index 49f8cf889ad1b9deb88c76ac68fededd607ff009..faa3d43477f353dd6746010307ab99f5201efe79 100644 (file)
@@ -71,9 +71,9 @@ more information on run time stats:
 http://www.freertos.org/rtos-run-time-stats.html */\r
 \r
 /* Addresses of registers in the Cortex-M debug hardware. */\r
-#define rtsDWT_CYCCNT                  ( *( ( unsigned long * ) 0xE0001004 ) )\r
-#define rtsDWT_CONTROL                         ( *( ( unsigned long * ) 0xE0001000 ) )\r
-#define rtsSCB_DEMCR                   ( *( ( unsigned long * ) 0xE000EDFC ) )\r
+#define rtsDWT_CYCCNT                  ( *( ( volatile unsigned long * ) 0xE0001004 ) )\r
+#define rtsDWT_CONTROL                         ( *( ( volatile unsigned long * ) 0xE0001000 ) )\r
+#define rtsSCB_DEMCR                   ( *( ( volatile unsigned long * ) 0xE000EDFC ) )\r
 #define rtsTRCENA_BIT                  ( 0x01000000UL )\r
 #define rtsCOUNTER_ENABLE_BIT  ( 0x01UL )\r
 \r
index 7cf1e00d1b53a304b631e95bd8757b1ddab6e809..3cdd25b3048a49e5467c754993101fb2f27de034 100644 (file)
 #define portNVIC_PENDSV_PRI                                    ( ( ( unsigned long ) configKERNEL_INTERRUPT_PRIORITY ) << 16UL )\r
 #define portNVIC_SYSTICK_PRI                           ( ( ( unsigned long ) configKERNEL_INTERRUPT_PRIORITY ) << 24UL )\r
 \r
-/* Constants required to check the validity of an interrupt prority. */\r
+/* Constants required to check the validity of an interrupt priority. */\r
 #define portFIRST_USER_INTERRUPT_NUMBER                ( 16 )\r
 #define portNVIC_IP_REGISTERS_OFFSET_16        ( 0xE000E3F0 )\r
 #define portAIRCR_REG                                          ( * ( ( volatile unsigned long * ) 0xE000ED0C ) )\r
index 7877cd92858430607cdadb9792330a25d9070055..e37830a5558fc488c78b2d8ef4bfaaa035de6dd1 100644 (file)
@@ -107,7 +107,7 @@ is defined. */
 #define portNVIC_PENDSV_PRI                                    ( ( ( unsigned long ) configKERNEL_INTERRUPT_PRIORITY ) << 16UL )\r
 #define portNVIC_SYSTICK_PRI                           ( ( ( unsigned long ) configKERNEL_INTERRUPT_PRIORITY ) << 24UL )\r
 \r
-/* Constants required to check the validity of an interrupt prority. */\r
+/* Constants required to check the validity of an interrupt priority. */\r
 #define portFIRST_USER_INTERRUPT_NUMBER                ( 16 )\r
 #define portNVIC_IP_REGISTERS_OFFSET_16        ( 0xE000E3F0 )\r
 #define portAIRCR_REG                                          ( * ( ( volatile unsigned long * ) 0xE000ED0C ) )\r
index 8abc48bafccab0771c996914afa45639807e892d..eb536a209692a130ea23f1f5a98e005282fb738e 100644 (file)
@@ -107,7 +107,7 @@ is defined. */
 #define portNVIC_PENDSV_PRI                                    ( ( ( unsigned long ) configKERNEL_INTERRUPT_PRIORITY ) << 16UL )\r
 #define portNVIC_SYSTICK_PRI                           ( ( ( unsigned long ) configKERNEL_INTERRUPT_PRIORITY ) << 24UL )\r
 \r
-/* Constants required to check the validity of an interrupt prority. */\r
+/* Constants required to check the validity of an interrupt priority. */\r
 #define portFIRST_USER_INTERRUPT_NUMBER                ( 16 )\r
 #define portNVIC_IP_REGISTERS_OFFSET_16        ( 0xE000E3F0 )\r
 #define portAIRCR_REG                                          ( * ( ( volatile unsigned long * ) 0xE000ED0C ) )\r
index 7406d673c0d44c26eae8acd38d37830eb0bda407..417ccd42a7d2c2578c2f2ce74ce9a2c313350bdd 100644 (file)
@@ -2529,7 +2529,7 @@ tskTCB *pxNewTCB;
 \r
        static unsigned short prvTaskCheckFreeStackSpace( const unsigned char * pucStackByte )\r
        {\r
-       register unsigned short usCount = 0U;\r
+       unsigned short usCount = 0U;\r
 \r
                while( *pucStackByte == tskSTACK_FILL_BYTE )\r
                {\r