题目内容
Led_Blink.c文件补充#include "stm32f10x_heads.h"#include "HelloRobot.h"int main(void){BSP_Init();//开发板初始化函数// 关闭所有灯GPIO_SetBits(GPIOB,(1) );GPIO_SetBits(GPIOB, (2));( 3)while (1){GPIO_SetBits(GPIOB, GPIO_Pin_1); // PB1 输出高电平,灯灭(4)//PB5输出高电平,红灯灭delay_nms(50);GPIO_ResetBits(GPIOB,GPIO_Pin_1 );// PB0 输出低电平,灯亮(5) // PB5输出低电平,红灯亮(6) //延时50ms}}
查看答案
搜索结果不匹配?点我反馈
更多问题