/* * SPDX-FileCopyrightText: 2020 Inria * SPDX-License-Identifier: LGPL-2.1-only */ /** * @ingroup boards_adafruit-clue * @{ * * @file * @brief Board initialization for the Adafruit Clue * * @author Alexandre Abadie * * @} */ #include "cpu.h" #include "board.h" #include "periph/gpio.h" void board_init(void) { /* initialize the screen backlight, turn it off by default */ gpio_init(BACKLIGHT_PIN, GPIO_OUT); gpio_clear(BACKLIGHT_PIN); }