1 /*
2 * Copyright (c) 2020 - 2025 Renesas Electronics Corporation and/or its affiliates
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6 
7 /*******************************************************************************************************************//**
8  * @addtogroup BOARD_RA4E2_FPB
9  * @brief Board specific code for the RA4E2-FPB Board
10  *
11  * This include file is specific to the RA4E2-FPB board.
12  *
13  * @{
14  **********************************************************************************************************************/
15 
16 #ifndef BOARD_INIT_H
17 #define BOARD_INIT_H
18 
19 /** Common macro for FSP header files. There is also a corresponding FSP_FOOTER macro at the end of this file. */
20 FSP_HEADER
21 
22 /***********************************************************************************************************************
23  * Macro definitions
24  **********************************************************************************************************************/
25 
26 /***********************************************************************************************************************
27  * Typedef definitions
28  **********************************************************************************************************************/
29 
30 /***********************************************************************************************************************
31  * Exported global variables
32  **********************************************************************************************************************/
33 
34 /***********************************************************************************************************************
35  * Exported global functions (to be accessed by other files)
36  **********************************************************************************************************************/
37 void bsp_init(void * p_args);
38 
39 /** Common macro for FSP header files. There is also a corresponding FSP_HEADER macro at the top of this file. */
40 FSP_FOOTER
41 
42 #endif
43 
44 /** @} (end addtogroup BOARD_RA4E2_FPB) */
45 
46