/* * SPDX-FileCopyrightText: 2014 Freie Universität Berlin * SPDX-FileCopyrightText: 2014 PHYTEC Messtechnik GmbH * SPDX-License-Identifier: LGPL-2.1-only */ /** * @ingroup boards_frdm-k64f * @{ * * @file * @brief Board specific implementations for the FRDM-K64F * * @author Johann Fischer * * @} */ #include "board.h" #include "periph/gpio.h" void board_init(void) { /* RMII RXCLK pin configuration */ SIM->SCGC5 |= SIM_SCGC5_PORTA_MASK; PORTA->PCR[18] &= ~(PORT_PCR_ISF_MASK | PORT_PCR_MUX(0x07)); }