野火电子论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 9310|回复: 3

萌渣求各位大神帮助

[复制链接]
发表于 2017-11-5 13:52:09 | 显示全部楼层 |阅读模式
本帖最后由 453679523 于 2017-11-5 13:57 编辑

在学自己写库视频时候遇到问题:我的结构体为何无法调用成员?输入GPIOH->不会显示结构体成员,
#include "stm32f4xx.h"
#define PERIPH_BASE      *((unsigned int*)0x40000000)
#define AHB1PERIPH_BASE  (PERIPH_BASE+0x00020000)
#define GPIOH_BASE       (AHB1PERIPH_BASE+0x00001C00)
typedef unsigned int   uint32_t;
typedef unsigned short uint16_t;
typedef struct   
{
uint32_t MODER;
uint32_t OTYPER;
uint32_t OSPEEDR;
uint32_t PUPDR;
uint32_t IDR;
uint32_t ODR;
uint16_t BSRRL;                                                                                                              
uint16_t BSRRH;
uint32_t LCKR;
uint32_t AFR[2];
}GPIO_TypeDef;
#define GPIOH                  ((GPIO_TypeDef *)GPIOH_BASE)
#define RCC_BASE              (AHB1PERIPH_BASE+0x00003800)
#define RCC_AHB1ENR            *(unsigned int *)(RCC_BASE+0X30)
int main(void)
{
RCC_AHB1ENR |= (1<<7);


GPIOH->MODER &=~(0<<(2*10));
GPIOH->MODER |= (1<<(2*10));

GPIOH->OSPEEDR &=~(0<<(2*10));
GPIOH->OSPEEDR |= (2<<(2*10));

GPIOH->OTYPER &=~(0<<10);
GPIOH->BSRRH &=~(0<<10);
GPIOH->BSRRH |= (1<<10);                                                           

}
void SystemInit(void)
{

}

1.png
2.png
回复

使用道具 举报

 楼主| 发表于 2017-11-5 13:53:44 | 显示全部楼层
错误提示如图
2.png
回复 支持 反对

使用道具 举报

 楼主| 发表于 2017-11-5 16:27:28 | 显示全部楼层
已找到问题所在:输入不严谨,在#define GPIOH_BASE          (AHB1PERIPH_BASE+0x00001C00)代码中括号用了中文符号
回复 支持 反对

使用道具 举报

发表于 2017-11-6 09:06:53 | 显示全部楼层
453679523 发表于 2017-11-5 16:27
已找到问题所在:输入不严谨,在#define GPIOH_BASE          (AHB1PERIPH_BASE+0x00001C00)代码中括号用了中文符 ...

原来如此,不过有时这个功能就是用不了的
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

联系站长|手机版|野火电子官网|野火淘宝店铺|野火电子论坛 ( 粤ICP备14069197号 ) 大学生ARM嵌入式2群

GMT+8, 2024-11-25 18:50 , Processed in 0.052684 second(s), 27 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表