Fixed fonts for draw/fill char/string. On my display I require GDISP_SOFTWARE_TEXTFILLDRAW for filled char/string but that may because my display blit may be broken. Also found that code in header files doesn't have debug symbols generated for it so I converted the include files that contained code into real C files and altered the halext.mk to match.
8 lines
368 B
Makefile
8 lines
368 B
Makefile
# List of all the ChibiOS/RT META files, there is no need to remove the files
|
|
# from this list, you can disable parts of the kernel by editing halconf.h.
|
|
HALSRC += ${CHIBIOS}/os/halext/src/gdisp.c \
|
|
${CHIBIOS}/os/halext/src/gdisp_fonts.c \
|
|
${CHIBIOS}/os/halext/src/gdisp_emulation.c
|
|
|
|
# Required include directories
|
|
HALINC += ${CHIBIOS}/os/halext/include
|