This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC3200的串口中断问题



尊敬的TI:

        我现在在调试UART的串口中断接收。串口的IO已经正确设置。设置程序为:

MAP_UARTIntRegister(UARTA0_BASE,UARTIntHandler);

MAP_UARTIntEnable(UARTA0_BASE,UART_INT_RX);

InitTerm();

中断函数为:

static void UARTIntHandler()
{
    MAP_UARTIntClear(UARTA0_BASE,UART_INT_RX);
    BannerText=MAP_UARTCharGet(CONSOLE);
}
但是上面这个函数没有跳进来,串口没有收到数。请问是不是我这段程序有什么错误吗?