1 /*********************************************************************************************************************** 2 * Copyright [2015] Renesas Electronics Corporation and/or its licensors. All Rights Reserved. 3 * 4 * This file is part of Renesas SynergyTM Software Package (SSP) 5 * 6 * The contents of this file (the "contents") are proprietary and confidential to Renesas Electronics Corporation 7 * and/or its licensors ("Renesas") and subject to statutory and contractual protections. 8 * 9 * This file is subject to a Renesas SSP license agreement. Unless otherwise agreed in an SSP license agreement with 10 * Renesas: 1) you may not use, copy, modify, distribute, display, or perform the contents; 2) you may not use any name 11 * or mark of Renesas for advertising or publicity purposes or in connection with your use of the contents; 3) RENESAS 12 * MAKES NO WARRANTY OR REPRESENTATIONS ABOUT THE SUITABILITY OF THE CONTENTS FOR ANY PURPOSE; THE CONTENTS ARE PROVIDED 13 * "AS IS" WITHOUT ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 14 * PARTICULAR PURPOSE, AND NON-INFRINGEMENT; AND 4) RENESAS SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, OR 15 * CONSEQUENTIAL DAMAGES, INCLUDING DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROJECTS, WHETHER IN AN ACTION OF 16 * CONTRACT OR TORT, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE CONTENTS. Third-party contents 17 * included in this file may be subject to different terms. 18 **********************************************************************************************************************/ 19 /*********************************************************************************************************************** 20 * File Name : bsp.h 21 * Description : Includes and API function available for this board. 22 ***********************************************************************************************************************/ 23 24 /*******************************************************************************************************************//** 25 * @ingroup BSP_Boards 26 * @defgroup BSP_BOARD_S1JA_TB BSP for the TB-S1JA Board 27 * @brief BSP for the TB-S1JA Board 28 * 29 * The TB-S1JA is a target kit for the Renesas SynergyTM S1JA microcontroller in a LQFP64 package. The board 30 * provides easy-to-access interfaces and connectors for all peripherals of the S1JA for application development and 31 * testing: USB Device, SEGGER J-Link on-board debug, one Pmod connector, and one LED indicators. 32 * 33 * @{ 34 ***********************************************************************************************************************/ 35 36 #ifndef BSP_H_ 37 #define BSP_H_ 38 39 /*********************************************************************************************************************** 40 Includes <System Includes> , "Project Includes" 41 ***********************************************************************************************************************/ 42 43 /*******************************************************************************************************************//** 44 * @ingroup BSP_BOARD_S1JA_TB 45 * @defgroup BSP_BOARD_S1JA_TB Build Time Configurations 46 * 47 * The BSP has multiple header files that contain build-time configuration options. Currently there are header files to 48 * configure the following settings: 49 * 50 * - General BSP Options 51 * - Clocks 52 * - Interrupts 53 * - Pin Configuration 54 * 55 * @{ 56 **********************************************************************************************************************/ 57 58 /** @} (end defgroup BSP_CONFIG_S1JA) */ 59 /* BSP Board Specific Includes. */ 60 #include "bsp_init.h" 61 #include "bsp_leds.h" 62 63 /*********************************************************************************************************************** 64 Macro definitions 65 ***********************************************************************************************************************/ 66 #define BSP_BOARD_S1JA_TB 67 68 /*********************************************************************************************************************** 69 Typedef definitions 70 ***********************************************************************************************************************/ 71 72 /*********************************************************************************************************************** 73 Exported global variables 74 ***********************************************************************************************************************/ 75 76 /*********************************************************************************************************************** 77 Exported global functions (to be accessed by other files) 78 ***********************************************************************************************************************/ 79 80 /** @} (end defgroup BSP_BOARD_S1JA_TB) */ 81 82 #endif /* BSP_H_ */ 83