R61581.h 810 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /**
  2. * @file R61581.h
  3. *
  4. */
  5. #ifndef R61581_H
  6. #define R61581_H
  7. /*********************
  8. * INCLUDES
  9. *********************/
  10. #include "../../lv_drv_conf.h"
  11. #if USE_R61581
  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 r61581_init(void);
  24. void r61581_flush(int32_t x1, int32_t y1, int32_t x2, int32_t y2, const lv_color_t * color_p);
  25. void r61581_fill(int32_t x1, int32_t y1, int32_t x2, int32_t y2, lv_color_t color);
  26. void r61581_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