mirror of
https://gitee.com/lzc56/MiaoUI.git
synced 2025-07-18 09:42:08 +00:00
15 lines
332 B
C
15 lines
332 B
C
#include "bsp_led.h"
|
|
|
|
void LED_GPIO_Config(void)
|
|
{
|
|
GPIO_InitTypeDef GPIO_InitStruct;
|
|
|
|
RCC_APB2PeriphClockCmd(LED_CLK,ENABLE);
|
|
GPIO_InitStruct.GPIO_Pin=LED_PIN;
|
|
GPIO_InitStruct.GPIO_Mode=GPIO_Mode_Out_PP;
|
|
GPIO_InitStruct.GPIO_Speed=GPIO_Speed_50MHz;
|
|
GPIO_Init(LED_PORT,&GPIO_InitStruct);
|
|
|
|
LED(OFF);
|
|
}
|