hids_client: move to gatt_service

This commit is contained in:
Milanka Ringwald 2021-03-09 13:25:17 +01:00
parent 2e39b0f098
commit fc975d0e06
5 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,6 @@ SRC_BLE_FILES = \
att_dispatch.c \
att_server.c \
gatt_client.c \
hids_client.c \
le_device_db_memory.c \
le_device_db_tlv.c \
sm.c \

View File

@ -9,6 +9,7 @@ SRC_BLE_GATT_SERVICE_FILES = \
device_information_service_client.c \
device_information_service_server.c \
heart_rate_service_server.c \
hids_client.c \
hids_device.c \
mesh_provisioning_service_server.c \
mesh_proxy_service_server.c \

View File

@ -89,6 +89,7 @@
#include "ble/gatt-service/device_information_service_client.h"
#include "ble/gatt-service/device_information_service_server.h"
#include "ble/gatt-service/heart_rate_service_server.h"
#include "ble/gatt-service/hids_client.h"
#include "ble/gatt-service/hids_device.h"
#include "ble/gatt-service/scan_parameters_service_client.h"
#ifdef ENABLE_MESH
@ -96,7 +97,6 @@
#include "ble/gatt-service/mesh_proxy_service_server.h"
#endif
#include "ble/gatt_client.h"
#include "ble/hids_client.h"
#include "ble/le_device_db.h"
#include "ble/sm.h"
#endif