mirror of https://github.com/ARMmbed/mbed-os.git
BLE: Move common publi headers into ble/common
parent
d3427ca495
commit
27cb03824e
|
@ -19,14 +19,14 @@
|
|||
#ifndef MBED_BLE_H__
|
||||
#define MBED_BLE_H__
|
||||
|
||||
#include "FunctionPointerWithContext.h"
|
||||
#include "ble/common/FunctionPointerWithContext.h"
|
||||
#include "platform/mbed_error.h"
|
||||
#include "platform/mbed_assert.h"
|
||||
#include "platform/mbed_toolchain.h"
|
||||
|
||||
#include "ble/common/ble/BLERoles.h"
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/BLERoles.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
|
||||
#include "ble/Gap.h"
|
||||
#include "ble/GattClient.h"
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#ifndef BLE_GAP_GAP_H
|
||||
#define BLE_GAP_GAP_H
|
||||
|
||||
#include "CallChainOfFunctionPointersWithContext.h"
|
||||
#include "ble/common/CallChainOfFunctionPointersWithContext.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
|
@ -27,8 +27,8 @@
|
|||
#include "drivers/LowPowerTicker.h"
|
||||
#include "platform/mbed_error.h"
|
||||
|
||||
#include "ble/common/ble/BLERoles.h"
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/BLERoles.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
#include "ble/gap/AdvertisingDataBuilder.h"
|
||||
#include "ble/gap/AdvertisingDataParser.h"
|
||||
#include "ble/gap/AdvertisingDataSimpleBuilder.h"
|
||||
|
|
|
@ -21,10 +21,10 @@
|
|||
|
||||
#define MBED_GATT_CLIENT_H__
|
||||
|
||||
#include "CallChainOfFunctionPointersWithContext.h"
|
||||
#include "ble/common/CallChainOfFunctionPointersWithContext.h"
|
||||
#include <algorithm>
|
||||
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "ble/common/ble/GattAttribute.h"
|
||||
#include "ble/common/ble/ServiceDiscovery.h"
|
||||
#include "ble/common/ble/CharacteristicDescriptorDiscovery.h"
|
||||
|
|
|
@ -20,14 +20,14 @@
|
|||
#ifndef MBED_GATT_SERVER_H__
|
||||
#define MBED_GATT_SERVER_H__
|
||||
|
||||
#include "CallChainOfFunctionPointersWithContext.h"
|
||||
#include "ble/common/CallChainOfFunctionPointersWithContext.h"
|
||||
|
||||
#include "ble/common/ble/GattService.h"
|
||||
#include "ble/common/ble/GattAttribute.h"
|
||||
#include "ble/common/ble/GattServerEvents.h"
|
||||
#include "ble/common/ble/GattCallbackParamTypes.h"
|
||||
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "ble/Gap.h"
|
||||
#include "SecurityManager.h"
|
||||
|
||||
|
|
|
@ -20,13 +20,13 @@
|
|||
#define BLE_SECURITY_MANAGER_H_
|
||||
|
||||
#include <stdint.h>
|
||||
#include "CallChainOfFunctionPointersWithContext.h"
|
||||
#include "ble/common/CallChainOfFunctionPointersWithContext.h"
|
||||
#include "platform/Callback.h"
|
||||
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
|
||||
namespace ble {
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
#include "SafeEnum.h"
|
||||
#include "ble/common/SafeEnum.h"
|
||||
#include "platform/Span.h"
|
||||
|
||||
#include "ble/gap/Types.h"
|
|
@ -20,8 +20,8 @@
|
|||
#define MBED_CALLCHAIN_OF_FUNCTION_POINTERS_WITH_CONTEXT_H
|
||||
|
||||
#include <string.h>
|
||||
#include "FunctionPointerWithContext.h"
|
||||
#include "SafeBool.h"
|
||||
#include "ble/common/FunctionPointerWithContext.h"
|
||||
#include "ble/common/SafeBool.h"
|
||||
|
||||
/**
|
||||
* @addtogroup ble
|
|
@ -20,7 +20,7 @@
|
|||
#define MBED_FUNCTIONPOINTER_WITH_CONTEXT_H
|
||||
|
||||
#include <string.h>
|
||||
#include "SafeBool.h"
|
||||
#include "ble/common/SafeBool.h"
|
||||
|
||||
/**
|
||||
* @file
|
|
@ -24,7 +24,7 @@
|
|||
#include <string.h>
|
||||
#include <algorithm>
|
||||
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
|
||||
/**
|
||||
* @file
|
|
@ -19,7 +19,7 @@
|
|||
#ifndef MBED_CHARACTERISTIC_DESCRIPTOR_DISCOVERY_H__
|
||||
#define MBED_CHARACTERISTIC_DESCRIPTOR_DISCOVERY_H__
|
||||
|
||||
#include "FunctionPointerWithContext.h"
|
||||
#include "ble/common/FunctionPointerWithContext.h"
|
||||
|
||||
class DiscoveredCharacteristic; // forward declaration
|
||||
class DiscoveredCharacteristicDescriptor; // forward declaration
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#ifndef MBED_DISCOVERED_CHARACTERISTIC_H__
|
||||
#define MBED_DISCOVERED_CHARACTERISTIC_H__
|
||||
|
||||
#include "ble/common/ble/UUID.h"
|
||||
#include "ble/common/UUID.h"
|
||||
#include "ble/common/ble/GattAttribute.h"
|
||||
#include "ble/common/ble/GattCallbackParamTypes.h"
|
||||
#include "ble/common/ble/CharacteristicDescriptorDiscovery.h"
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#ifndef MBED_DISCOVERED_CHARACTERISTIC_DESCRIPTOR_H__
|
||||
#define MBED_DISCOVERED_CHARACTERISTIC_DESCRIPTOR_H__
|
||||
|
||||
#include "ble/common/ble/UUID.h"
|
||||
#include "ble/common/UUID.h"
|
||||
#include "ble/Gap.h"
|
||||
#include "ble/common/ble/GattAttribute.h"
|
||||
#include "ble/common/ble/CharacteristicDescriptorDiscovery.h"
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#ifndef MBED_DISCOVERED_SERVICE_H__
|
||||
#define MBED_DISCOVERED_SERVICE_H__
|
||||
|
||||
#include "ble/common/ble/UUID.h"
|
||||
#include "ble/common/UUID.h"
|
||||
#include "ble/common/ble/GattAttribute.h"
|
||||
|
||||
/**
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#define BLE_PAL_GAP_MESSAGE_H_
|
||||
|
||||
#include "ble/common/ble/GapTypes.h"
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
|
||||
namespace ble {
|
||||
|
||||
|
|
|
@ -21,8 +21,8 @@
|
|||
|
||||
#include <algorithm>
|
||||
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/ble/SafeEnum.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
#include "ble/common/SafeEnum.h"
|
||||
|
||||
namespace ble {
|
||||
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
#ifndef MBED_GATT_ATTRIBUTE_H__
|
||||
#define MBED_GATT_ATTRIBUTE_H__
|
||||
|
||||
#include "ble/common/ble/UUID.h"
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/UUID.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
|
||||
/**
|
||||
* @addtogroup ble
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
#include "CallChainOfFunctionPointersWithContext.h"
|
||||
#include "ble/common/CallChainOfFunctionPointersWithContext.h"
|
||||
|
||||
#ifndef MBED_BLE_GATT_CALLBACK_PARAM_TYPES_H__
|
||||
#define MBED_BLE_GATT_CALLBACK_PARAM_TYPES_H__
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#ifndef __GATT_CHARACTERISTIC_H__
|
||||
#define __GATT_CHARACTERISTIC_H__
|
||||
|
||||
#include "FunctionPointerWithContext.h"
|
||||
#include "ble/common/FunctionPointerWithContext.h"
|
||||
|
||||
#include "ble/common/ble/GattAttribute.h"
|
||||
#include "ble/common/ble/GattCallbackParamTypes.h"
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#ifndef MBED_GATT_SERVICE_H__
|
||||
#define MBED_GATT_SERVICE_H__
|
||||
|
||||
#include "ble/common/ble/UUID.h"
|
||||
#include "ble/common/UUID.h"
|
||||
#include "ble/common/ble/GattCharacteristic.h"
|
||||
|
||||
/**
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
#ifndef MBED_BLE_SERVICE_DISOVERY_H__
|
||||
#define MBED_BLE_SERVICE_DISOVERY_H__
|
||||
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/ble/UUID.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "ble/common/UUID.h"
|
||||
#include "ble/common/ble/GattAttribute.h"
|
||||
|
||||
class DiscoveredService;
|
||||
|
|
|
@ -24,9 +24,9 @@
|
|||
#include <stdlib.h>
|
||||
#include "platform/NonCopyable.h"
|
||||
|
||||
#include "ble/common/ble/UUID.h"
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/UUID.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "ble/gap/AdvertisingDataTypes.h"
|
||||
#include "ble/gap/Types.h"
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include "platform/Span.h"
|
||||
|
||||
#include "ble/common/ble/UUID.h"
|
||||
#include "ble/common/UUID.h"
|
||||
#include "ble/gap/AdvertisingDataBuilder.h"
|
||||
|
||||
namespace ble {
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#ifndef BLE_GAP_ADVERTISINGDATATYPES_H
|
||||
#define BLE_GAP_ADVERTISINGDATATYPES_H
|
||||
|
||||
#include "ble/common/ble/SafeEnum.h"
|
||||
#include "ble/common/SafeEnum.h"
|
||||
|
||||
namespace ble {
|
||||
|
||||
|
|
|
@ -21,9 +21,9 @@
|
|||
|
||||
#include <algorithm>
|
||||
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/ble/SafeEnum.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "ble/common/SafeEnum.h"
|
||||
|
||||
namespace ble {
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include "mbed_assert.h"
|
||||
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
|
||||
namespace ble {
|
||||
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
#ifndef BLE_GAP_EVENTS_H
|
||||
#define BLE_GAP_EVENTS_H
|
||||
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
|
||||
namespace ble {
|
||||
|
||||
|
|
|
@ -21,8 +21,8 @@
|
|||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
|
||||
namespace ble {
|
||||
|
||||
|
|
|
@ -19,9 +19,9 @@
|
|||
#ifndef BLE_GAP_TYPES_H
|
||||
#define BLE_GAP_TYPES_H
|
||||
|
||||
#include "ble/common/ble/Duration.h"
|
||||
#include "ble/common/ble/Bounded.h"
|
||||
#include "ble/common/ble/SafeEnum.h"
|
||||
#include "ble/common/Duration.h"
|
||||
#include "ble/common/Bounded.h"
|
||||
#include "ble/common/SafeEnum.h"
|
||||
|
||||
namespace ble {
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include <BLETypes.h>
|
||||
#include "wsf_buf.h"
|
||||
#include "CordioHCITransportDriver.h"
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "mbed.h"
|
||||
|
||||
namespace ble {
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#define IMPL_BLE_INSTANCE_BASE_H_
|
||||
|
||||
#include "ble/BLE.h"
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "source/BLEInstanceBase.h"
|
||||
|
||||
#include "CordioHCIDriver.h"
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#define IMPL_PAL_SECURITY_MANAGER_
|
||||
|
||||
#include "source/pal/PalSecurityManager.h"
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "wsf_types.h"
|
||||
#include "wsf_os.h"
|
||||
#include "sec_api.h"
|
||||
|
|
|
@ -16,11 +16,11 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "BLERoles.h"
|
||||
#include "ble/common/BLERoles.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "source/pal/PalSecurityManager.h"
|
||||
#include "source/pal/PalAttClient.h"
|
||||
#include "dm_api.h"
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#ifndef IMPL_GAP_GAP_H
|
||||
#define IMPL_GAP_GAP_H
|
||||
|
||||
#include "CallChainOfFunctionPointersWithContext.h"
|
||||
#include "ble/common/CallChainOfFunctionPointersWithContext.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
|
@ -27,8 +27,8 @@
|
|||
#include "drivers/LowPowerTicker.h"
|
||||
#include "platform/mbed_error.h"
|
||||
|
||||
#include "ble/common/ble/BLERoles.h"
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/BLERoles.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
#include "ble/gap/AdvertisingDataBuilder.h"
|
||||
#include "ble/gap/AdvertisingDataSimpleBuilder.h"
|
||||
#include "ble/gap/ConnectionParameters.h"
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "BLERoles.h"
|
||||
#include "ble/common/BLERoles.h"
|
||||
|
||||
#if BLE_FEATURE_GATT_CLIENT
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
|||
#include "source/pal/AttServerMessage.h"
|
||||
#include "ble/common/ble/DiscoveredService.h"
|
||||
#include "ble/common/ble/DiscoveredCharacteristic.h"
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "source/BLEInstanceBase.h"
|
||||
#include "ble/SecurityManager.h"
|
||||
#include <algorithm>
|
||||
|
|
|
@ -21,11 +21,11 @@
|
|||
|
||||
#include "ble/BLE.h"
|
||||
|
||||
#include "CallChainOfFunctionPointersWithContext.h"
|
||||
#include "ble/common/CallChainOfFunctionPointersWithContext.h"
|
||||
#include <algorithm>
|
||||
|
||||
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "ble/common/ble/GattAttribute.h"
|
||||
#include "ble/common/ble/ServiceDiscovery.h"
|
||||
#include "ble/common/ble/CharacteristicDescriptorDiscovery.h"
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "BLERoles.h"
|
||||
#include "ble/common/BLERoles.h"
|
||||
#include <algorithm>
|
||||
#include "GattServerImpl.h"
|
||||
#include "source/BLEInstanceBase.h"
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#ifndef MBED_CORDIO_GATT_SERVER_H__
|
||||
#define MBED_CORDIO_GATT_SERVER_H__
|
||||
|
||||
#include "CallChainOfFunctionPointersWithContext.h"
|
||||
#include "ble/common/CallChainOfFunctionPointersWithContext.h"
|
||||
|
||||
#include "ble/common/ble/GattService.h"
|
||||
#include "ble/common/ble/GattAttribute.h"
|
||||
|
@ -28,7 +28,7 @@
|
|||
|
||||
#include <stddef.h>
|
||||
#include <ble/GattServer.h>
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "ble/Gap.h"
|
||||
#include "wsf_types.h"
|
||||
#include "att_api.h"
|
||||
|
|
|
@ -22,8 +22,8 @@
|
|||
#include <stdlib.h>
|
||||
#include "platform/Callback.h"
|
||||
|
||||
#include "ble/common/ble/GapTypes.h"
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
//#include "ble/common/ble/GapTypes.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
#include "ble/Gap.h"
|
||||
|
||||
namespace ble {
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "BLERoles.h"
|
||||
#include "ble/common/BLERoles.h"
|
||||
|
||||
#include "SecurityManagerImpl.h"
|
||||
#include "source/pal/PalSecurityManager.h"
|
||||
|
|
|
@ -20,15 +20,15 @@
|
|||
#define IMPL_SECURITY_MANAGER_H_
|
||||
|
||||
#include <stdint.h>
|
||||
#include "CallChainOfFunctionPointersWithContext.h"
|
||||
#include "ble/common/CallChainOfFunctionPointersWithContext.h"
|
||||
#include "platform/Callback.h"
|
||||
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "ble/Gap.h"
|
||||
|
||||
#include "ble/common/ble/GapTypes.h"
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
#include "SecurityDb.h"
|
||||
#include "source/pal/PalConnectionMonitor.h"
|
||||
#include "source/pal/PalSigningMonitor.h"
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
#ifndef BLE_PAL_ATT_SERVER_MESSAGE_H_
|
||||
#define BLE_PAL_ATT_SERVER_MESSAGE_H_
|
||||
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/ble/UUID.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
#include "ble/common/UUID.h"
|
||||
|
||||
namespace ble {
|
||||
|
||||
|
|
|
@ -21,9 +21,9 @@
|
|||
|
||||
#include "platform/Callback.h"
|
||||
|
||||
#include "ble/common/ble/UUID.h"
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/UUID.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "AttServerMessage.h"
|
||||
|
||||
namespace ble {
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#define MBED_BLE_CONNECTION_EVENT_MONITOR
|
||||
|
||||
#include "ble/Gap.h"
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
|
||||
namespace ble {
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
#include "ble/common/ble/GapTypes.h"
|
||||
#include "ble/common/ble/GapEvents.h"
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
|
||||
#include "dm_api.h"
|
||||
|
||||
|
|
|
@ -21,9 +21,9 @@
|
|||
|
||||
#include "platform/Callback.h"
|
||||
|
||||
#include "ble/common/ble/UUID.h"
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/UUID.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "AttServerMessage.h"
|
||||
|
||||
namespace ble {
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
#define BLE_PAL_GENERIC_ACCESS_SERVICE_H_
|
||||
|
||||
#include "ble/common/ble/GapTypes.h"
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "ble/Gap.h"
|
||||
|
||||
namespace ble {
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include "platform/Callback.h"
|
||||
#include "platform/NonCopyable.h"
|
||||
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
#include "ble/common/ble/GapTypes.h"
|
||||
|
||||
#include "wsf_types.h"
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#ifndef MBED_BLE_SIGNING_EVENT_MONITOR
|
||||
#define MBED_BLE_SIGNING_EVENT_MONITOR
|
||||
|
||||
#include "ble/common/ble/BLETypes.h"
|
||||
#include "ble/common/BLETypes.h"
|
||||
|
||||
namespace ble {
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include "ble/common/ble/blecommon.h"
|
||||
#include "ble/common/blecommon.h"
|
||||
#include "CordioHCIDriver.h"
|
||||
#include "CordioHCITransportDriver.h"
|
||||
#include "mbed.h"
|
||||
|
|
Loading…
Reference in New Issue