Tiva改变中断优先级的办法和解析

2019-07-21 17:25发布

使用void IntPrioritySet(uint32_t ui32Interrupt, uint8_t ui8Priority)函数来设置。

This function is used to set the priority of an interrupt. The ui32Interrupt parameter must be
one of the valid INT_ values listed in Peripheral Driver Library User’s Guide and defined in the
inc/hw_ints.h header file. The ui8Priority parameter specifies the interrupts hardware priority
level of the interrupt in the interrupt controller. When multiple interrupts are asserted simultaneously,
the ones with the highest priority are processed before the lower priority interrupts.
Smaller numbers correspond to higher interrupt priorities; priority 0 is the highest interrupt
priority.

//
// Set the UART 0 interrupt priority to the lowest priority.
//
IntPrioritySet(INT_UART0, 0xE0);
//
// Set the USB 0 interrupt priority to the highest priority.
//
IntPrioritySet(INT_USB0, 0);

注意第二个参数,TM4C的中断优先级有7种,分别是0-7,是由最高三位决定的。优先级数字越大则其优先级越低,也就是说0代表最高优先级。所以最高优先级是0x00,最低优先级是0xE0,1110 0000。

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
4条回答
dirtwillfly
1楼-- · 2019-07-21 22:19
 精彩回答 2  元偷偷看……
vivilzb1985
2楼-- · 2019-07-22 00:06
中断优先级的设计还是蛮重要的,这个可以需合理设计。
baimiaocun2015
3楼-- · 2019-07-22 03:13
在程序运行过程中不宜改变中断的优先级的设计的。
tongbu2015
4楼-- · 2019-07-22 03:48
中断优先级的设计在程序设计中是非常重要的,关系到程序的运行效率的。

一周热门 更多>