Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: target/dartuinoP0/rules.mk

Issue 1741463002: [target][dartuinoP0] Allow for varying framebuffer format and stride. (Closed) Base URL: https://github.com/littlekernel/lk.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « target/dartuinoP0/memory_lcd.c ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 LOCAL_DIR := $(GET_LOCAL_DIR) 1 LOCAL_DIR := $(GET_LOCAL_DIR)
2 2
3 MODULE := $(LOCAL_DIR) 3 MODULE := $(LOCAL_DIR)
4 4
5 STM32_CHIP := stm32f756 5 STM32_CHIP := stm32f756
6 6
7 PLATFORM := stm32f7xx 7 PLATFORM := stm32f7xx
8 8
9 SDRAM_SIZE := 0x00800000 9 SDRAM_SIZE := 0x00800000
10 SDRAM_BASE := 0xc0000000 10 SDRAM_BASE := 0xc0000000
(...skipping 18 matching lines...) Expand all
29 app/accelerometer \ 29 app/accelerometer \
30 30
31 GLOBAL_INCLUDES += $(LOCAL_DIR)/include 31 GLOBAL_INCLUDES += $(LOCAL_DIR)/include
32 32
33 MODULE_SRCS += \ 33 MODULE_SRCS += \
34 $(LOCAL_DIR)/init.c \ 34 $(LOCAL_DIR)/init.c \
35 $(LOCAL_DIR)/sensor_bus.c \ 35 $(LOCAL_DIR)/sensor_bus.c \
36 $(LOCAL_DIR)/usb.c \ 36 $(LOCAL_DIR)/usb.c \
37 37
38 ifneq ($(DISPLAY_PANEL_TYPE),) 38 ifneq ($(DISPLAY_PANEL_TYPE),)
39 MODULE_DEPS += \
40 lib/gfx
41 39
42 MODULE_SRCS += \ 40 MODULE_SRCS += \
43 $(LOCAL_DIR)/memory_lcd.c 41 $(LOCAL_DIR)/memory_lcd.c
42
44 endif 43 endif
45 44
46 ifeq ($(DISPLAY_PANEL_TYPE),LS013B7DH06) 45 ifeq ($(DISPLAY_PANEL_TYPE),LS013B7DH06)
46
47 GLOBAL_DEFINES += \ 47 GLOBAL_DEFINES += \
48 LCD_LS013B7DH06=1 48 LCD_LS013B7DH06=1
49
50 MODULE_SRCS += \ 49 MODULE_SRCS += \
51 $(LOCAL_DIR)/display/LS013B7DH06.c 50 $(LOCAL_DIR)/display/LS013B7DH06.c
51
52 else ifeq ($(DISPLAY_PANEL_TYPE),LS027B7DH01) 52 else ifeq ($(DISPLAY_PANEL_TYPE),LS027B7DH01)
53
53 GLOBAL_DEFINES += \ 54 GLOBAL_DEFINES += \
54 LCD_LS027B7DH01=1 55 LCD_LS027B7DH01=1
56 MODULE_SRCS += \
57 $(LOCAL_DIR)/display/memory_lcd_mono.c
55 58
59 else ifeq ($(DISPLAY_PANEL_TYPE),LS013B7DH03)
60 GLOBAL_DEFINES += \
61 LCD_LS013B7DH03=1
56 MODULE_SRCS += \ 62 MODULE_SRCS += \
57 $(LOCAL_DIR)/display/LS027B7DH01.c 63 $(LOCAL_DIR)/display/memory_lcd_mono.c
58 endif 64 endif
59 65
60 include make/module.mk 66 include make/module.mk
61 67
OLDNEW
« no previous file with comments | « target/dartuinoP0/memory_lcd.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698