apps/blecent: Remove explicit dependency to controller

blecent should work with any transport, it does not need explicit
dependency to controller and RAM transport. nimble/transport meta
package will select proper transport and add controller dependency
automatically if needed.
This commit is contained in:
Andrzej Kaczmarek
2019-07-25 00:32:19 +02:00
parent 4cb0c0561c
commit e0f88eb0ff
2 changed files with 1 additions and 6 deletions
+1 -2
View File
@@ -28,10 +28,9 @@ pkg.deps:
- "@apache-mynewt-core/sys/log/full"
- "@apache-mynewt-core/sys/log/modlog"
- "@apache-mynewt-core/sys/stats/full"
- nimble/controller
- nimble/host
- nimble/host/util
- nimble/host/services/gap
- nimble/host/services/gatt
- nimble/host/store/ram
- nimble/transport/ram
- nimble/transport
-4
View File
@@ -24,13 +24,9 @@
/* BLE */
#include "nimble/ble.h"
#include "controller/ble_ll.h"
#include "host/ble_hs.h"
#include "host/util/util.h"
/* RAM HCI transport. */
#include "transport/ram/ble_hci_ram.h"
/* Mandatory services. */
#include "services/gap/ble_svc_gap.h"
#include "services/gatt/ble_svc_gatt.h"