This adds a shell module called "net_bt" that exposes Bluetooth L2 management commands. Change-Id: Ia6da1d38cfd51502119758a8f6abbb6d1cd31743 Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
10 lines
310 B
Makefile
10 lines
310 B
Makefile
ccflags-y += -I${ZEPHYR_BASE}/subsys/net/ip
|
|
|
|
obj-$(CONFIG_NET_L2_DUMMY) += dummy.o
|
|
obj-${CONFIG_NET_L2_ETHERNET} += ethernet.o
|
|
obj-$(CONFIG_NET_L2_IEEE802154) += ieee802154/
|
|
obj-$(CONFIG_NET_L2_BLUETOOTH) += bluetooth.o
|
|
obj-$(CONFIG_NET_L2_BLUETOOTH_SHELL) += bluetooth_shell.o
|
|
|
|
obj-${CONFIG_NET_ARP} += arp.o
|