I wrote my own Nimble service and now would like to add some 'standardized' services (DIS & BAS)
I've noticed that the Nimble stack have these implemented under
%IDF_PATH%\components\bt\host\nimble\nimble\nimble\host\services\bas &
%IDF_PATH%\components\bt\host\nimble\nimble\nimble\host\services\dis
However, I have no idea how to manipulate the make/cmake/ninja files in order to include the relevant *.h & **.c files
I've tried to add
Code: Select all
#include "services/bas/ble_svc_bas.h"
#include "services/bas/ble_svc_dis.h"
Code: Select all
ble_svc_bas_init();
ble_svc_dis_init();
Any advise?
Thanks