/* * Copyright (C) 2014-2017 Freie Universität Berlin * 2015 Lari Lehtomäki * 2015 TriaGnoSys GmbH * 2016-2017 Inria * 2016-2017 OTA keys * * 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_nucleo * @{ * * @file * @brief Board initialization code for all Nucleo boards * * @author Hauke Petersen * @author Thomas Eichinger * @author Lari Lehtomäki * @author Alexandre Abadie * @author Víctor Ariño * @author José Alamos * @author Vincent Dupont * * @} */ /* * Allow overwriting board_init if common implementation doesn't work. * If at link time another implementation of board_init() not marked as weak * ((a.k.a. a strong symbol) is present, it will be linked in instead. */ void __attribute__((weak)) board_init(void) { }