高中生
最后登录1970-1-1
在线时间 小时
注册时间2014-5-10
|
楼主 |
发表于 2014-5-22 18:02:11
|
显示全部楼层
我给复制个源码,#ifndef __LED_H
#define __LED_H
#include "stm32f10x.h"
#define ON 0
#define OFF 1
#define LED1(a) if (a) \
GPIO_SetBits(GPIOC,GPIO_Pin_3); \
else \
GPIO_ResetBits(GPIOC,GPIO_Pin_3)
#define LED2(a) if (a) \
GPIO_SetBits(GPIOC,GPIO_Pin_4); \
else \
GPIO_ResetBits(GPIOC,GPIO_Pin_4)
#define LED3(a) if (a) \
GPIO_SetBits(GPIOC,GPIO_Pin_5); \
else \
GPIO_ResetBits(GPIOC,GPIO_Pin_5)
void LED_GPIO_Config(void);
#endif
8888888888888888888888888888888888888888888888888888888888
#include "led.h"
void LED_GPIO_Config(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd( RCC_APB2Periph_GPIOC,ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3 | GPIO_Pin_4 | GPIO_Pin_5;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOC, &GPIO_InitStructure);
GPIO_SetBits(GPIOC,GPIO_Pin_3 | GPIO_Pin_4 | GPIO_Pin_5);
}
**************************************************************
#include "stm32f10x.h"
#include "led.h"
/**
* @brief Ö÷º¯Êý
* @param ÎÞ
* @retval ÎÞ
*/
void delay(__IO u32 nCount);
int main(void)
{
LED_GPIO_Config();
while(1)
{
LED1(ON);
//LED1(OFF);
LED2(ON);
//LED2(OFF);
LED3(ON);
LED3(OFF);
}
/* add your code here ^_^. */
}
请高手赐教 |
|