rename board_led_control to board_led_write

This commit is contained in:
hathach
2019-04-02 18:16:04 +07:00
parent 6564580c3d
commit 5f3ab2afe1
16 changed files with 19 additions and 19 deletions
@@ -101,7 +101,7 @@ void board_init(void)
_gclk_enable_channel(TCC0_GCLK_ID, GCLK_CLKCTRL_GEN_GCLK0_Val);
}
void board_led_control(bool state)
void board_led_write(bool state)
{
gpio_set_pin_level(LED_PIN, state);
}