
This patch set exports LCD clearing and bitmap-rendering on screen functions to external apps, and provides a unified interface of accessing them.
Che-Liang Chiou (3): lcd: add clear and draw bitmap declaration tools: logo: add static and unused to bmp arrays api: export LCD device to external apps
api/Makefile | 3 +- api/api.c | 51 +++++++++++++++++++++++++++++++++++++ api/api_display.c | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++ api/api_private.h | 4 +++ common/lcd.c | 16 +++++++---- examples/api/demo.c | 31 ++++++++++++++++++++++ examples/api/glue.c | 31 ++++++++++++++++++++++ examples/api/glue.h | 5 +++ include/api_public.h | 16 +++++++++++ include/lcd.h | 2 + include/video_font.h | 6 ++++ tools/bmp_logo.c | 6 +++- 12 files changed, 231 insertions(+), 9 deletions(-) create mode 100644 api/api_display.c