打印

初学者求大神,指点一下错在哪里

[复制链接]
153|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
哈金|  楼主 | 2019-11-28 09:18 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
pi, IO, gp, GPIO, LED
..\..\Output\流水灯.axf: Error: L6218E: Undefined symbol LED1 (referred from main.o)我把led.h文件改成如下
#ifndef __LED_H
#define        __LED_H

#include "stm32f10x.h"

/** the macro definition to trigger the led on or off
  * 1 - off
  *0 - on
  */
#define ON  0
#define OFF 1

#define LED1_ON                        GPIO_SetBits(GPIOB, GPIO_Pin_0)
#define LED1_OFF                GPIO_ResetBits(GPIOB, GPIO_Pin_0)
#define LED2_ON                        GPIO_SetBits(GPIOB, GPIO_Pin_7)
#define LED2_OFF                GPIO_ResetBits(GPIOB, GPIO_Pin_7)
#define LED3_ON                        GPIO_SetBits(GPIOB, GPIO_Pin_8)
#define LED3_OFF          GPIO_RestBits(GPIOB, GPIO_Pin_8)

void LED_GPIO_Config(void);

#endif /* __LED_H */

使用特权

评论回复

相关帖子

发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

432

主题

433

帖子

1

粉丝