xref: /btstack/port/renesas-tb-s1ja-cc256x/template/btstack_example/synergy/board/s1ja_tb/bsp_leds.h (revision 3b5c872a8c45689e8cc17891f01530f5aa5e911c)
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_leds.h
21 * Description  : This module has information about the LEDs on this board.
22 ***********************************************************************************************************************/
23 
24 /*******************************************************************************************************************//**
25  * @ingroup BSP_BOARD_S1JA_TB
26  * @defgroup BSP_BOARD_S1JA_TB Board LEDs
27  * @brief LED information for this board.
28  *
29  * This is code specific to the TBS1JA board. It includes info on the number of LEDs and which pins are they
30  * are on.
31  *
32  * @{
33 ***********************************************************************************************************************/
34 
35 #ifndef BSP_BOARD_LEDS_H
36 #define BSP_BOARD_LEDS_H
37 
38 /** Common macro for SSP header files. There is also a corresponding SSP_FOOTER macro at the end of this file. */
39 SSP_HEADER
40 
41 /***********************************************************************************************************************
42  * Macro definitions
43  **********************************************************************************************************************/
44 
45 /***********************************************************************************************************************
46  * Typedef definitions
47  **********************************************************************************************************************/
48 /** Available user-controllable LEDs on this board. These enums can be can be used to index into the array of LED pins
49  * found in the bsp_leds_t structure. */
50 typedef enum e_bsp_led
51 {
52     BSP_LED_LED1,    ///< LED1
53 } bsp_led_t;
54 
55 /***********************************************************************************************************************
56  * Exported global variables
57  **********************************************************************************************************************/
58 
59 /***********************************************************************************************************************
60  * Public Functions
61  **********************************************************************************************************************/
62 
63 /** Common macro for SSP header files. There is also a corresponding SSP_HEADER macro at the top of this file. */
64 SSP_FOOTER
65 
66 #endif /* BSP_BOARD_LEDS_H */
67 
68 /** @} (end defgroup BSP_TBS1JA_LEDS) */
69