diff options
| author | kkitayam <[email protected]> | 2021-09-13 23:46:14 +0900 |
|---|---|---|
| committer | kkitayam <[email protected]> | 2021-09-15 21:32:53 +0900 |
| commit | ecbe8c3376038317269c30af6d47a399e4f6b6d5 (patch) | |
| tree | 4d6bcb88c607f718d673f79d3fda92b03d28ef1a | |
| parent | 93ed3034c01d1b7b312acf5e8c79475e0dc516f9 (diff) | |
Change default LED state to off
| -rw-r--r-- | hw/bsp/frdm_kl25z/frdm_kl25z.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/bsp/frdm_kl25z/frdm_kl25z.c b/hw/bsp/frdm_kl25z/frdm_kl25z.c index 7d3a173ed..7cfbaab85 100644 --- a/hw/bsp/frdm_kl25z/frdm_kl25z.c +++ b/hw/bsp/frdm_kl25z/frdm_kl25z.c @@ -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); |
