board_init.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 : bsp_init.c
  21. * Description : This module calls any initialization code specific to this BSP.
  22. **********************************************************************************************************************/
  23. /*******************************************************************************************************************//**
  24. * @addtogroup BOARD_RA6M4_IOT_INIT
  25. *
  26. * @{
  27. **********************************************************************************************************************/
  28. /***********************************************************************************************************************
  29. * Includes <System Includes> , "Project Includes"
  30. **********************************************************************************************************************/
  31. #include "bsp_api.h"
  32. #if defined(BOARD_RA6M4_IOT)
  33. /***********************************************************************************************************************
  34. * Macro definitions
  35. **********************************************************************************************************************/
  36. /***********************************************************************************************************************
  37. * Typedef definitions
  38. **********************************************************************************************************************/
  39. /***********************************************************************************************************************
  40. * Exported global variables (to be accessed by other files)
  41. **********************************************************************************************************************/
  42. /***********************************************************************************************************************
  43. * Private global variables and functions
  44. **********************************************************************************************************************/
  45. /*******************************************************************************************************************//**
  46. * @brief Performs any initialization specific to this BSP.
  47. *
  48. * @param[in] p_args Pointer to arguments of the user's choice.
  49. **********************************************************************************************************************/
  50. void bsp_init (void * p_args)
  51. {
  52. FSP_PARAMETER_NOT_USED(p_args);
  53. }
  54. #endif
  55. /** @} (end addtogroup BOARD_RA6M4_IOT_INIT) */