-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
edcc97d
commit 21e946b
Showing
2,742 changed files
with
1,854,616 additions
and
1,832,111 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 |
---|---|---|
@@ -1,47 +1,47 @@ | ||
/* | ||
* Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates | ||
* | ||
* SPDX-License-Identifier: BSD-3-Clause | ||
*/ | ||
|
||
/*******************************************************************************************************************//** | ||
* @ingroup BOARDS | ||
* @defgroup BOARD_RA0E1_FPB for the RA0E1_FPB board | ||
* @brief BSP for the RA0E1_FPB Board | ||
* | ||
* The RA0E1_FPB is a development kit for the Renesas R7FA0E1073CFJ microcontroller in a LQFP32 package. | ||
* | ||
* @{ | ||
**********************************************************************************************************************/ | ||
|
||
#ifndef BOARD_H | ||
#define BOARD_H | ||
|
||
/*********************************************************************************************************************** | ||
* Includes <System Includes> , "Project Includes" | ||
**********************************************************************************************************************/ | ||
|
||
/* BSP Board Specific Includes. */ | ||
#include "board_init.h" | ||
#include "board_leds.h" | ||
|
||
/*********************************************************************************************************************** | ||
* Macro definitions | ||
**********************************************************************************************************************/ | ||
#define BOARD_RA0E1_FPB | ||
|
||
/*********************************************************************************************************************** | ||
* Typedef definitions | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Exported global variables | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Exported global functions (to be accessed by other files) | ||
**********************************************************************************************************************/ | ||
|
||
/** @} (end defgroup BOARD_RA0E1_FPB) */ | ||
|
||
#endif | ||
/* | ||
* Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates | ||
* | ||
* SPDX-License-Identifier: BSD-3-Clause | ||
*/ | ||
|
||
/*******************************************************************************************************************//** | ||
* @ingroup BOARDS | ||
* @defgroup BOARD_RA0E1_FPB for the RA0E1_FPB board | ||
* @brief BSP for the RA0E1_FPB Board | ||
* | ||
* The RA0E1_FPB is a development kit for the Renesas R7FA0E1073CFJ microcontroller in a LQFP32 package. | ||
* | ||
* @{ | ||
**********************************************************************************************************************/ | ||
|
||
#ifndef BOARD_H | ||
#define BOARD_H | ||
|
||
/*********************************************************************************************************************** | ||
* Includes <System Includes> , "Project Includes" | ||
**********************************************************************************************************************/ | ||
|
||
/* BSP Board Specific Includes. */ | ||
#include "board_init.h" | ||
#include "board_leds.h" | ||
|
||
/*********************************************************************************************************************** | ||
* Macro definitions | ||
**********************************************************************************************************************/ | ||
#define BOARD_RA0E1_FPB | ||
|
||
/*********************************************************************************************************************** | ||
* Typedef definitions | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Exported global variables | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Exported global functions (to be accessed by other files) | ||
**********************************************************************************************************************/ | ||
|
||
/** @} (end defgroup BOARD_RA0E1_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 |
---|---|---|
@@ -1,48 +1,48 @@ | ||
/* | ||
* Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates | ||
* | ||
* SPDX-License-Identifier: BSD-3-Clause | ||
*/ | ||
|
||
/*******************************************************************************************************************//** | ||
* @addtogroup BOARD_RA0E1_FPB | ||
* | ||
* @{ | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Includes <System Includes> , "Project Includes" | ||
**********************************************************************************************************************/ | ||
#include "bsp_api.h" | ||
|
||
#if defined(BOARD_RA0E1_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_RA0E1_FPB) */ | ||
/* | ||
* Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates | ||
* | ||
* SPDX-License-Identifier: BSD-3-Clause | ||
*/ | ||
|
||
/*******************************************************************************************************************//** | ||
* @addtogroup BOARD_RA0E1_FPB | ||
* | ||
* @{ | ||
**********************************************************************************************************************/ | ||
|
||
/*********************************************************************************************************************** | ||
* Includes <System Includes> , "Project Includes" | ||
**********************************************************************************************************************/ | ||
#include "bsp_api.h" | ||
|
||
#if defined(BOARD_RA0E1_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_RA0E1_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 |
---|---|---|
@@ -1,44 +1,44 @@ | ||
/* | ||
* Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates | ||
* | ||
* SPDX-License-Identifier: BSD-3-Clause | ||
*/ | ||
|
||
/*******************************************************************************************************************//** | ||
* @addtogroup BOARD_RA0E1_FPB | ||
* @brief Board specific code for the RA0E1_FPB Board | ||
* | ||
* This include file is specific to the RA0E1_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_RA0E1_FPB) */ | ||
/* | ||
* Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates | ||
* | ||
* SPDX-License-Identifier: BSD-3-Clause | ||
*/ | ||
|
||
/*******************************************************************************************************************//** | ||
* @addtogroup BOARD_RA0E1_FPB | ||
* @brief Board specific code for the RA0E1_FPB Board | ||
* | ||
* This include file is specific to the RA0E1_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_RA0E1_FPB) */ |
Oops, something went wrong.