c5f9012fd6
Implement gdispFillArc in gdisp. Added gwin (GFX_USE_GWIN) - adds a window based drawing layer to GDISP. GWIN also support chprintf text drawing like console.
14 lines
377 B
Makefile
14 lines
377 B
Makefile
# don't re-define GFXLIB if it has been set elsewhere, e.g in Makefile
|
|
ifeq ($(GFXLIB),)
|
|
GFXLIB = $(CHIBIOS)/ext/gfx
|
|
endif
|
|
|
|
GFXSRC += $(GFXLIB)/src/gdisp.c \
|
|
$(GFXLIB)/src/gdisp_fonts.c \
|
|
$(GFXLIB)/src/gwin.c \
|
|
$(GFXLIB)/src/touchpad.c \
|
|
$(GFXLIB)/src/console.c \
|
|
$(GFXLIB)/src/graph.c \
|
|
|
|
GFXINC += $(GFXLIB)/include
|