]> git.sur5r.net Git - freertos/commitdiff
Rename the UART ISR in the MSP430X/IAR demo to match the UART actually being used.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Wed, 12 Jan 2011 09:56:56 +0000 (09:56 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Wed, 12 Jan 2011 09:56:56 +0000 (09:56 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1236 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/MSP430X_MSP430F5438_IAR/serial.c

index 89ca091bd43ebd3c789fd82b43452459cebbf8f6..4c6e3b189ffc2d2d741ba4d0fc2b28bb6aaf17da 100644 (file)
@@ -55,7 +55,7 @@
 /* BASIC INTERRUPT DRIVEN SERIAL PORT DRIVER.\r
  *\r
  * This is not a proper UART driver.  It only supports one port, uses loopback\r
- * mode, and is used to test interrupts that use the FreeRTOS API as part of \r
+ * mode, and is used to test interrupts that use the FreeRTOS API as part of\r
  * a wider test suite.  Nor is it intended to show an efficient implementation\r
  * of a UART interrupt service routine as queues are used to pass individual\r
  * characters one at a time!\r
@@ -158,7 +158,7 @@ signed portBASE_TYPE xReturn;
 /*-----------------------------------------------------------*/\r
 \r
 #pragma vector=USCI_A1_VECTOR\r
-static __interrupt void prvUSCI_A0_ISR( void )\r
+static __interrupt void prvUSCI_A1_ISR( void )\r
 {\r
 signed portCHAR cChar;\r
 portBASE_TYPE xTaskWoken = pdFALSE;\r
@@ -196,7 +196,7 @@ portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;
        has a priority equal to or above the task that this interrupt interrupted,\r
        then lHigherPriorityTaskWoken will have been set to pdTRUE internally within\r
        xQueuesendFromISR(), and portEND_SWITCHING_ISR() will ensure that this\r
-       interrupt returns directly to the higher priority unblocked task. \r
+       interrupt returns directly to the higher priority unblocked task.\r
        \r
        THIS MUST BE THE LAST THING DONE IN THE ISR. */ \r
        portYIELD_FROM_ISR( xHigherPriorityTaskWoken );\r