/* * Copyright (C) 2020 Koen Zandberg * 2023 Gunar Schorcht * * 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_common_gd32v * @{ * * @file * @brief Common board definitions for GD32VF103 boards * * @author Koen Zandberg * @author Gunar Schorcht */ #ifndef BOARD_COMMON_H #define BOARD_COMMON_H #ifdef __cplusplus extern "C" { #endif /** * @name Xtimer configuration * @{ */ #define XTIMER_WIDTH (16) /** @} */ #ifdef __cplusplus } #endif #endif /* BOARD_COMMON_H */ /** @} */