board_init.c 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * Copyright (c) 2020 - 2025 Renesas Electronics Corporation and/or its affiliates
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. /***********************************************************************************************************************
  7. * File Name : board_init.c
  8. * Description : This module calls any initialization code specific to this BSP.
  9. **********************************************************************************************************************/
  10. /*******************************************************************************************************************//**
  11. * @addtogroup BOARD_RA4E2_EK_INIT
  12. *
  13. * @{
  14. **********************************************************************************************************************/
  15. /***********************************************************************************************************************
  16. * Includes <System Includes> , "Project Includes"
  17. **********************************************************************************************************************/
  18. #include "bsp_api.h"
  19. #if defined(BOARD_RA4E2_EK)
  20. /***********************************************************************************************************************
  21. * Macro definitions
  22. **********************************************************************************************************************/
  23. /***********************************************************************************************************************
  24. * Typedef definitions
  25. **********************************************************************************************************************/
  26. /***********************************************************************************************************************
  27. * Exported global variables (to be accessed by other files)
  28. **********************************************************************************************************************/
  29. /***********************************************************************************************************************
  30. * Private global variables and functions
  31. **********************************************************************************************************************/
  32. /*******************************************************************************************************************//**
  33. * @brief Performs any initialization specific to this BSP.
  34. *
  35. * @param[in] p_args Pointer to arguments of the user's choice.
  36. **********************************************************************************************************************/
  37. void bsp_init (void * p_args)
  38. {
  39. FSP_PARAMETER_NOT_USED(p_args);
  40. }
  41. #endif
  42. /** @} (end addtogroup BOARD_RA4E2_EK_INIT) */