From 51aa8fe407026549798ae93d0e4d98fc3b45fcdd Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Fri, 22 Feb 2019 13:55:37 +0100 Subject: [PATCH] examples/nimble_gatt: use gatt/gap svcs explicitly --- examples/nimble_gatt/Makefile | 2 ++ pkg/nimble/service.gap.mk | 5 ----- pkg/nimble/service.gatt.mk | 5 ----- 3 files changed, 2 insertions(+), 10 deletions(-) delete mode 100644 pkg/nimble/service.gap.mk delete mode 100644 pkg/nimble/service.gatt.mk diff --git a/examples/nimble_gatt/Makefile b/examples/nimble_gatt/Makefile index e256343e6a..a8424572f8 100644 --- a/examples/nimble_gatt/Makefile +++ b/examples/nimble_gatt/Makefile @@ -12,6 +12,8 @@ RIOTBASE ?= $(CURDIR)/../.. # Include NimBLE USEPKG += nimble +USEMODULE += nimble_svc_gap +USEMODULE += nimble_svc_gatt # We also use the AD part of the BLE helper module USEMODULE += bluetil_ad diff --git a/pkg/nimble/service.gap.mk b/pkg/nimble/service.gap.mk deleted file mode 100644 index a584f7ff2b..0000000000 --- a/pkg/nimble/service.gap.mk +++ /dev/null @@ -1,5 +0,0 @@ -MODULE = nimble_host_services_gap - -SRC += ble_svc_gap.c - -include $(RIOTBASE)/Makefile.base diff --git a/pkg/nimble/service.gatt.mk b/pkg/nimble/service.gatt.mk deleted file mode 100644 index c144fbae66..0000000000 --- a/pkg/nimble/service.gatt.mk +++ /dev/null @@ -1,5 +0,0 @@ -MODULE = nimble_host_services_gatt - -SRC += ble_svc_gatt.c - -include $(RIOTBASE)/Makefile.base