作者goodzey (--)
看板ASM
标题[问题] 关於GPIO的指标写法
时间Sat Nov 19 09:54:25 2016
请教大家,在STM32Lxx.h有以下指标写法
#define GPIOB_BASE (0x0c00)
#define GPIOB ((GPIO_TypeDef *) GPIOB_BASE)
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;
int main(void)
{
GPIOB->CRH &= 0xFFFFFFF0;
GPIOB->CRH |= 0x00000003;
}
其中的指标写法:
#define GPIOB ((GPIO_TypeDef *) GPIOB_BASE)
请问大家,有没有简单的example code可以协助理解这种写法?
我找了很多网路资料都没有多说
在正规C语言中这种写法的关键字是什麽?查得到C语言正规教材吗?
谢谢!
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 36.224.140.214
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/ASM/M.1479520468.A.8DE.html
1F:→ tomnelson: 这不就是 Memory-mapped I/O !? 11/19 12:46
2F:推 MasterChang: CubeMx是你的好朋友 11/22 23:10