SSD1963.h 825 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * @file SSD1963.h
  3. *
  4. */
  5. #ifndef SSD1963_H
  6. #define SSD1963_H
  7. /*********************
  8. * INCLUDES
  9. *********************/
  10. #include "../../lv_drv_conf.h"
  11. #if USE_SSD1963 != 0
  12. #include <stdint.h>
  13. #include "lvgl/lv_misc/lv_color.h"
  14. /*********************
  15. * DEFINES
  16. *********************/
  17. /**********************
  18. * TYPEDEFS
  19. **********************/
  20. /**********************
  21. * GLOBAL PROTOTYPES
  22. **********************/
  23. void ssd1963_init(void);
  24. void ssd1963_flush(int32_t x1, int32_t y1, int32_t x2, int32_t y2, const lv_color_t * color_p);
  25. void ssd1963_fill(int32_t x1, int32_t y1, int32_t x2, int32_t y2, lv_color_t color);
  26. void ssd1963_map(int32_t x1, int32_t y1, int32_t x2, int32_t y2, const lv_color_t * color_p);
  27. /**********************
  28. * MACROS
  29. **********************/
  30. #endif
  31. #endif