]> git.sur5r.net Git - freertos/commitdiff
Fix typo in comment that got copied into multiple main.c file.s
authorrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 29 May 2017 22:06:54 +0000 (22:06 +0000)
committerrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 29 May 2017 22:06:54 +0000 (22:06 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@2508 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

FreeRTOS-Plus/Demo/FreeRTOS_Plus_FAT_SL_and_CLI_Windows_Simulator/main.c
FreeRTOS-Plus/Demo/FreeRTOS_Plus_Reliance_Edge_and_CLI_Windows_Simulator/main.c
FreeRTOS-Plus/Demo/FreeRTOS_Plus_UDP_and_CLI_Windows_Simulator/main.c
FreeRTOS-Plus/Demo/FreeRTOS_Plus_WolfSSL_Windows_Simulator/main.c

index 24e7363feefed21c66618429f6a5984501ac680b..35fb8aa8dd1193cdfc33719d70d606544b6f16e7 100644 (file)
@@ -164,7 +164,7 @@ const uint32_t ulLongTime_ms = 250UL;
        line will never be reached.  If the following line does execute, then\r
        there was insufficient FreeRTOS heap memory available for the idle and/or\r
        timer tasks     to be created.  See the memory management section on the\r
-       FreeRTOS web site for more details (this is standard text that is not not\r
+       FreeRTOS web site for more details (this is standard text that is not\r
        really applicable to the Win32 simulator port). */\r
        for( ;; )\r
        {\r
index 9ad2f8221ff93692246a7cecb8e0a317c1934d41..c86b4a0382b1e49c7e5e169819030c78513ee358 100644 (file)
@@ -148,7 +148,7 @@ const uint32_t ulLongTime_ms = 250UL;
        line will never be reached.  If the following line does execute, then\r
        there was insufficient FreeRTOS heap memory available for the idle and/or\r
        timer tasks     to be created.  See the memory management section on the\r
-       FreeRTOS web site for more details (this is standard text that is not not\r
+       FreeRTOS web site for more details (this is standard text that is not\r
        really applicable to the Win32 simulator port). */\r
        for( ;; )\r
        {\r
index 21ab35513d9569fb2c0c3159715694d1d644f1e8..2924e4c3398984c7036a720f16a650b1db5901f8 100644 (file)
 #define mainECHO_CLIENT_TASK_STACK_SIZE                        ( configMINIMAL_STACK_SIZE * 2 )\r
 #define mainECHO_CLIENT_TASK_PRIORITY                          ( tskIDLE_PRIORITY + 1 )\r
 \r
-/* Set the following constants to 1 or 0 to define which tasks to include and \r
+/* Set the following constants to 1 or 0 to define which tasks to include and\r
 exclude. */\r
 #define mainCREATE_UDP_CLI_TASKS                                       1\r
 #define mainCREATE_SIMPLE_UDP_CLIENT_SERVER_TASKS      0\r
@@ -154,7 +154,7 @@ int main( void )
 {\r
 const uint32_t ulLongTime_ms = 250UL;\r
 \r
-       /* Create a mutex that is used to guard against the console being accessed \r
+       /* Create a mutex that is used to guard against the console being accessed\r
        by more than one task simultaniously. */\r
        xConsoleMutex = xSemaphoreCreateMutex();\r
 \r
@@ -175,7 +175,7 @@ const uint32_t ulLongTime_ms = 250UL;
        line will never be reached.  If the following line does execute, then\r
        there was insufficient FreeRTOS heap memory available for the idle and/or\r
        timer tasks     to be created.  See the memory management section on the\r
-       FreeRTOS web site for more details (this is standard text that is not not\r
+       FreeRTOS web site for more details (this is standard text that is not\r
        really applicable to the Win32 simulator port). */\r
        for( ;; )\r
        {\r
@@ -335,11 +335,11 @@ void vApplicationMallocFailedHook( void )
        function that will get called if a call to pvPortMalloc() fails.\r
        pvPortMalloc() is called internally by the kernel whenever a task, queue,\r
        timer or semaphore is created.  It is also called by various parts of the\r
-       demo application.  If heap_1.c, heap_2.c or heap_4.c are used, then the \r
-       size of the heap available to pvPortMalloc() is defined by \r
-       configTOTAL_HEAP_SIZE in FreeRTOSConfig.h, and the xPortGetFreeHeapSize() \r
-       API function can be used to query the size of free heap space that remains \r
-       (although it does not provide information on how the remaining heap might \r
+       demo application.  If heap_1.c, heap_2.c or heap_4.c are used, then the\r
+       size of the heap available to pvPortMalloc() is defined by\r
+       configTOTAL_HEAP_SIZE in FreeRTOSConfig.h, and the xPortGetFreeHeapSize()\r
+       API function can be used to query the size of free heap space that remains\r
+       (although it does not provide information on how the remaining heap might\r
        be fragmented). */\r
        taskDISABLE_INTERRUPTS();\r
        for( ;; );\r
index 22a35de89d7a595a7b194893b64389cc53576161..36f7cdef868c5d12e54180bd83e9ede3423179cb 100644 (file)
@@ -111,7 +111,7 @@ const uint32_t ulLongTime_ms = 250UL;
        line will never be reached.  If the following line does execute, then\r
        there was insufficient FreeRTOS heap memory available for the idle and/or\r
        timer tasks     to be created.  See the memory management section on the\r
-       FreeRTOS web site for more details (this is standard text that is not not \r
+       FreeRTOS web site for more details (this is standard text that is not\r
        really applicable to the Win32 simulator port). */\r
        for( ;; )\r
        {\r
@@ -125,7 +125,7 @@ void vApplicationIdleHook( void )
 const unsigned long ulMSToSleep = 5;\r
 \r
        /* This function is called on each cycle of the idle task if\r
-       configUSE_IDLE_HOOK is set to 1 in FreeRTOSConfig.h.  Sleep to reduce CPU \r
+       configUSE_IDLE_HOOK is set to 1 in FreeRTOSConfig.h.  Sleep to reduce CPU\r
        load. */\r
        Sleep( ulMSToSleep );\r
 }\r