This website requires JavaScript.
Explore
Help
Sign In
OrgZephyr
/
zephyr
mirror of
https://github.com/zephyrproject-rtos/zephyr.git
Watch
1
Star
0
Fork
You've already forked zephyr
0
Code
Issues
Releases
Wiki
Activity
8bd73aeba7
zephyr
/
drivers
/
bluetooth
/
Makefile
4 lines
89 B
Makefile
Raw
Normal View
History
Unescape
Escape
Bluetooth: Rename bt_driver to bt_hci_driver The bt_driver API was created when Zephyr only had a Bluetooth host stack, but no controller-side functionality. The only "driver" that was needed for the host was the HCI driver, and hence "HCI" was omitted from the name. With support both for host and controller Zephyr will be getting more Bluetooth driver types, in particular radio drivers. To prepare for this, move all HCI drivers to drivers/bluetooth/hci/ and rename the bt_driver API bt_hci_driver. Change-Id: I82829da80aa61f26c2bb2005380f1e88d069ac7d Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
2016-10-27 21:55:01 +08:00
obj-y
+=
hci/
drivers/nble: Move Nordic Bluetooth LE driver inside drivers/bluetooth Move NBLE code to the place where other Bluetooth drivers code resides. Change-Id: Ibcf9ffb016e9b842bed66a61dff5c101b1573aaa Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
2016-04-05 19:01:16 +08:00
obj-$(CONFIG_NBLE)
+=
nble/
drivers/nble: Refactor PM code to make it reusable Refactoring Power Management related code to special file nrf51_pm making it possible to reuse the functions for H:4 UART driver when Nordic BLE is flashed with HCI firmware. Change-Id: If389c1f4af13fa786e5866129624527cec0928e0 Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
2016-04-05 19:51:34 +08:00
obj-$(CONFIG_BLUETOOTH_NRF51_PM)
+=
nrf51_pm.o