Introduce the basic skeleton for NBLE, which is the Bluetooth LE API implementation targeting a custom firmware running on Nordic Semiconductor nRF51 chips. Change-Id: I1ce69d6ee0205e71f6bd8d256d9233c93d2cde41 Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
23 lines
651 B
Makefile
23 lines
651 B
Makefile
subdir-ccflags-y += -I$(srctree)/include/drivers
|
|
|
|
obj-y = console/
|
|
obj-y += random/
|
|
obj-y += serial/
|
|
obj-$(CONFIG_SYS_CLOCK_EXISTS) += timer/
|
|
obj-y += interrupt_controller/
|
|
obj-$(CONFIG_GROVE) += grove/
|
|
obj-$(CONFIG_PCI) += pci/
|
|
obj-$(CONFIG_BLUETOOTH) += bluetooth/
|
|
obj-$(CONFIG_SHARED_IRQ) += shared_irq/
|
|
obj-$(CONFIG_SPI) += spi/
|
|
obj-$(CONFIG_GPIO) += gpio/
|
|
obj-$(CONFIG_I2C) += i2c/
|
|
obj-$(CONFIG_PWM) += pwm/
|
|
obj-$(CONFIG_ADC) += adc/
|
|
obj-$(CONFIG_ETHERNET) += ethernet/
|
|
obj-$(CONFIG_WATCHDOG) += watchdog/
|
|
obj-$(CONFIG_RTC) += rtc/
|
|
obj-$(CONFIG_CLOCK_CONTROL) += clock_control/
|
|
obj-$(CONFIG_IPM) += ipm/
|
|
obj-$(CONFIG_NBLE) += nble/
|
|
obj-y += aio/
|