Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pkg/nimble/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ nimble_svc_gap:
nimble_svc_gatt:
"$(MAKE)" -C $(PDIR)/nimble/host/services/gatt/src/ -f $(TDIR)/svc.gatt.mk

nimble_svc_ipss:
"$(MAKE)" -C $(PDIR)/nimble/host/services/ipss/src/ -f $(TDIR)/svc.ipss.mk

# controller specific modules
nimble_transport_ram:
"$(MAKE)" -C $(PDIR)/nimble/transport/ram/src/ -f $(TDIR)/transport.ram.mk
Expand Down
3 changes: 3 additions & 0 deletions pkg/nimble/Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ endif
ifneq (,$(filter nimble_svc_ias,$(USEMODULE)))
INCLUDES += $(NIMIBASE)/nimble/host/services/ias/include
endif
ifneq (,$(filter nimble_svc_ipss,$(USEMODULE)))
INCLUDES += $(NIMIBASE)/nimble/host/services/ipss/include
endif
ifneq (,$(filter nimble_svc_lls,$(USEMODULE)))
INCLUDES += $(NIMIBASE)/nimble/host/services/lls/include
endif
Expand Down
6 changes: 6 additions & 0 deletions pkg/nimble/contrib/nimble_riot.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
#ifdef MODULE_NIMBLE_SVC_GATT
#include "services/gatt/ble_svc_gatt.h"
#endif
#ifdef MODULE_NIMBLE_SVC_IPSS
#include "services/ipss/ble_svc_ipss.h"
#endif

#ifdef MODULE_NIMBLE_CONTROLLER
#ifdef CPU_FAM_NRF52
Expand Down Expand Up @@ -103,4 +106,7 @@ void nimble_riot_init(void)
#ifdef MODULE_NIMBLE_SVC_GATT
ble_svc_gatt_init();
#endif
#ifdef MODULE_NIMBLE_SVC_IPSS
ble_svc_ipss_init();
#endif
}
3 changes: 3 additions & 0 deletions pkg/nimble/svc.ipss.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
MODULE = nimble_svc_ipss

include $(RIOTBASE)/Makefile.base