/* * Copyright (C) 2021 Inria * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup boards_stm32f746g-disco * @{ * * @file * @brief Board specific definitions for the STM32F746G-DISCO * * @author Alexandre Abadie */ #ifndef BOARD_H #define BOARD_H #include "cpu.h" #include "periph_conf.h" #include "periph_cpu.h" #ifdef __cplusplus extern "C" { #endif /** * @name User button * @{ */ #define BTN0_PIN GPIO_PIN(PORT_I, 11) /**< BTN0 pin */ #define BTN0_MODE GPIO_IN /**< BTN0 pin mode */ /** @} */ /** * @brief Initialize board specific hardware */ void board_init(void); #ifdef __cplusplus } #endif #endif /* BOARD_H */ /** @} */