/* 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
/*-----------------------------------------------------------*/\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
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