45 lines
2.0 KiB
C
45 lines
2.0 KiB
C
|
/*
|
||
|
* Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||
|
*/
|
||
|
|
||
|
/*******************************************************************************************************************//**
|
||
|
* @addtogroup BOARD_RA6E2_FPB
|
||
|
* @brief Board specific code for the RA6E2-FPB Board
|
||
|
*
|
||
|
* This include file is specific to the RA6E2-FPB board.
|
||
|
*
|
||
|
* @{
|
||
|
**********************************************************************************************************************/
|
||
|
|
||
|
#ifndef BOARD_INIT_H
|
||
|
#define BOARD_INIT_H
|
||
|
|
||
|
/** Common macro for FSP header files. There is also a corresponding FSP_FOOTER macro at the end of this file. */
|
||
|
FSP_HEADER
|
||
|
|
||
|
/***********************************************************************************************************************
|
||
|
* Macro definitions
|
||
|
**********************************************************************************************************************/
|
||
|
|
||
|
/***********************************************************************************************************************
|
||
|
* Typedef definitions
|
||
|
**********************************************************************************************************************/
|
||
|
|
||
|
/***********************************************************************************************************************
|
||
|
* Exported global variables
|
||
|
**********************************************************************************************************************/
|
||
|
|
||
|
/***********************************************************************************************************************
|
||
|
* Exported global functions (to be accessed by other files)
|
||
|
**********************************************************************************************************************/
|
||
|
void bsp_init(void * p_args);
|
||
|
|
||
|
/** Common macro for FSP header files. There is also a corresponding FSP_HEADER macro at the top of this file. */
|
||
|
FSP_FOOTER
|
||
|
|
||
|
#endif
|
||
|
|
||
|
/** @} (end addtogroup BOARD_RA6E2_FPB) */
|