To meet CPU time usage restricts inside radio ISR on nRF51 SoCs, use ccflags -Ofast when using fast encryption setup implementation in the controller. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
12 lines
417 B
Makefile
12 lines
417 B
Makefile
ccflags-y += -I$(srctree)/subsys/bluetooth/controller/include
|
|
ccflags-y += -I$(srctree)/subsys/bluetooth/controller
|
|
ccflags-y += -I$(srctree)/subsys/bluetooth
|
|
|
|
ccflags-$(CONFIG_BT_CTLR_FAST_ENC) += -Ofast
|
|
|
|
obj-y += crypto.o ctrl.o ll.o ll_filter.o
|
|
obj-$(CONFIG_BT_BROADCASTER) += ll_adv.o
|
|
obj-$(CONFIG_BT_OBSERVER) += ll_scan.o
|
|
obj-$(CONFIG_BT_CENTRAL) += ll_master.o
|
|
obj-$(CONFIG_BT_CTLR_DTM) += ll_test.o
|