gdisp_lld_config.h 840 B

1234567891011121314151617181920212223242526
  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. #pragma once
  8. #if GFX_USE_GDISP
  9. /*===========================================================================*/
  10. /* Driver hardware support. */
  11. /*===========================================================================*/
  12. #define GDISP_HARDWARE_FLUSH TRUE // This controller requires flushing
  13. #define GDISP_HARDWARE_DRAWPIXEL TRUE
  14. #define GDISP_HARDWARE_PIXELREAD TRUE
  15. #define GDISP_HARDWARE_CONTROL TRUE
  16. #define GDISP_HARDWARE_BITFILLS TRUE
  17. #define GDISP_LLD_PIXELFORMAT GDISP_PIXELFORMAT_MONO
  18. #endif /* GFX_USE_GDISP */