Change default LED state to off

This commit is contained in:
kkitayam 2021-09-13 23:46:14 +09:00
parent 93ed3034c0
commit ecbe8c3376
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ void board_init(void)
PORT_SetPinMux(LED_PIN_PORT, LED_PIN, LED_PIN_FUNCTION);
gpio_pin_config_t led_config = { kGPIO_DigitalOutput, 0 };
GPIO_PinInit(LED_PORT, LED_PIN, &led_config);
board_led_write(true);
board_led_write(false);
// UART
CLOCK_EnableClock(UART_PIN_CLOCK);