The main.c source file in drivers/bluetooth/controller acts as the necessary glue between the Link Layer and Zephyr's Bluetooth subsystem. It instantiates the required RX fiber and marshalls the control and data traffic between the BLE radio and the BLE stack. Jira: ZEP-702 Origin: Original Change-Id: Ia62baedcd6e3ea83bd16306779357930f9a6c5f7 Signed-off-by: Vinayak Chettimada <vinayak.kariappa.chettimada@nordicsemi.no> Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
19 lines
993 B
Makefile
19 lines
993 B
Makefile
ccflags-$(CONFIG_BLUETOOTH_CONTROLLER) += -I$(srctree)/drivers/bluetooth/controller/util
|
|
ccflags-$(CONFIG_BLUETOOTH_CONTROLLER) += -I$(srctree)/drivers/bluetooth/controller/hal
|
|
ccflags-$(CONFIG_BLUETOOTH_CONTROLLER) += -I$(srctree)/drivers/bluetooth/controller/ll
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += util/mem.o
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += util/memq.o
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += util/work.o
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += util/util.o
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += hal/irq.o
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += hal/clock.o
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += hal/rtc.o
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += hal/rand.o
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += hal/ecb.o
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += hal/radio.o
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += ll/ticker.o
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += ll/ctrl.o
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += ll/ll.o
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += hci/hci.o
|
|
obj-$(CONFIG_BLUETOOTH_CONTROLLER) += main.o
|