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  * @ingroup BOARDS
9  * @defgroup BOARD_RA6E2_FPB for the RA6E2-FPB board
10  * @brief BSP for the RA6E2-FPB Board
11  *
12  * The RA6E2_FPB is a development kit for the Renesas R7FA6E2BB3CFM microcontroller in a LQFP64 package.
13  *
14  * @{
15  **********************************************************************************************************************/
16 
17 #ifndef BOARD_H
18 #define BOARD_H
19 
20 /***********************************************************************************************************************
21  * Includes   <System Includes> , "Project Includes"
22  **********************************************************************************************************************/
23 
24 /* BSP Board Specific Includes. */
25 #include "board_init.h"
26 #include "board_leds.h"
27 
28 /***********************************************************************************************************************
29  * Macro definitions
30  **********************************************************************************************************************/
31 #define BOARD_RA6E2_FPB
32 
33 /***********************************************************************************************************************
34  * Typedef definitions
35  **********************************************************************************************************************/
36 
37 /***********************************************************************************************************************
38  * Exported global variables
39  **********************************************************************************************************************/
40 
41 /***********************************************************************************************************************
42  * Exported global functions (to be accessed by other files)
43  **********************************************************************************************************************/
44 
45 /** @} (end defgroup BOARD_RA6E2_FPB) */
46 
47 #endif
48