SYSTICK寄存器

2019-07-20 14:35发布

tatic __INLINE void NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority)
{
  if(IRQn < 0) {
    SCB->SHP[((uint32_t)(IRQn) & 0xF)-4] = ((priority << (8 - __NVIC_PRIO_BITS)) & 0xff); } /* set Priority for Cortex-M  System Interrupts */
  else {
    NVIC->IP[(uint32_t)(IRQn)] = ((priority << (8 - __NVIC_PRIO_BITS)) & 0xff);    }        /* set Priority for device specific Interrupts  */
}


这个SCB寄存器在哪看呢?

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
2条回答
taizonglai
1楼-- · 2019-07-20 17:36
 精彩回答 2  元偷偷看……
zhoujianwen
2楼-- · 2019-07-20 17:49
zuozhongkai 发表于 2017-5-14 12:36
看Cortex-M3权威指南,里面的中断章节!

很仔细啊,我看到了,谢谢啊

一周热门 更多>