You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
883 B

  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 GFXON // This controller requires flushing
  14. # define GDISP_HARDWARE_DRAWPIXEL GFXON
  15. # define GDISP_HARDWARE_PIXELREAD GFXON
  16. # define GDISP_HARDWARE_CONTROL GFXON
  17. # define GDISP_HARDWARE_BITFILLS GFXON
  18. # define GDISP_LLD_PIXELFORMAT GDISP_PIXELFORMAT_MONO
  19. #endif /* GFX_USE_GDISP */
  20. #endif /* _GDISP_LLD_CONFIG_H */