修改GPIO引脚对应到板卡的PF0 是板卡的LED0 ,具体修改如下: //LED灯引脚
#define LED1_GPIO_PORT GPIOF
#define LED1_GPIO_PIN MD_GPIO_PIN_0
//LED灯引脚初始化
void config_gpio(void)
{
md_gpio_set_pin_function(LED2_GPIO_PORT, LED2_GPIO_PIN, GPIO_FUNC_1);
md_gpio_set_pin_push_pull(LED2_GPIO_PORT, LED2_GPIO_PIN);
md_gpio_set_pin_mode_output(LED2_GPIO_PORT, LED2_GPIO_PIN);
}
//主函数 实现对两个LED翻转操作
int main()
{
md_init_1ms_tick();
config_gpio();
while (1) {
md_delay_1ms(500);
md_gpio_toggle_pin_output(LED1_GPIO_PORT, LED1_GPIO_PIN);
}
}
|