Skip to content
Snippets Groups Projects
Commit 22436744 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Add missing makefile targets for aurora mb and framebuffer

parent 567cf679
No related branches found
No related tags found
No related merge requests found
...@@ -130,6 +130,23 @@ ifdef CONFIG_driver_nrf24l01 ...@@ -130,6 +130,23 @@ ifdef CONFIG_driver_nrf24l01
COMMON_FLAGS += -DNRF24L01_IRQ_PIN=GPIO::${nrf24l01_irq_pin} COMMON_FLAGS += -DNRF24L01_IRQ_PIN=GPIO::${nrf24l01_irq_pin}
endif endif
ifdef CONFIG_driver_pervasive_aurora_mb
CXX_TARGETS += src/driver/pervasive_aurora_mb.cc
ifeq (${arch_dir}, msp430fr5994lp)
pervasive_aurora_mb_reset_pin ?= p7_0
pervasive_aurora_mb_cs_pin ?= p5_7
pervasive_aurora_mb_dc_pin ?= p7_1
pervasive_aurora_mb_vcc_pin ?= p8_1
pervasive_aurora_mb_busy_pin ?= p6_3
endif
COMMON_FLAGS += -DDRIVER_PERVASIVE_AURORA_MB
COMMON_FLAGS += -DPERVASIVE_AURORA_RESET_PIN=GPIO::${pervasive_aurora_mb_reset_pin}
COMMON_FLAGS += -DPERVASIVE_AURORA_CS_PIN=GPIO::${pervasive_aurora_mb_cs_pin}
COMMON_FLAGS += -DPERVASIVE_AURORA_DC_PIN=GPIO::${pervasive_aurora_mb_dc_pin}
COMMON_FLAGS += -DPERVASIVE_AURORA_VCC_PIN=GPIO::${pervasive_aurora_mb_vcc_pin}
COMMON_FLAGS += -DPERVASIVE_AURORA_BUSY_PIN=GPIO::${pervasive_aurora_mb_busy_pin}
endif
ifdef CONFIG_driver_sharp96 ifdef CONFIG_driver_sharp96
CXX_TARGETS += src/driver/sharp96.cc CXX_TARGETS += src/driver/sharp96.cc
ifeq (${arch_dir}, msp430fr5969lp) ifeq (${arch_dir}, msp430fr5969lp)
...@@ -177,6 +194,10 @@ ifdef CONFIG_meta_driver_hardware_i2c ...@@ -177,6 +194,10 @@ ifdef CONFIG_meta_driver_hardware_i2c
COMMON_FLAGS += -DDRIVER_HARDWARE_I2C COMMON_FLAGS += -DDRIVER_HARDWARE_I2C
endif endif
ifdef CONFIG_framebuffer
CXX_TARGETS += src/os/object/framebuffer.cc
endif
ifdef CONFIG_lib_inflate ifdef CONFIG_lib_inflate
CXX_TARGETS += src/lib/inflate.cc CXX_TARGETS += src/lib/inflate.cc
endif endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment