STM32F0的stm32f0xx.h中没有CRH和CRL函数,该如何设置
#define SDA_IN() {GPIOC->CRH&=0XFFFF0FFF;GPIOC->CRH|=8<<12;}
#define SDA_OUT() {GPIOC->CRH&=0XFFFF0FFF;GPIOC->CRH|=3<<12;}
下面用库里面的引脚设置函数写成:
void SDA_IN(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
//RCC->APB2ENR|=1<<4;//先使能外设IO portc时钟
RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA,ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_Init(GPIOA,&GPIO_InitStructure);
}
void SDA_OUT(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
//RCC->APB2ENR|=1<<4;//先使能外设IO portc时钟
RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA,ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_PuPd = GPIO_OType_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA,&GPIO_InitStructure);
}
上一篇:延时函数delay_ms,delay_us会出现进入延时函数出不来的情况
下一篇:STM32延时函数的四种方法:普通延时(2种)、SysTick 定时器延时(2种)
推荐阅读最新更新时间:2024-11-02 02:17
设计资源 培训 开发板 精华推荐
- 【物联网】鸿蒙智能wife开关+1600798A
- 红外遥控报警器(原理图+PCB图+程序+说明文档).rar
- CRD-06600FF10N,基于 1000 V C3M SiC MOSFET 的 6.6 kW 双向电动汽车车载充电器演示板
- 使用 Richtek Technology Corporation 的 RT8280H 的参考设计
- 用于仪表的 1.8V ADC 单端至差分转换
- 使用 ROHM Semiconductor 的 BD48L48G-TL 的参考设计
- 当代艺术驱动器
- AM2LS-2412S-NZ 12V 2W DC-DC 转换器的典型应用
- TLE 4263 5V 低压降稳压器的典型应用
- 采用BGU8007的GNSS/GPS低噪声放大器前端评估板