gdisp_lld_config.h 878 B

123456789101112131415161718192021222324252627
  1. /*
  2. * This file is subject to the terms of the GFX License. If a copy of
  3. * the license was not distributed with this file, you can obtain one at:
  4. *
  5. * http://ugfx.org/license.html
  6. */
  7. #ifndef _GDISP_LLD_CONFIG_H
  8. #define _GDISP_LLD_CONFIG_H
  9. #if GFX_USE_GDISP
  10. /*===========================================================================*/
  11. /* Driver hardware support. */
  12. /*===========================================================================*/
  13. # define GDISP_HARDWARE_FLUSH TRUE // This controller requires flushing
  14. # define GDISP_HARDWARE_DRAWPIXEL TRUE
  15. # define GDISP_HARDWARE_PIXELREAD TRUE
  16. # define GDISP_HARDWARE_CONTROL TRUE
  17. # define GDISP_HARDWARE_BITFILLS TRUE
  18. # define GDISP_LLD_PIXELFORMAT GDISP_PIXELFORMAT_MONO
  19. #endif /* GFX_USE_GDISP */
  20. #endif /* _GDISP_LLD_CONFIG_H */