
This patch set exports LCD and video clearing and bitmap-rendering on screen functions to external apps, and provides a unified interface of accessing them.
Che-Liang Chiou (2): lcd: video: add clear and draw bitmap declaration api: export LCD and video to external apps
api/Makefile | 3 +- api/api.c | 51 +++++++++++++++++++++++++++++ api/api_display.c | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++ 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.h | 2 + include/video_font.h | 6 +++ 12 files changed, 246 insertions(+), 7 deletions(-) create mode 100644 api/api_display.c