xref: /btstack/port/stm32-wb55xx-nucleo-freertos/Middlewares/STM32_WPAN/ble/core/ble_core.h (revision 0561b2d8d5dba972c7daa57d5e677f7a1327edfd)
1 /*****************************************************************************
2  * @file    ble_core.h
3  * @author  MCD Application Team
4  * @brief   This file contains the definitions for BLE stack
5  *****************************************************************************
6  * @attention
7  *
8  * <h2><center>&copy; Copyright (c) 2019 STMicroelectronics.
9  * All rights reserved.</center></h2>
10  *
11  * This software component is licensed by ST under Ultimate Liberty license
12  * SLA0044, the "License"; You may not use this file except in compliance with
13  * the License. You may obtain a copy of the License at:
14  *                             www.st.com/SLA0044
15  *
16  ******************************************************************************
17  */
18 
19 #ifndef BLE_CORE_H__
20 #define BLE_CORE_H__
21 
22 
23 /* BLE standard definitions */
24 #include "ble_std.h"
25 
26 /* BLE API definitions */
27 #include "ble_defs.h"
28 #include "auto/ble_gap_aci.h"
29 #include "auto/ble_gatt_aci.h"
30 #include "auto/ble_hal_aci.h"
31 #include "auto/ble_hci_le.h"
32 #include "auto/ble_l2cap_aci.h"
33 #include "auto/ble_events.h"
34 
35 /* BLE stack buffer size definitions */
36 #include "ble_bufsize.h"
37 
38 /* BLE legacy definitions */
39 #include "ble_legacy.h"
40 
41 
42 #endif /* ! BLE_CORE_H__ */
43 
44 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE***/
45