2249 views|1 replies

3836

Posts

19

Resources
The OP
 

Example: Two ways to write MSP430F5438 interrupt functions [Copy link]

以USCI0为例,说明该两种不同方法。

1.switch-case方法

#pragma vector=USCI_A0_VECTOR
__interrupt void USCI_A0_ISR(void)
{
    switch(__even_in_range(UCA0IV,4))
    {
    case 0:
            break;
    case 2:                       // 接收中断
            // do something here
            break;
    case 4:                       // 发送中断
            // do something here
            break;               
    default:
            break;
    }
}

2.查询标志为方法

#pragma vector=USCI_A0_VECTOR
__interrupt void USCI_A0_ISR(void)
{
  // 接收中断
  if( ( UCA0IFG & UCRXIFG ) != 0 )
  {
  }
  // 发送中断
  if( ( UCA0IFG & UCTXIFG ) != 0 )
  {
  }
}


总结

TI的官方例程都是用switch-case方法,总之两种方法的最终效果都一样。

This post is from Microcontroller MCU

Latest reply

Very good, with good reference significance  Details Published on 2018-12-25 16:50
 

6366

Posts

4936

Resources
2
 
Very good, with good reference significance
This post is from Microcontroller MCU
 
 

Guess Your Favourite
Just looking around
Find a datasheet?

EEWorld Datasheet Technical Support

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号
快速回复 返回顶部 Return list