67 lines
4.1 KiB
C
67 lines
4.1 KiB
C
/***********************************************************************************************************************
|
|
* Copyright [2020] Renesas Electronics Corporation and/or its licensors. All Rights Reserved.
|
|
*
|
|
* This file is part of Renesas RA Flexible Software Package (FSP)
|
|
*
|
|
* The contents of this file (the "contents") are proprietary and confidential to Renesas Electronics Corporation
|
|
* and/or its licensors ("Renesas") and subject to statutory and contractual protections.
|
|
*
|
|
* This file is subject to a Renesas FSP license agreement. Unless otherwise agreed in an FSP license agreement with
|
|
* Renesas: 1) you may not use, copy, modify, distribute, display, or perform the contents; 2) you may not use any name
|
|
* or mark of Renesas for advertising or publicity purposes or in connection with your use of the contents; 3) RENESAS
|
|
* MAKES NO WARRANTY OR REPRESENTATIONS ABOUT THE SUITABILITY OF THE CONTENTS FOR ANY PURPOSE; THE CONTENTS ARE PROVIDED
|
|
* "AS IS" WITHOUT ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
* PARTICULAR PURPOSE, AND NON-INFRINGEMENT; AND 4) RENESAS SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, OR
|
|
* CONSEQUENTIAL DAMAGES, INCLUDING DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROJECTS, WHETHER IN AN ACTION OF
|
|
* CONTRACT OR TORT, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE CONTENTS. Third-party contents
|
|
* included in this file may be subject to different terms.
|
|
**********************************************************************************************************************/
|
|
|
|
/***********************************************************************************************************************
|
|
* File Name : bsp_init.c
|
|
* Description : This module calls any initialization code specific to this BSP.
|
|
**********************************************************************************************************************/
|
|
|
|
/*******************************************************************************************************************//**
|
|
* @addtogroup BOARD_RA6M4_IOT_INIT
|
|
*
|
|
* @{
|
|
**********************************************************************************************************************/
|
|
|
|
/***********************************************************************************************************************
|
|
* Includes <System Includes> , "Project Includes"
|
|
**********************************************************************************************************************/
|
|
#include "bsp_api.h"
|
|
|
|
#if defined(BOARD_RA6M4_IOT)
|
|
|
|
/***********************************************************************************************************************
|
|
* 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_RA6M4_IOT_INIT) */
|