]> git.sur5r.net Git - freertos/commitdiff
Just change some of the comments in the STM32F100RB TrueStudio main.c file.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 5 Apr 2011 09:46:43 +0000 (09:46 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 5 Apr 2011 09:46:43 +0000 (09:46 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1343 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/CORTEX_STM32F100_Atollic/Simple_Demo_Source/main.c

index c6659e4de9cbd695ee0500103e4ce94fb440121c..53c9c9a0feeba57f08d4db38717bc6e64886378e 100644 (file)
@@ -64,9 +64,9 @@ functions.
 The idle hook function:\r
 The idle hook function queries the amount of FreeRTOS heap space that is\r
 remaining (see vApplicationIdleHook() defined in this file).  The demo \r
-application is configured use 7K or the available 8K of RAM as the FreeRTOS heap.\r
-Memory is only allocated from this heap during initialisation, and this demo \r
-only actually uses 1.6K bytes of the configured 7K available - leaving 5.4K \r
+application is configured to use 7K of the available 8K of RAM as the FreeRTOS \r
+heap.  Memory is only allocated from this heap during initialisation, and this \r
+demo only actually uses 1.6K bytes of the configured 7K available - leaving 5.4K \r
 bytes of heap space unallocated.\r
 \r
 The main() Function:\r
@@ -82,9 +82,9 @@ another 200 milliseconds.
 \r
 The Queue Receive Task:\r
 The queue receive task is implemented by the prvQueueReceiveTask() function\r
-in this file.  prvQueueReceiveTask() sits in a loop that causes repeatedly \r
-attempt to read data from the queue that was created within main().  When data \r
-is received, the task checks the value of the data, and if the value equals \r
+in this file.  prvQueueReceiveTask() sits in a loop where it repeatedly blocks \r
+on attempts to read data from the queue that was created within main().  When \r
+data is received, the task checks the value of the data, and if the value equals \r
 the expected 100, toggles the green LED.  The 'block time' parameter passed to \r
 the queue receive function specifies that the task should be held in the Blocked \r
 state indefinitely to wait for data to be available on the queue.  The queue \r