其他分享
首页 > 其他分享> > 寄存器操作

寄存器操作

作者:互联网

基本概念

给一个内存空间分配好地址,然后这个特殊的内存空间叫寄存器

stm32寄存器

stm32f10x.h头文件中实现寄存器映射

#define    __IO    volatile        /*!< defines 'read / write' permissions   */

typedef struct
{
    __IO uint32_t CRL;
    __IO uint32_t CRH;
    __IO uint32_t IDR;
    __IO uint32_t ODR;
    __IO uint32_t BSRR;
    __IO uint32_t BRR;
    __IO uint32_t LCKR;
}GPIO_TypeDef;


#define PERIPH_BASE        ((uint32_t)0x40000000) /*!< Peripheral base address in the alias region */
#define APB2PERIPH_BASE    (PERIPH_BASE + 0x10000)
#define GPIOB_BASE         (APB2PERIPH_BASE + 0x0C00)
#define GPIOB              ((GPIO_TypeDef *) GPIOB_BASE)


void LED_Init(void)
{
    RCC->APB2ENR|=1<<3;    //使能PORTB时钟	   	 
    RCC->APB2ENR|=1<<6;    //使能PORTE时钟	
	   	 
    GPIOB->CRL&=0XFF0FFFFF; 
    GPIOB->CRL|=0X00300000;//PB.5 推挽输出   	 
    GPIOB->ODR|=1<<5;      //PB.5 输出高
											  
    GPIOE->CRL&=0XFF0FFFFF;
    GPIOE->CRL|=0X00300000;//PE.5推挽输出
    GPIOE->ODR|=1<<5;      //PE.5输出高 
}

标签:__,GPIOB,BASE,IO,寄存器,操作,uint32,define
来源: https://www.cnblogs.com/coderning/p/16633355.html