STM32基于3.5库的LED灯2
2015-05-11 来源:51hei
#include 'stm32f10x.h'
/***********************************************************************
************************************************************************/
GPIO_InitTypeDef GPIO_InitStructure;
/***********************************************************************
************************************************************************/
void delay(vu32 nCount)
{
for(; nCount != 0; nCount--);
}
/***********************************************************************
************************************************************************/
main()
{
/* GPIOD Periph clock enable */
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOD, ENABLE);
/* Configure PD.2 in output pushpull mode */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOD, &GPIO_InitStructure);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
/* Configure PA.8 in output pushpull mode */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOA, &GPIO_InitStructure);
while(1)
{
GPIO_ResetBits(GPIOD,GPIO_Pin_2); //设置所选定的端口的一个或多个所选定的位为低
GPIO_WriteBit(GPIOA,GPIO_Pin_8,Bit_SET); //置位或清除所选定的特定位
delay(5000000);
GPIO_SetBits(GPIOD,GPIO_Pin_2); //设置所选定的端口的一个或多个所选定的位为高
GPIO_WriteBit(GPIOA,GPIO_Pin_8,Bit_RESET); //置位或清除所选定的特定位
delay(5000000);
}
}
/*PD.2和PA.8端口接LED灯,循环亮灭*********************************************
*****************************************************************************/
下一篇:STM32 串口中断接收数据