您的位置 首页 电路

stm32快速学习2——点亮LED

点亮LED首先使能时钟RCC然后再设置IO口下面是用到的函数可在UM0427用户手册固件函数库中查到,有详尽解释。#includestm32f10x.h…

点亮LED

首要使能时钟RCC
然后再设置IO口
下面是用到的函数可在 UM0427 用户手册 固件函数库 中查到,有翔实解说

#include “stm32f10x.h”

void RCC_Configuration(void);
void GPIO_Configuration(void);

int main(void)
{
RCC_Configuration();
GPIO_Configuration();

GPIO_SetBits(GPIOA, GPIO_Pin_0);
GPIO_SetBits(GPIOA, GPIO_Pin_1);
while(1);
}

void RCC_Configuration(void)
{
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA , ENABLE);
}

void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOA, &GPIO_InitStructure);
}

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

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

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

微信扫一扫关注我们

返回顶部