]> git.sur5r.net Git - freertos/commitdiff
Update comments only in the MSP430X IAR main.c and serial.c files.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Thu, 24 Mar 2011 19:37:18 +0000 (19:37 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Thu, 24 Mar 2011 19:37:18 +0000 (19:37 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1323 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/MSP430X_MSP430F5438_IAR/main.c
Demo/MSP430X_MSP430F5438_IAR/serial.c

index 924d3f054b689ede373692b3f39384873ff8fd06..72cffe5effa2e9e8ed4c947380af4b944a5e5863 100644 (file)
@@ -239,10 +239,10 @@ typedef struct
 \r
 /*-----------------------------------------------------------*/\r
 \r
-/* The linker script tests the FreeRTOS ports use of 20bit addresses by\r
-locating all code in high memory.  The following pragma ensures that main\r
-remains in low memory.  The ISR_CODE segment is used for convenience as ISR\r
-functions are always placed in low memory. */\r
+/* The linker script can be used to test the FreeRTOS ports use of 20bit \r
+addresses by locating all code in high memory.  The following pragma ensures \r
+that main remains in low memory when that is done.  The ISR_CODE segment is used \r
+for convenience as ISR functions are always placed in low memory. */\r
 #pragma location="ISR_CODE"\r
 void main( void )\r
 {\r
index 9eb494142dcfc73b558d079a12ca0f6d06b82a52..181894833d8268328fc3c3391fe2bc3e37bb5bc4 100644 (file)
@@ -157,6 +157,12 @@ signed portBASE_TYPE xReturn;
 }\r
 /*-----------------------------------------------------------*/\r
 \r
+/* The implementation of this interrupt is provided to demonstrate the use\r
+of queues from inside an interrupt service routine.  It is *not* intended to\r
+be an efficient interrupt implementation.  A real application should make use\r
+of the DMA.  Or, as a minimum, transmission and reception could use a simple\r
+RAM ring buffer, and synchronise with a task using a semaphore when a complete\r
+message has been received or transmitted. */\r
 #pragma vector=USCI_A1_VECTOR\r
 static __interrupt void prvUSCI_A1_ISR( void )\r
 {\r