48 lines
2.1 KiB
C
48 lines
2.1 KiB
C
/*
|
|
* Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/*******************************************************************************************************************//**
|
|
* @ingroup BOARDS
|
|
* @defgroup BOARD_RA6E2_FPB for the RA6E2-FPB board
|
|
* @brief BSP for the RA6E2-FPB Board
|
|
*
|
|
* The RA6E2_FPB is a development kit for the Renesas R7FA6E2BB3CFM microcontroller in a LQFP64 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_RA6E2_FPB
|
|
|
|
/***********************************************************************************************************************
|
|
* Typedef definitions
|
|
**********************************************************************************************************************/
|
|
|
|
/***********************************************************************************************************************
|
|
* Exported global variables
|
|
**********************************************************************************************************************/
|
|
|
|
/***********************************************************************************************************************
|
|
* Exported global functions (to be accessed by other files)
|
|
**********************************************************************************************************************/
|
|
|
|
/** @} (end defgroup BOARD_RA6E2_FPB) */
|
|
|
|
#endif
|