1 /***********************************************************************************************************************
2  * Copyright [2020] Renesas Electronics Corporation and/or its licensors. All Rights Reserved.
3  *
4  * This file is part of Renesas RA Flexible Software Package (FSP)
5  *
6  * The contents of this file (the "contents") are proprietary and confidential to Renesas Electronics Corporation
7  * and/or its licensors ("Renesas") and subject to statutory and contractual protections.
8  *
9  * This file is subject to a Renesas FSP license agreement. Unless otherwise agreed in an FSP license agreement with
10  * Renesas: 1) you may not use, copy, modify, distribute, display, or perform the contents; 2) you may not use any name
11  * or mark of Renesas for advertising or publicity purposes or in connection with your use of the contents; 3) RENESAS
12  * MAKES NO WARRANTY OR REPRESENTATIONS ABOUT THE SUITABILITY OF THE CONTENTS FOR ANY PURPOSE; THE CONTENTS ARE PROVIDED
13  * "AS IS" WITHOUT ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
14  * PARTICULAR PURPOSE, AND NON-INFRINGEMENT; AND 4) RENESAS SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, OR
15  * CONSEQUENTIAL DAMAGES, INCLUDING DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROJECTS, WHETHER IN AN ACTION OF
16  * CONTRACT OR TORT, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE CONTENTS. Third-party contents
17  * included in this file may be subject to different terms.
18  **********************************************************************************************************************/
19 
20 /***********************************************************************************************************************
21  * File Name    : board_init.h
22  * Description  : This module calls any initialization code specific to this BSP.
23  **********************************************************************************************************************/
24 
25 /*******************************************************************************************************************//**
26  * @ingroup BOARD_RA6M4_IOT
27  * @defgroup BOARD_RA6M4_IOT Board Specific Code
28  * @brief Board specific code for the RA6M4_IOT Board
29  *
30  * This is code specific to the RA6M4_IOT board.
31  *
32  * @{
33  **********************************************************************************************************************/
34 
35 #ifndef BOARD_INIT_H
36 #define BOARD_INIT_H
37 
38 /** Common macro for FSP header files. There is also a corresponding FSP_FOOTER macro at the end of this file. */
39 FSP_HEADER
40 
41 /***********************************************************************************************************************
42  * Macro definitions
43  **********************************************************************************************************************/
44 
45 /***********************************************************************************************************************
46  * Typedef definitions
47  **********************************************************************************************************************/
48 
49 /***********************************************************************************************************************
50  * Exported global variables
51  **********************************************************************************************************************/
52 
53 /***********************************************************************************************************************
54  * Exported global functions (to be accessed by other files)
55  **********************************************************************************************************************/
56 void bsp_init(void * p_args);
57 
58 /** Common macro for FSP header files. There is also a corresponding FSP_HEADER macro at the top of this file. */
59 FSP_FOOTER
60 
61 #endif
62 
63 /** @} (end defgroup BOARD_RA6M4_IOT_INIT) */
64