我在 TI 的示例代码中看到了以下 switch 案例,我想知道 switch 参数接收的第二个变量的含义是什么,
__interrupt void Timer_A(void)
{
switch (TAIV, 10) // Efficient switch-implementation
{
case 2: break; // TACCR1 not used
case 4: break; // TACCR2 not used
case 10: P1OUT ^= 0x01; // overflow
break;
}
}
我的猜测是优先检查“10”的大小写值,但我不太确定。