-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5e1ed2b
commit edcc97d
Showing
499 changed files
with
200,246 additions
and
13,776 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates | ||
* | ||
* SPDX-License-Identifier: BSD-3-Clause | ||
*/ | ||
|
||
/*******************************************************************************************************************//** | ||
* @ingroup BOARDS | ||
* @defgroup BOARD_RA8E1_FPB for the RA8E1-FPB board | ||
* @brief BSP for the RA8E1-FPB Board | ||
* | ||
* The RA8E1_FPB is a development kit for the Renesas R7FA8E1AFDCFB microcontroller in a LQFP144 package. | ||
* | ||
* @{ | ||
**********************************************************************************************************************/ | ||
|
||
#ifndef BOARD_H | ||
#define BOARD_H | ||
|
||
/*********************************************************************************************************************** | ||
* Includes <System Includes> , "Project Includes" | ||
**********************************************************************************************************************/ | ||
|
||
/* BSP Board Specific Includes. */ | ||
#include "board_init.h" | ||
#include "board_leds.h" | ||
#include "board_ethernet_phy.h" | ||
|
||
/*********************************************************************************************************************** | ||
* Macro definitions | ||
**********************************************************************************************************************/ | ||
#define BOARD_RA8E1_FPB | ||
|
||
/*********************************************************************************************************************** | ||
* Typedef definitions | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Exported global variables | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Exported global functions (to be accessed by other files) | ||
**********************************************************************************************************************/ | ||
|
||
/** @} (end defgroup BOARD_RA8E1_FPB) */ | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates | ||
* | ||
* SPDX-License-Identifier: BSD-3-Clause | ||
*/ | ||
|
||
/*******************************************************************************************************************//** | ||
* @ingroup BOARD_RA8E1_FPB | ||
* @defgroup BOARD_RA8E1_FPB_ETHERNET_PHY Board Ethernet Phy | ||
* @brief Ethernet Phy information for this board. | ||
* | ||
* This is code specific to the RA8E1_FPB board. | ||
* | ||
* @{ | ||
**********************************************************************************************************************/ | ||
|
||
#ifndef BSP_ETHERNET_PHY_H | ||
#define BSP_ETHERNET_PHY_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 | ||
**********************************************************************************************************************/ | ||
#define ETHER_PHY_CFG_TARGET_ICS1894_ENABLE (1) | ||
#define ETHER_PHY_LSI_TYPE_KIT_COMPONENT ETHER_PHY_LSI_TYPE_ICS1894 | ||
#define BOARD_PHY_REF_CLK (1) | ||
|
||
/*********************************************************************************************************************** | ||
* Typedef definitions | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Exported global variables | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Public Functions | ||
**********************************************************************************************************************/ | ||
|
||
/** Common macro for FSP header files. There is also a corresponding FSP_HEADER macro at the top of this file. */ | ||
FSP_FOOTER | ||
|
||
#endif | ||
|
||
/** @} (end defgroup BOARD_RA8E1_FPB_ETHERNET_PHY) */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates | ||
* | ||
* SPDX-License-Identifier: BSD-3-Clause | ||
*/ | ||
|
||
/*******************************************************************************************************************//** | ||
* @addtogroup BOARD_RA8E1_FPB | ||
* | ||
* @{ | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Includes <System Includes> , "Project Includes" | ||
**********************************************************************************************************************/ | ||
#include "bsp_api.h" | ||
|
||
#if defined(BOARD_RA8E1_FPB) | ||
|
||
/*********************************************************************************************************************** | ||
* Macro definitions | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Typedef definitions | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Exported global variables (to be accessed by other files) | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Private global variables and functions | ||
**********************************************************************************************************************/ | ||
|
||
/*******************************************************************************************************************//** | ||
* @brief Performs any initialization specific to this BSP. | ||
* | ||
* @param[in] p_args Pointer to arguments of the user's choice. | ||
**********************************************************************************************************************/ | ||
void bsp_init (void * p_args) | ||
{ | ||
FSP_PARAMETER_NOT_USED(p_args); | ||
} | ||
|
||
#endif | ||
|
||
/** @} (end addtogroup BOARD_RA8E1_FPB) */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates | ||
* | ||
* SPDX-License-Identifier: BSD-3-Clause | ||
*/ | ||
|
||
/*******************************************************************************************************************//** | ||
* @addtogroup BOARD_RA8E1_FPB | ||
* @brief Board specific code for the RA8E1-FPB Board | ||
* | ||
* This include file is specific to the RA8E1-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_RA8E1_FPB) */ |
Oops, something went wrong.