您的位置 首页 IOT

STM32根据3.5库的LED灯2

35的库在这里:http:www51heicommcu2765htmlincludestm32f10xh************************************************

3.5的库在这里:http://www.51hei.com/mcu/2765.html

#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灯,循环亮灭*********************************************
*****************************************************************************/

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/yingyong/iot/317553.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部