xref: /btstack/port/stm32-wb55xx-nucleo-freertos/Middlewares/STM32_WPAN/ble/ble.h (revision 0561b2d8d5dba972c7daa57d5e677f7a1327edfd)
1*0561b2d8STREFOU Felix /**
2*0561b2d8STREFOU Felix   ******************************************************************************
3*0561b2d8STREFOU Felix   * @file    ble.h
4*0561b2d8STREFOU Felix   * @author  MCD Application Team
5*0561b2d8STREFOU Felix   * @brief   BLE interface
6*0561b2d8STREFOU Felix   ******************************************************************************
7*0561b2d8STREFOU Felix   * @attention
8*0561b2d8STREFOU Felix  *
9*0561b2d8STREFOU Felix  * <h2><center>&copy; Copyright (c) 2019 STMicroelectronics.
10*0561b2d8STREFOU Felix  * All rights reserved.</center></h2>
11*0561b2d8STREFOU Felix  *
12*0561b2d8STREFOU Felix  * This software component is licensed by ST under Ultimate Liberty license
13*0561b2d8STREFOU Felix  * SLA0044, the "License"; You may not use this file except in compliance with
14*0561b2d8STREFOU Felix  * the License. You may obtain a copy of the License at:
15*0561b2d8STREFOU Felix  *                             www.st.com/SLA0044
16*0561b2d8STREFOU Felix  *
17*0561b2d8STREFOU Felix  ******************************************************************************
18*0561b2d8STREFOU Felix  */
19*0561b2d8STREFOU Felix 
20*0561b2d8STREFOU Felix 
21*0561b2d8STREFOU Felix /* Define to prevent recursive inclusion -------------------------------------*/
22*0561b2d8STREFOU Felix #ifndef __BLE_H
23*0561b2d8STREFOU Felix #define __BLE_H
24*0561b2d8STREFOU Felix 
25*0561b2d8STREFOU Felix #ifdef __cplusplus
26*0561b2d8STREFOU Felix extern "C" {
27*0561b2d8STREFOU Felix #endif
28*0561b2d8STREFOU Felix 
29*0561b2d8STREFOU Felix 
30*0561b2d8STREFOU Felix /* Includes ------------------------------------------------------------------*/
31*0561b2d8STREFOU Felix #include "ble_conf.h"
32*0561b2d8STREFOU Felix #include "ble_dbg_conf.h"
33*0561b2d8STREFOU Felix 
34*0561b2d8STREFOU Felix /**< core */
35*0561b2d8STREFOU Felix #include "core/ble_core.h"
36*0561b2d8STREFOU Felix #include "core/ble_bufsize.h"
37*0561b2d8STREFOU Felix #include "core/ble_defs.h"
38*0561b2d8STREFOU Felix #include "core/ble_legacy.h"
39*0561b2d8STREFOU Felix #include "core/ble_std.h"
40*0561b2d8STREFOU Felix 
41*0561b2d8STREFOU Felix /**< blesvc */
42*0561b2d8STREFOU Felix #include "svc/Inc/bls.h"
43*0561b2d8STREFOU Felix #include "svc/Inc/crs_stm.h"
44*0561b2d8STREFOU Felix #include "svc/Inc/dis.h"
45*0561b2d8STREFOU Felix #include "svc/Inc/eds_stm.h"
46*0561b2d8STREFOU Felix #include "svc/Inc/hids.h"
47*0561b2d8STREFOU Felix #include "svc/Inc/hrs.h"
48*0561b2d8STREFOU Felix #include "svc/Inc/hts.h"
49*0561b2d8STREFOU Felix #include "svc/Inc/ias.h"
50*0561b2d8STREFOU Felix #include "svc/Inc/lls.h"
51*0561b2d8STREFOU Felix #include "svc/Inc/tps.h"
52*0561b2d8STREFOU Felix #include "svc/Inc/motenv_stm.h"
53*0561b2d8STREFOU Felix #include "svc/Inc/p2p_stm.h"
54*0561b2d8STREFOU Felix #include "svc/Inc/otas_stm.h"
55*0561b2d8STREFOU Felix #include "svc/Inc/mesh.h"
56*0561b2d8STREFOU Felix #include "svc/Inc/template_stm.h"
57*0561b2d8STREFOU Felix 
58*0561b2d8STREFOU Felix #include "svc/Inc/svc_ctl.h"
59*0561b2d8STREFOU Felix 
60*0561b2d8STREFOU Felix #include "svc/Inc/uuid.h"
61*0561b2d8STREFOU Felix 
62*0561b2d8STREFOU Felix 
63*0561b2d8STREFOU Felix /* Exported types ------------------------------------------------------------*/
64*0561b2d8STREFOU Felix /* Exported constants --------------------------------------------------------*/
65*0561b2d8STREFOU Felix /* External variables --------------------------------------------------------*/
66*0561b2d8STREFOU Felix /* Exported macros -----------------------------------------------------------*/
67*0561b2d8STREFOU Felix /* Exported functions ------------------------------------------------------- */
68*0561b2d8STREFOU Felix 
69*0561b2d8STREFOU Felix #ifdef __cplusplus
70*0561b2d8STREFOU Felix }
71*0561b2d8STREFOU Felix #endif
72*0561b2d8STREFOU Felix 
73*0561b2d8STREFOU Felix #endif /*__BLE_H */
74*0561b2d8STREFOU Felix 
75*0561b2d8STREFOU Felix /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
76