diff options
Diffstat (limited to 'include/gfx.h')
-rw-r--r-- | include/gfx.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/gfx.h b/include/gfx.h index b6107de6..c4c670f8 100644 --- a/include/gfx.h +++ b/include/gfx.h @@ -46,6 +46,15 @@ #define GFX_USE_GDISP FALSE
#endif
/**
+ * @brief GFX Text Display Basic API
+ * @details Defaults to FALSE
+ * @note Also add the specific hardware driver to your makefile.
+ * Eg. include $(GFXLIB)/drivers/tdisp/HD44780/tdisp_lld.mk
+ */
+ #ifndef GFX_USE_TDISP
+ #define GFX_USE_TDISP FALSE
+ #endif
+ /**
* @brief GFX Graphics Windowing API
* @details Defaults to FALSE
* @details Extends the GDISP API to add the concept of graphic windows.
|