qmk-firmware/drivers/ugfx/gdisp/st7565/gdisp_lld_config.h

28 lines
918 B
C
Raw Normal View History

2016-07-07 09:45:34 +00:00
/*
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
* http://ugfx.org/license.html
*/
#ifndef _GDISP_LLD_CONFIG_H
#define _GDISP_LLD_CONFIG_H
#if GFX_USE_GDISP
/*===========================================================================*/
/* Driver hardware support. */
/*===========================================================================*/
2017-07-09 10:50:18 +00:00
#define GDISP_HARDWARE_FLUSH TRUE // This controller requires flushing
#define GDISP_HARDWARE_DRAWPIXEL TRUE
#define GDISP_HARDWARE_PIXELREAD TRUE
#define GDISP_HARDWARE_CONTROL TRUE
#define GDISP_HARDWARE_BITFILLS TRUE
2016-07-07 09:45:34 +00:00
#define GDISP_LLD_PIXELFORMAT GDISP_PIXELFORMAT_MONO
2016-07-07 09:45:34 +00:00
2017-07-09 10:50:18 +00:00
#endif /* GFX_USE_GDISP */
2016-07-07 09:45:34 +00:00
2017-07-09 10:50:18 +00:00
#endif /* _GDISP_LLD_CONFIG_H */