123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /***********************************************************************************************************************
- * Copyright [2020] Renesas Electronics Corporation and/or its licensors. All Rights Reserved.
- *
- * This file is part of Renesas RA Flexible Software Package (FSP)
- *
- * The contents of this file (the "contents") are proprietary and confidential to Renesas Electronics Corporation
- * and/or its licensors ("Renesas") and subject to statutory and contractual protections.
- *
- * This file is subject to a Renesas FSP license agreement. Unless otherwise agreed in an FSP license agreement with
- * Renesas: 1) you may not use, copy, modify, distribute, display, or perform the contents; 2) you may not use any name
- * or mark of Renesas for advertising or publicity purposes or in connection with your use of the contents; 3) RENESAS
- * MAKES NO WARRANTY OR REPRESENTATIONS ABOUT THE SUITABILITY OF THE CONTENTS FOR ANY PURPOSE; THE CONTENTS ARE PROVIDED
- * "AS IS" WITHOUT ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
- * PARTICULAR PURPOSE, AND NON-INFRINGEMENT; AND 4) RENESAS SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, OR
- * CONSEQUENTIAL DAMAGES, INCLUDING DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROJECTS, WHETHER IN AN ACTION OF
- * CONTRACT OR TORT, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE CONTENTS. Third-party contents
- * included in this file may be subject to different terms.
- **********************************************************************************************************************/
- /***********************************************************************************************************************
- * File Name : board.h
- * Description : Includes and API function available for this board.
- **********************************************************************************************************************/
- /*******************************************************************************************************************//**
- * @ingroup BSP_Boards
- * @defgroup BOARD_RA6M4_IOT for the RA6M4_IOT Board
- * @brief BSP for the RA6M4_IOT Board
- *
- * The RA6M4_IOT is a development kit for the Renesas RA6M4 microcontroller.
- *
- * @{
- **********************************************************************************************************************/
- #ifndef BOARD_H
- #define BOARD_H
- /***********************************************************************************************************************
- * Includes <System Includes> , "Project Includes"
- **********************************************************************************************************************/
- /* BSP Board Specific Includes. */
- #include "../ra6m4_iot/board_ethernet_phy.h"
- #include "../ra6m4_iot/board_init.h"
- #include "../ra6m4_iot/board_leds.h"
- #include "../ra6m4_iot/board_keys.h"
- #include "../ra6m4_iot/SEGGER_RTT.h"
- #include "../ra6m4_iot/SEGGER_RTT_Conf.h"
- /***********************************************************************************************************************
- * Macro definitions
- **********************************************************************************************************************/
- #define BOARD_RA6M4_IOT
- /***********************************************************************************************************************
- * Typedef definitions
- **********************************************************************************************************************/
- /***********************************************************************************************************************
- * Exported global variables
- **********************************************************************************************************************/
- /***********************************************************************************************************************
- * Exported global functions (to be accessed by other files)
- **********************************************************************************************************************/
- /** @} (end defgroup BOARD_RA6M4_IOT) */
- #endif
|