mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-02 04:13:54 -04:00
Update comments only in the MSP430X IAR main.c and serial.c files.
This commit is contained in:
parent
c85523f870
commit
eb16629f11
2 changed files with 10 additions and 4 deletions
|
@ -157,6 +157,12 @@ signed portBASE_TYPE xReturn;
|
|||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
/* The implementation of this interrupt is provided to demonstrate the use
|
||||
of queues from inside an interrupt service routine. It is *not* intended to
|
||||
be an efficient interrupt implementation. A real application should make use
|
||||
of the DMA. Or, as a minimum, transmission and reception could use a simple
|
||||
RAM ring buffer, and synchronise with a task using a semaphore when a complete
|
||||
message has been received or transmitted. */
|
||||
#pragma vector=USCI_A1_VECTOR
|
||||
static __interrupt void prvUSCI_A1_ISR( void )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue