/* * Copyright (C) 2013 INRIA * Copyright (C) 2014 Freie Universität Berlin * * 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 cpu_stm32f1 * @{ * * @file cpu.c * @brief Implementation of the kernel cpu functions * * @author Stefan Pfeiffer * @author Alaeddine Weslati * @author Thomas Eichinger * * @} */ #include "cpu.h" void cpu_init(void) { /* set PendSV priority to the lowest possible priority */ NVIC_SetPriority(PendSV_IRQn, 0xff); }