xref: /btstack/port/renesas-ek-ra6m4a-da14531/e2-project/ra/board/ra6m4_ek/board.h (revision ce6f85e79d1d141c1b45dfa16b2671762457cbb4)
1 /***********************************************************************************************************************
2  * Copyright [2020-2022] Renesas Electronics Corporation and/or its affiliates.  All Rights Reserved.
3  *
4  * This software and documentation are supplied by Renesas Electronics America Inc. and may only be used with products
5  * of Renesas Electronics Corp. and its affiliates ("Renesas").  No other uses are authorized.  Renesas products are
6  * sold pursuant to Renesas terms and conditions of sale.  Purchasers are solely responsible for the selection and use
7  * of Renesas products and Renesas assumes no liability.  No license, express or implied, to any intellectual property
8  * right is granted by Renesas. This software is protected under all applicable laws, including copyright laws. Renesas
9  * reserves the right to change or discontinue this software and/or this documentation. THE SOFTWARE AND DOCUMENTATION
10  * IS DELIVERED TO YOU "AS IS," AND RENESAS MAKES NO REPRESENTATIONS OR WARRANTIES, AND TO THE FULLEST EXTENT
11  * PERMISSIBLE UNDER APPLICABLE LAW, DISCLAIMS ALL WARRANTIES, WHETHER EXPLICITLY OR IMPLICITLY, INCLUDING WARRANTIES
12  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT, WITH RESPECT TO THE SOFTWARE OR
13  * DOCUMENTATION.  RENESAS SHALL HAVE NO LIABILITY ARISING OUT OF ANY SECURITY VULNERABILITY OR BREACH.  TO THE MAXIMUM
14  * EXTENT PERMITTED BY LAW, IN NO EVENT WILL RENESAS BE LIABLE TO YOU IN CONNECTION WITH THE SOFTWARE OR DOCUMENTATION
15  * (OR ANY PERSON OR ENTITY CLAIMING RIGHTS DERIVED FROM YOU) FOR ANY LOSS, DAMAGES, OR CLAIMS WHATSOEVER, INCLUDING,
16  * WITHOUT LIMITATION, ANY DIRECT, CONSEQUENTIAL, SPECIAL, INDIRECT, PUNITIVE, OR INCIDENTAL DAMAGES; ANY LOST PROFITS,
17  * OTHER ECONOMIC DAMAGE, PROPERTY DAMAGE, OR PERSONAL INJURY; AND EVEN IF RENESAS HAS BEEN ADVISED OF THE POSSIBILITY
18  * OF SUCH LOSS, DAMAGES, CLAIMS OR COSTS.
19  **********************************************************************************************************************/
20 
21 /*******************************************************************************************************************//**
22  * @ingroup BOARDS
23  * @defgroup BOARD_RA6M4_EK BSP for the RA6M4-EK board
24  * @brief BSP for the RA6M4-EK Board
25  *
26  * The RA6M4_EK is a development kit for the Renesas R7FA6M4AF3CFB microcontroller in a LQFP144 package.
27  *
28  * @{
29  **********************************************************************************************************************/
30 
31 #ifndef BOARD_H
32 #define BOARD_H
33 
34 /***********************************************************************************************************************
35  * Includes   <System Includes> , "Project Includes"
36  **********************************************************************************************************************/
37 
38 /* BSP Board Specific Includes. */
39 #include "board_init.h"
40 #include "board_leds.h"
41 #include "board_ethernet_phy.h"
42 
43 /***********************************************************************************************************************
44  * Macro definitions
45  **********************************************************************************************************************/
46 #define BOARD_RA6M4_EK
47 
48 /***********************************************************************************************************************
49  * Typedef definitions
50  **********************************************************************************************************************/
51 
52 /***********************************************************************************************************************
53  * Exported global variables
54  **********************************************************************************************************************/
55 
56 /***********************************************************************************************************************
57  * Exported global functions (to be accessed by other files)
58  **********************************************************************************************************************/
59 
60 /** @} (end defgroup BOARD_RA6M4_EK) */
61 
62 #endif
63