一、中断的基本概念
中断的定义及中断工作方式
中断,即CPU在正常执行程序的过程中,遇到外部(例如常见的按键中断)/内部(例如定时器中断)的紧急事件需要处理,暂时中断(中止)当前程序的执行,而转去为事件服务,待服务完毕,再返回到暂停处(断点)继续执行原来的程序。
通俗的说:比如我正在写代码,老板突然给我一个任务,我暂停的写代码,转而把老板布置的任务完成之后,再继续写代码,这个过程就可以理解成中断。
从中断的定义中引出了以下几个新的概念:
1.事件的“偶然”性与“必然”性
例如,计算机键盘、鼠标的设置就为计算机系统增加了两个必然的“偶然”事件发生的机会。
通俗一点来讲,中断,意味着中途打断现在干的事情,要立即处理紧急的事件。
现实的例子:手机玩游戏的时候,突然来电话。在编程当中还常遇到实时接收数据的请求,都使用中断服务函数,示例如下:
2.中断的作用
- 提高硬件响应,及时处理。
3.中断源(中断触发的硬件)
(1)中断源:介于事件与CPU之间的电路模块。
(2)中断请求信号:事件引起的,由中断源产生的,能被单片机识别的信号。
4.中断类型
中断产生来源于事件。因此根据事件来源地,将中断分为外部中断和内部中断两种类型。
外部中断是指由单片机外部事件引发的中断。
内部中断是指由单片机芯片内部事件引发的中断。
5.中断优先级
事件具有不同的轻重、缓急程度。系统工作时,我们总希望最紧急的事件优先被处理,以保证系统的实时性。这就引出了中断的优先级、中断嵌套问题。
与中断控制器相连的每条线叫做中断线,要使用中断线,就得进行中断线的申请,就是IRQ,把申请一条中断线称为申请一个IRQ或者是申请一个中断号。IRQ和向量之间的映射可以通过中断控制器进行修改。
二、异常与中断
(一)概述
《Cortex M3与M4权威指南》章节4.5 P104
Exceptions are events that cause changes to program flow. When one happens, the processor suspends the current executing task and executes a part of the program called the exception handler. After the execution of the exception handler is completed, the processor then resumes normal program execution. **In the ARM architecture**, **interrupts** **are one type of** **exception**. Interrupts are usually generated from peripheral or external inputs, and in some cases they can be triggered by software. The exception handlers for interrupts are also referred to as Interrupt Service Routines (ISR)。
异常是导致程序流更改的事件。发生这种情况时,处理器暂停当前正在执行的任务,并执行程序的一部分,称为异常处理程序。异常处理程序执行完成后,处理器恢复正常程序执行**在ARM架构**,**中断****是****异常**的一种类型。中断通常由外围或外部输入产生,在某些情况下,可以由软件触发。中断的异常处理程序也称为中断服务例程(ISR)
Each exception source has an exception number. Exception numbers 1 to 15 as system exceptions, and exceptions 16 and above are for **interrupts**. The design of the NVIC in the Cortex-M3 and Cortex-M4 processors can support up to 240 interrupt inputs. However, in practice the number of interrupt inputs imple mented in the design is far less, typically in the range of 16 to 100. In this way the silicon size of the design can be reduced, which also reduces power consumption。
每个异常源都有一个异常编号。异常编号1至15为系统异常,异常编号16及以上为**中断**。Cortex-M3和Cortex-M4处理器中的NVIC设计可支持多达240个中断输入。然而,在实践中,设计中实现的中断输入的数量要少得多,通常在16到100之间。这样,设计的硅尺寸可以减小,这也降低了功耗
Nested vectored interrupt controller (NVIC,嵌套向量中断控制器)
The NVIC is a part of the Cortex-M processor. It is programmable and its registers are located in the System Control Space (SCS) of the memory map
The NVIC handles the exceptions and interrupt configurations, prioritization, and interrupt masking. The NVIC has the following features:
• Flexible exception and interrupt management
• Nested exception/interrupt support
• Vectored exception/interrupt entry
• Interrupt masking
Nested vectored interrupt controller (NVIC,嵌套向量中断控制器)
The NVIC is a part of the Cortex-M processor. It is programmable and its registers are located in the System Control Space (SCS) of the memory map
The NVIC handles the exceptions and interrupt configurations, prioritization, and interrupt masking. The NVIC has the following features:
• Flexible exception and interrupt management
• Nested exception/interrupt support
• Vectored exception/interrupt entry
• Interrupt masking
嵌套矢量中断控制器(NVIC嵌套向量中断控制器)
NVIC是Cortex-M处理器的一部分。它是可编程的,其寄存器位于内存映射的系统控制空间(SCS)中
NVIC处理异常和中断配置、优先级和中断屏蔽。NVIC具有以下功能:
•灵活的异常和中断管理
•嵌套异常/中断支持
•向量化异常/中断条目
•中断屏蔽
专业英文
priority,/praɪˈɔːrəti/,优先级
prioritization,/praɪˌɔːrətəˈzeɪʃn/,优先次序
preempt,/priˈempt/,抢占
(二)异常类型
《Cortex M3与M4权威指南》章节7.2 P232
1.系统异常
2.中断
(三)中断控制
《Cortex M3与M4权威指南》章节7.3 P235
After reset, all interrupts are disabled and given a priority-level value of 0. Before using any interrupts, you need to:
- Set up the priority level of the required interrupt (this step is optional)
- Enable the interrupt generation control in the peripheral that triggers the interrupt
- Enable the interrupt in the NVIC
重置后,所有中断都被禁用,并被赋予优先级值0。在使用任何中断之前,您需要:
-设置所需中断的优先级(此步骤是可选的)
-在触发中断的外围设备中启用中断生成控制
-在NVIC中启用中断
In most typical applications, this is all you need to do. When the interrupt triggers, the corresponding Interrupt Service Routine (ISR) will execute (you might need to clear the interrupt request from the peripheral within the handler). The name of the ISR can be found inside the vector table inside the startup code, which is also provided by the microcontroller vendor. The name of the ISR needs to match the name used in the vector table so that the linker can place the starting address of the ISR into the vector table correctly.
在大多数典型的应用程序中,这就是您所需要做的。当中断触发时,相应的中断服务例程(ISR)将执行(您可能需要从处理程序中的外设清除中断请求)。ISR的名称可以在启动代码中的向量表中找到,该表也由微控制器供应商提供。ISR的名称需要与向量表中使用的名称匹配,以便链接器可以将ISR的起始地址正确地放入向量表中。
(四)向量表(Vector table)
《Cortex M3与M4权威指南》章节4.5.3 P107
When an exception event takes place and is accepted by the processor core, the corresponding exception handler is executed. To determine the starting address of the exception handler, a vector table mechanism is used. The vector table is an array of word data inside the system memory, each representing the starting address of one exception type。
当异常事件发生并被处理器核接受时,将执行相应的异常处理程序。为了确定异常处理程序的起始地址,使用了向量表机制。向量表是系统内存中的一个字数据数组,每个表示一种异常类型的起始地址
三、STM32 的外部中断
1.中断引脚
多达 140 个 GPIO(STM32F405xx/07xx 和 STM32F415xx/17xx)通过以下方式连接到 16 个外部中断/事件线。
例如:PA0占用了EXTI0,其他PB0~PI0是不能使用的。
引脚编号决定了对应哪个外部中断。
四、代码思路
1.8051单片机
外部中断的触发方式:低电平触发、下降沿触发 IT0=1
允许外部中断引脚申请中断请求 EX0=1
优先级的配置
中断服务函数
2.STM32
端口A硬件时钟使能
SYSCFG硬件时钟使能
配置引脚的工作模式
将引脚连接到外部中断
中断触发方式:下降沿触发、上升沿触发
允许外部中断引脚申请中断请求
优先级的配置
中断服务函数
注:
中断服务函数是不能被调用,编写格式不能随意编写,这是它特有的存在形式。不同的硬件平台,其编写方法是不一样的。
五、函数接口
1.为引脚选择使用哪个中断
/**
- @brief Selects the GPIO pin used as EXTI Line.
- @param EXTI_PortSourceGPIOx : selects the GPIO port to be used as source for
- EXTI lines where x can be (A..K) for STM32F42xxx/43xxx devices, (A..I)
- for STM32F405xx/407xx and STM32F415xx/417xx devices or (A, B, C, D and H)
- for STM32401xx devices.
-
- @param EXTI_PinSourcex: specifies the EXTI line to be configured.
- This parameter can be EXTI_PinSourcex where x can be (0..15, except
- for EXTI_PortSourceGPIOI x can be (0..11) for STM32F405xx/407xx
- and STM32F405xx/407xx devices and for EXTI_PortSourceGPIOK x can
- be (0..7) for STM32F42xxx/43xxx devices.
-
- @retval None
*/
void SYSCFG_EXTILineConfig(uint8_t EXTI_PortSourceGPIOx, uint8_t EXTI_PinSourcex)
2.配置外部中断
/*@brief Initializes the EXTI peripheral according to the specified
- parameters in the EXTI_InitStruct.
- @param EXTI_InitStruct: pointer to a EXTI_InitTypeDef structure
- that contains the configuration information for the EXTI peripheral.
- @retval None
*/
void EXTI_Init(EXTI_InitTypeDef* EXTI_InitStruct)
3.中断优先级配置
-
/** - @brief Initializes the NVIC peripheral according to the specified - parameters in the NVIC_InitStruct. - @note To configure interrupts priority correctly, the NVIC_PriorityGroupConfig() - function should be called before. - @param NVIC_InitStruct: pointer to a NVIC_InitTypeDef structure that contains - the configuration information for the specified NVIC peripheral. - @retval None */ void NVIC_Init(NVIC_InitTypeDef* NVIC_InitStruct)
4.获取外部中断状态
/**
- @brief Checks whether the specified EXTI line is asserted or not.
- @param EXTI_Line: specifies the EXTI line to check.
- This parameter can be EXTI_Linex where x can be(0..22)
- @retval The new state of EXTI_Line (SET or RESET).
*/
ITStatus EXTI_GetITStatus(uint32_t EXTI_Line)
5.清空外部中断标志位
-
/** - @brief Clears the EXTI's line pending bits. - @param EXTI_Line: specifies the EXTI lines to clear. - This parameter can be any combination of EXTI_Linex where x can be (0..22) - @retval None */ void EXTI_ClearITPendingBit(uint32_t EXTI_Line)
中断执行过程
六、中断优先级
中断优先级的一个意义:出现多个中断同时触发,但是不能同时处理,所以先后顺序之分,要根据实际上的运行环境优先处理重要的中断。
1.概述
STM32 对中断优先级进行分组,共 5 组,组 0~4,这些分组是用于指定当前M4支持多少级抢占优先级和多少个响应/子优先级。同时,对每个中断设置一个抢占优先级和一个响应优先级。函数原型如下:
-
/** - @brief Configures the priority grouping: pre-emption priority and subpriority. - @param NVIC_PriorityGroup: specifies the priority grouping bits length. - This parameter can be one of the following values: - @arg NVIC_PriorityGroup_0: 0 bits for pre-emption priority //不支持抢占优先级 - 4 bits for subpriority //支持16级响应优先级(0 ~ 15) - @arg NVIC_PriorityGroup_1: 1 bits for pre-emption priority//支持2级抢占优先级(0 ~ 1) - 3 bits for subpriority //支持8级响应优先级(0 ~ 7) - @arg NVIC_PriorityGroup_2: 2 bits for pre-emption priority//支持4级抢占优先级(数值0~3) - 2 bits for subpriority //支持4级响应优先级(数值0~3) - @arg NVIC_PriorityGroup_3: 3 bits for pre-emption priority //支持8级抢占优先级 - 1 bits for subpriority //支持2级响应优先级 - @arg NVIC_PriorityGroup_4: 4 bits for pre-emption priority //支持16级抢占优先级(数值0~15) - 0 bits for subpriority //不支持响应优先级 - @note When the NVIC_PriorityGroup_0 is selected, IRQ pre-emption is no more possible. - The pending IRQ priority will be managed only by the subpriority. - @retval None */ void NVIC_PriorityGroupConfig(uint32_t NVIC_PriorityGroup)
只要开机初始化一次就可以了。
2.抢占优先级与响应优先级区别
1)高抢占优先级是可以打断正在进行的低抢占优先级的中断。抢占优先级若相同,则不会出现抢占的过程。
2)抢占优先级相同的中断,高响应优先级不可以打断低响应优先级的中断。
3)抢占优先级相同的中断,当两个中断同时发生的情况下,哪个响应优先级高,哪个先执行(响应)。
4)抢占优先级相同且响应优先级相同的中断,假如同时发生,会按照硬件内部固定的优先级执行,如下图。
5)无论是抢占优先级、响应优先级还是硬件内部的优先级,优先级数值越小,就代表优先级越高
七、中断服务函数
中断服务函数要简单、高效完成,以下的delay函数是为了方便观察中断现象,在实际项目开发过程,是不会这么做的。
八、应用场景
1.触摸屏点击实时响应
2.手机/电脑的关机键、音量键、静音键
3.数据接收完成立即通知处理或无线连接状态。
练习:
使用外部中断实现
- 按下KEY_UP蜂鸣器响,再按下停止
- 按下key0红绿灯亮,再按下灭
- 按下key1绿灯亮,再按下灭
- 按下key2红灯亮,再按下灭