本帖最后由 trucyw 于 2021-2-19 17:47 编辑
今天终于有时间测试测试板LED
如上LED测试
//LED管脚初始化
GPIO_InitType GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2PERIPH_GPIOD, ENABLE);
GPIO_StructInit(&GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pins =GPIO_Pins_13|GPIO_Pins_14|GPIO_Pins_15;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT_PP;
GPIO_InitStructure.GPIO_MaxSpeed = GPIO_MaxSpeed_50MHz;
GPIO_Init(GPIOD,&GPIO_InitStructure);
测试代码如下
GPIO_ResetBits(GPIOD,GPIO_Pins_13);
Delay_ms(300);
GPIO_ResetBits(GPIOD,GPIO_Pins_14);
Delay_ms(300);
GPIO_ResetBits(GPIOD,GPIO_Pins_15);
Delay_ms(300);
GPIO_SetBits(GPIOD,GPIO_Pins_15);
Delay_ms(300);
GPIO_SetBits(GPIOD,GPIO_Pins_14);
Delay_ms(300);
GPIO_SetBits(GPIOD,GPIO_Pins_13);
Delay_ms(300);
测试结束
|