1 /***********************************************************************************************************************
2  * Copyright [2020-2024] Renesas Electronics Corporation and/or its affiliates.  All Rights Reserved.
3  *
4  * This software and documentation are supplied by Renesas Electronics Corporation and/or its affiliates and may only
5  * be used with products of Renesas Electronics Corp. and its affiliates ("Renesas").  No other uses are authorized.
6  * Renesas products are sold pursuant to Renesas terms and conditions of sale.  Purchasers are solely responsible for
7  * the selection and use of Renesas products and Renesas assumes no liability.  No license, express or implied, to any
8  * intellectual property right is granted by Renesas.  This software is protected under all applicable laws, including
9  * copyright laws. Renesas reserves the right to change or discontinue this software and/or this documentation.
10  * THE SOFTWARE AND DOCUMENTATION IS DELIVERED TO YOU "AS IS," AND RENESAS MAKES NO REPRESENTATIONS OR WARRANTIES, AND
11  * TO THE FULLEST EXTENT PERMISSIBLE UNDER APPLICABLE LAW, DISCLAIMS ALL WARRANTIES, WHETHER EXPLICITLY OR IMPLICITLY,
12  * INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT, WITH RESPECT TO THE
13  * SOFTWARE OR DOCUMENTATION.  RENESAS SHALL HAVE NO LIABILITY ARISING OUT OF ANY SECURITY VULNERABILITY OR BREACH.
14  * TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT WILL RENESAS BE LIABLE TO YOU IN CONNECTION WITH THE SOFTWARE OR
15  * DOCUMENTATION (OR ANY PERSON OR ENTITY CLAIMING RIGHTS DERIVED FROM YOU) FOR ANY LOSS, DAMAGES, OR CLAIMS WHATSOEVER,
16  * INCLUDING, WITHOUT LIMITATION, ANY DIRECT, CONSEQUENTIAL, SPECIAL, INDIRECT, PUNITIVE, OR INCIDENTAL DAMAGES; ANY
17  * LOST PROFITS, OTHER ECONOMIC DAMAGE, PROPERTY DAMAGE, OR PERSONAL INJURY; AND EVEN IF RENESAS HAS BEEN ADVISED OF THE
18  * POSSIBILITY OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS.
19  **********************************************************************************************************************/
20 
21 /***********************************************************************************************************************
22  * File Name    : board_init.c
23  * Description  : This module calls any initialization code specific to this BSP.
24  **********************************************************************************************************************/
25 
26 /*******************************************************************************************************************//**
27  * @addtogroup BOARD_RZN2L_RSK_INIT
28  *
29  * @{
30  **********************************************************************************************************************/
31 
32 /***********************************************************************************************************************
33  * Includes   <System Includes> , "Project Includes"
34  **********************************************************************************************************************/
35 #include "bsp_api.h"
36 
37 #if defined(BOARD_RZN2L_RSK)
38 
39 /***********************************************************************************************************************
40  * Macro definitions
41  **********************************************************************************************************************/
42 
43 /***********************************************************************************************************************
44  * Typedef definitions
45  **********************************************************************************************************************/
46 
47 /***********************************************************************************************************************
48  * Exported global variables (to be accessed by other files)
49  **********************************************************************************************************************/
50 
51 /***********************************************************************************************************************
52  * Private global variables and functions
53  **********************************************************************************************************************/
54 
55 /*******************************************************************************************************************//**
56  * @brief      Performs any initialization specific to this BSP.
57  *
58  * @param[in]  p_args         Pointer to arguments of the user's choice.
59  **********************************************************************************************************************/
bsp_init(void * p_args)60 void bsp_init (void * p_args)
61 {
62     FSP_PARAMETER_NOT_USED(p_args);
63 }
64 
65 #endif
66 
67 /** @} (end addtogroup BOARD_RZN2L_RSK_INIT) */
68