mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Update comments only in the MSP430X IAR main.c and serial.c files.
This commit is contained in:
parent
c85523f870
commit
eb16629f11
|
@ -239,10 +239,10 @@ typedef struct
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/* The linker script tests the FreeRTOS ports use of 20bit addresses by
|
/* The linker script can be used to test the FreeRTOS ports use of 20bit
|
||||||
locating all code in high memory. The following pragma ensures that main
|
addresses by locating all code in high memory. The following pragma ensures
|
||||||
remains in low memory. The ISR_CODE segment is used for convenience as ISR
|
that main remains in low memory when that is done. The ISR_CODE segment is used
|
||||||
functions are always placed in low memory. */
|
for convenience as ISR functions are always placed in low memory. */
|
||||||
#pragma location="ISR_CODE"
|
#pragma location="ISR_CODE"
|
||||||
void main( void )
|
void main( void )
|
||||||
{
|
{
|
||||||
|
|
|
@ -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
|
#pragma vector=USCI_A1_VECTOR
|
||||||
static __interrupt void prvUSCI_A1_ISR( void )
|
static __interrupt void prvUSCI_A1_ISR( void )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue