Files
MobKBK 460e0e9e73 init
2026-06-20 21:22:34 +08:00

30 lines
747 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#include "exti.h"
/**************************************************************************
作者:平衡小车之家
我的淘宝小店http://shop114407458.taobao.com/
**************************************************************************/
/**************************************************************************
函数功能:外部中断初始化
入口参数:无
返回 值:无
**************************************************************************/
void EXTI1_Init(void)
{
// RCC->APB2ENR|=1<<3; //使能PORTB时钟
// GPIOB->CRH&=0X0FFFFFFF;
// GPIOB->CRH|=0X80000000;//PB5上拉输入
// GPIOB->ODR|=1<<15; //PB5上拉
// Ex_NVIC_Config(GPIO_B,15,FTIR); //下降沿触发
// MY_NVIC_Init(2,1,EXTI15_10_IRQn,2); //抢占2子优先级1组2
}