#include "bflb_gpio.h" #include "board.h" struct bflb_device_s *gpio; int main(void) { board_init(); gpio = bflb_device_get_by_name("gpio"); printf("led blink\n"); bflb_gpio_init(gpio, GPIO_PIN_12, GPIO_OUTPUT | GPIO_INPUT | GPIO_PULLUP | GPIO_SMT_EN | GPIO_DRV_0); while (1) { bflb_gpio_set(gpio, GPIO_PIN_12); bflb_mtimer_delay_ms(1000); bflb_gpio_reset(gpio, GPIO_PIN_12); bflb_mtimer_delay_ms(1000); } }
使用道具 举报
本版积分规则 发表回复 回帖并转播 回帖后跳转到最后一页
3
7
387
中级会员