野火电子论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 16943|回复: 2

关于NVIC修改中断优先级的问题求解!!!

[复制链接]
发表于 2015-4-22 16:43:40 | 显示全部楼层 |阅读模式
小弟最近在看stm32的红外实验,其中有一个函数NVIC_SetPriority (SysTick_IRQn, 0);
static __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-M3 System Interrupts */
  else {
    NVIC->IP[(uint32_t)(IRQn)] = ((priority << (8 - __NVIC_PRIO_BITS)) & 0xff);    }        /* set Priority for device specific Interrupts  */
}
问题1:这个SCB是什么东西啊?如何找到它的定义啊?
问题2:我想了解  NVIC->IP[(uint32_t)(IRQn)]是什么?根据如下的结构体,我还是没有办法把它与寄存器联系起来啊,恳请大神指教
typedef struct
{
  __IO uint32_t ISER[8];                      /*!< Offset: 0x000  Interrupt Set Enable Register           */
       uint32_t RESERVED0[24];                                   
  __IO uint32_t ICER[8];                      /*!< Offset: 0x080  Interrupt Clear Enable Register         */
       uint32_t RSERVED1[24];                                    
  __IO uint32_t ISPR[8];                      /*!< Offset: 0x100  Interrupt Set Pending Register          */
       uint32_t RESERVED2[24];                                   
  __IO uint32_t ICPR[8];                      /*!< Offset: 0x180  Interrupt Clear Pending Register        */
       uint32_t RESERVED3[24];                                   
  __IO uint32_t IABR[8];                      /*!< Offset: 0x200  Interrupt Active bit Register           */
       uint32_t RESERVED4[56];                                   
  __IO uint8_t  IP[240];                      /*!< Offset: 0x300  Interrupt Priority Register (8Bit wide) */我该如何才能知道这个数组是用来干嘛的呢?
       uint32_t RESERVED5[644];                                 
  __O  uint32_t STIR;                         /*!< Offset: 0xE00  Software Trigger Interrupt Register     */
}  NVIC_Type;





回复

使用道具 举报

 楼主| 发表于 2015-4-23 16:19:20 | 显示全部楼层
有哪位大神能回答下我的问题吗?感谢了~~~
回复 支持 反对

使用道具 举报

发表于 2015-4-23 17:08:53 | 显示全部楼层
QQ截图20150423170643.png
楼主这个几个问题都是stm32内核有关的,可参考文档了解

回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

联系站长|手机版|野火电子官网|野火淘宝店铺|野火电子论坛 ( 粤ICP备14069197号 ) 大学生ARM嵌入式2群

GMT+8, 2024-11-27 12:50 , Processed in 0.028832 second(s), 26 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表