/* * Copyright 2019 NXP * All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include #include "fsl_common.h" #include "clock_config.h" #include "board.h" #include "fsl_debug_console.h" /******************************************************************************* * Variables ******************************************************************************/ /* Clock rate on the CLKIN pin */ const uint32_t ExtClockIn = BOARD_EXTCLKINRATE; /******************************************************************************* * Code ******************************************************************************/ /* Initialize debug console. */ status_t BOARD_InitDebugConsole(void) { #if ((SDK_DEBUGCONSOLE == DEBUGCONSOLE_REDIRECT_TO_SDK) || defined(SDK_DEBUGCONSOLE_UART)) status_t result; /* Select the main clock as source clock of USART0 (debug console) */ CLOCK_Select(BOARD_DEBUG_USART_CLK_ATTACH); RESET_PeripheralReset(BOARD_DEBUG_USART_RST); result = DbgConsole_Init(BOARD_DEBUG_USART_INSTANCE, BOARD_DEBUG_USART_BAUDRATE, BOARD_DEBUG_USART_TYPE, BOARD_DEBUG_USART_CLK_FREQ); assert(kStatus_Success == result); return result; #else return kStatus_Success; #endif }