My Marlin configs for Fabrikator Mini and CTC i3 Pro B
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.

tft_lvgl_configuration.h 2.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. /**
  24. * @file lcd/extui/lib/mks_ui/tft_lvgl_configuration.h
  25. * @date 2020-02-21
  26. */
  27. #ifdef __cplusplus
  28. extern "C" { /* C-declarations for C++ */
  29. #endif
  30. #include <lvgl.h>
  31. //#define TFT_ROTATION TFT_ROTATE_180
  32. #define USE_WIFI_FUNCTION 0
  33. extern void tft_lvgl_init();
  34. extern void my_disp_flush(lv_disp_drv_t * disp, const lv_area_t * area, lv_color_t * color_p);
  35. extern bool my_touchpad_read(lv_indev_drv_t * indev_driver, lv_indev_data_t * data);
  36. extern bool my_mousewheel_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data);
  37. extern void LCD_Clear(uint16_t Color);
  38. extern void tft_set_point(uint16_t x, uint16_t y, uint16_t point);
  39. extern void LCD_setWindowArea(uint16_t StartX, uint16_t StartY, uint16_t width, uint16_t heigh);
  40. extern void LCD_WriteRAM_Prepare(void);
  41. extern void lcd_draw_logo();
  42. extern void lv_encoder_pin_init();
  43. extern void lv_update_encoder();
  44. extern lv_fs_res_t spi_flash_open_cb (lv_fs_drv_t * drv, void * file_p, const char * path, lv_fs_mode_t mode);
  45. extern lv_fs_res_t spi_flash_close_cb (lv_fs_drv_t * drv, void * file_p);
  46. extern lv_fs_res_t spi_flash_read_cb (lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * br);
  47. extern lv_fs_res_t spi_flash_seek_cb(lv_fs_drv_t * drv, void * file_p, uint32_t pos);
  48. extern lv_fs_res_t spi_flash_tell_cb(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p);
  49. extern lv_fs_res_t sd_open_cb (lv_fs_drv_t * drv, void * file_p, const char * path, lv_fs_mode_t mode);
  50. extern lv_fs_res_t sd_close_cb (lv_fs_drv_t * drv, void * file_p);
  51. extern lv_fs_res_t sd_read_cb (lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * br);
  52. extern lv_fs_res_t sd_seek_cb(lv_fs_drv_t * drv, void * file_p, uint32_t pos);
  53. extern lv_fs_res_t sd_tell_cb(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p);
  54. #ifdef __cplusplus
  55. } /* C-declarations for C++ */
  56. #endif