]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS-Plus/Demo/FreeRTOS_Plus_UDP_and_CLI_Windows_Simulator/main.c
Fix typo in comment that got copied into multiple main.c file.s
[freertos] / FreeRTOS-Plus / Demo / FreeRTOS_Plus_UDP_and_CLI_Windows_Simulator / main.c
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