board.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /***********************************************************************************************************************
  2. * Copyright [2020] Renesas Electronics Corporation and/or its licensors. All Rights Reserved.
  3. *
  4. * This file is part of Renesas RA Flexible Software Package (FSP)
  5. *
  6. * The contents of this file (the "contents") are proprietary and confidential to Renesas Electronics Corporation
  7. * and/or its licensors ("Renesas") and subject to statutory and contractual protections.
  8. *
  9. * This file is subject to a Renesas FSP license agreement. Unless otherwise agreed in an FSP license agreement with
  10. * Renesas: 1) you may not use, copy, modify, distribute, display, or perform the contents; 2) you may not use any name
  11. * or mark of Renesas for advertising or publicity purposes or in connection with your use of the contents; 3) RENESAS
  12. * MAKES NO WARRANTY OR REPRESENTATIONS ABOUT THE SUITABILITY OF THE CONTENTS FOR ANY PURPOSE; THE CONTENTS ARE PROVIDED
  13. * "AS IS" WITHOUT ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  14. * PARTICULAR PURPOSE, AND NON-INFRINGEMENT; AND 4) RENESAS SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, OR
  15. * CONSEQUENTIAL DAMAGES, INCLUDING DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROJECTS, WHETHER IN AN ACTION OF
  16. * CONTRACT OR TORT, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE CONTENTS. Third-party contents
  17. * included in this file may be subject to different terms.
  18. **********************************************************************************************************************/
  19. /***********************************************************************************************************************
  20. * File Name : board.h
  21. * Description : Includes and API function available for this board.
  22. **********************************************************************************************************************/
  23. /*******************************************************************************************************************//**
  24. * @ingroup BSP_Boards
  25. * @defgroup BOARD_RA6M4_IOT for the RA6M4_IOT Board
  26. * @brief BSP for the RA6M4_IOT Board
  27. *
  28. * The RA6M4_IOT is a development kit for the Renesas RA6M4 microcontroller.
  29. *
  30. * @{
  31. **********************************************************************************************************************/
  32. #ifndef BOARD_H
  33. #define BOARD_H
  34. /***********************************************************************************************************************
  35. * Includes <System Includes> , "Project Includes"
  36. **********************************************************************************************************************/
  37. /* BSP Board Specific Includes. */
  38. #include "../ra6m4_iot/board_ethernet_phy.h"
  39. #include "../ra6m4_iot/board_init.h"
  40. #include "../ra6m4_iot/board_leds.h"
  41. #include "../ra6m4_iot/board_keys.h"
  42. #include "../ra6m4_iot/SEGGER_RTT.h"
  43. #include "../ra6m4_iot/SEGGER_RTT_Conf.h"
  44. /***********************************************************************************************************************
  45. * Macro definitions
  46. **********************************************************************************************************************/
  47. #define BOARD_RA6M4_IOT
  48. /***********************************************************************************************************************
  49. * Typedef definitions
  50. **********************************************************************************************************************/
  51. /***********************************************************************************************************************
  52. * Exported global variables
  53. **********************************************************************************************************************/
  54. /***********************************************************************************************************************
  55. * Exported global functions (to be accessed by other files)
  56. **********************************************************************************************************************/
  57. /** @} (end defgroup BOARD_RA6M4_IOT) */
  58. #endif