49 lines
2.3 KiB
C
49 lines
2.3 KiB
C
/*
|
|
* Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/*******************************************************************************************************************//**
|
|
* @addtogroup BOARD_RA6E2_FPB
|
|
*
|
|
* @{
|
|
**********************************************************************************************************************/
|
|
|
|
/***********************************************************************************************************************
|
|
* Includes <System Includes> , "Project Includes"
|
|
**********************************************************************************************************************/
|
|
#include "bsp_api.h"
|
|
|
|
#if defined(BOARD_RA6E2_FPB)
|
|
|
|
/***********************************************************************************************************************
|
|
* Macro definitions
|
|
**********************************************************************************************************************/
|
|
|
|
/***********************************************************************************************************************
|
|
* Typedef definitions
|
|
**********************************************************************************************************************/
|
|
|
|
/***********************************************************************************************************************
|
|
* Exported global variables (to be accessed by other files)
|
|
**********************************************************************************************************************/
|
|
|
|
/***********************************************************************************************************************
|
|
* Private global variables and functions
|
|
**********************************************************************************************************************/
|
|
|
|
/*******************************************************************************************************************//**
|
|
* @brief Performs any initialization specific to this BSP.
|
|
*
|
|
* @param[in] p_args Pointer to arguments of the user's choice.
|
|
**********************************************************************************************************************/
|
|
void bsp_init (void * p_args)
|
|
{
|
|
FSP_PARAMETER_NOT_USED(p_args);
|
|
}
|
|
|
|
#endif
|
|
|
|
/** @} (end addtogroup BOARD_RA6E2_FPB) */
|