You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
918 B
35 lines
918 B
#include "sys.h" |
|
#include "led.h" |
|
////////////////////////////////////////////////////////////////////////////////// |
|
//本程序只供学习使用,未经作者许可,不得用于其它任何用途 |
|
//ALIENTEK Mini STM32开发板 |
|
//LED驱动代码 |
|
//正点原子@ALIENTEK |
|
//技术论坛:www.openedv.com |
|
//修改日期:2014/3/05 |
|
//版本:V1.0 |
|
//版权所有,盗版必究。 |
|
//Copyright(C) 广州市星翼电子科技有限公司 2009-2019 |
|
//All rights reserved |
|
////////////////////////////////////////////////////////////////////////////////// |
|
|
|
//初始化PA8和PD2为输出口.并使能这两个口的时钟 |
|
//LED IO初始化 |
|
void LED_Init(void) |
|
{ |
|
RCC->APB2ENR|=1<<2; //使能PORTA时钟 |
|
RCC->APB2ENR|=1<<5; //使能PORTD时钟 |
|
GPIOA->CRH&=0XFFFFFFF0; |
|
GPIOA->CRH|=0X00000003;//PA8 推挽输出 |
|
GPIOA->ODR|=1<<8; //PA8 输出高 |
|
|
|
GPIOD->CRL&=0XFFFFF0FF; |
|
GPIOD->CRL|=0X00000300;//PD.2推挽输出 |
|
GPIOD->ODR|=1<<2; //PD.2输出高 |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|