1 /*
2 * Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7 /*******************************************************************************************************************//**
8 * @addtogroup BOARD_RA6E2_FPB
9 *
10 * @{
11 **********************************************************************************************************************/
12
13 /***********************************************************************************************************************
14 * Includes <System Includes> , "Project Includes"
15 **********************************************************************************************************************/
16 #include "bsp_api.h"
17
18 #if defined(BOARD_RA6E2_FPB)
19
20 /***********************************************************************************************************************
21 * Macro definitions
22 **********************************************************************************************************************/
23
24 /***********************************************************************************************************************
25 * Typedef definitions
26 **********************************************************************************************************************/
27
28 /***********************************************************************************************************************
29 * Exported global variables (to be accessed by other files)
30 **********************************************************************************************************************/
31
32 /***********************************************************************************************************************
33 * Private global variables and functions
34 **********************************************************************************************************************/
35
36 /*******************************************************************************************************************//**
37 * @brief Performs any initialization specific to this BSP.
38 *
39 * @param[in] p_args Pointer to arguments of the user's choice.
40 **********************************************************************************************************************/
bsp_init(void * p_args)41 void bsp_init (void * p_args)
42 {
43 FSP_PARAMETER_NOT_USED(p_args);
44 }
45
46 #endif
47
48 /** @} (end addtogroup BOARD_RA6E2_FPB) */
49