mirror of
https://github.com/lvgl/lvgl.git
synced 2024-11-27 03:33:48 +08:00
fix(drivers): add missing includes (#6905)
This commit is contained in:
parent
23addd077f
commit
fc3ee875ab
@ -84,10 +84,11 @@ void lv_ili9341_send_cmd_list(lv_display_t * disp, const uint8_t * cmd_list);
|
||||
* MACROS
|
||||
**********************/
|
||||
|
||||
|
||||
#endif /*LV_USE_ILI9341*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /*extern "C"*/
|
||||
#endif
|
||||
|
||||
#endif /*LV_USE_ILI9341*/
|
||||
|
||||
#endif /* LV_ILI9341_H */
|
||||
#endif /*LV_ILI9341_H*/
|
||||
|
@ -232,10 +232,11 @@ void lv_lcd_generic_mipi_send_cmd_list(lv_display_t * disp, const uint8_t * cmd_
|
||||
* MACROS
|
||||
**********************/
|
||||
|
||||
|
||||
#endif /*LV_USE_GENERIC_MIPI*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /*extern "C"*/
|
||||
#endif
|
||||
|
||||
#endif /*LV_USE_GENERIC_MIPI*/
|
||||
|
||||
#endif /* LV_LCD_GENERIC_MIPI_H */
|
||||
#endif /*LV_LCD_GENERIC_MIPI_H*/
|
||||
|
@ -90,4 +90,4 @@ void lv_st7735_send_cmd_list(lv_display_t * disp, const uint8_t * cmd_list);
|
||||
} /*extern "C"*/
|
||||
#endif
|
||||
|
||||
#endif /* LV_ST7735_H */
|
||||
#endif /*LV_ST7735_H*/
|
||||
|
@ -84,10 +84,11 @@ void lv_st7789_send_cmd_list(lv_display_t * disp, const uint8_t * cmd_list);
|
||||
* MACROS
|
||||
**********************/
|
||||
|
||||
|
||||
#endif /*LV_USE_ST7789*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /*extern "C"*/
|
||||
#endif
|
||||
|
||||
#endif /*LV_USE_ST7789*/
|
||||
|
||||
#endif //LV_ST7789_H
|
||||
#endif /*LV_ST7789_H*/
|
||||
|
@ -84,10 +84,10 @@ void lv_st7796_send_cmd_list(lv_display_t * disp, const uint8_t * cmd_list);
|
||||
* MACROS
|
||||
**********************/
|
||||
|
||||
#endif /*LV_USE_ST7796*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /*extern "C"*/
|
||||
#endif
|
||||
|
||||
#endif /*LV_USE_ST7796*/
|
||||
|
||||
#endif /* LV_ST7796_H */
|
||||
#endif /*LV_ST7796_H*/
|
||||
|
@ -25,6 +25,14 @@ extern "C" {
|
||||
|
||||
#include "display/tft_espi/lv_tft_espi.h"
|
||||
|
||||
#include "display/lcd/lv_lcd_generic_mipi.h"
|
||||
#include "display/ili9341/lv_ili9341.h"
|
||||
#include "display/st7735/lv_st7735.h"
|
||||
#include "display/st7789/lv_st7789.h"
|
||||
#include "display/st7796/lv_st7796.h"
|
||||
|
||||
#include "display/renesas_glcdc/lv_renesas_glcdc.h"
|
||||
|
||||
#include "nuttx/lv_nuttx_entry.h"
|
||||
#include "nuttx/lv_nuttx_fbdev.h"
|
||||
#include "nuttx/lv_nuttx_touchscreen.h"
|
||||
|
Loading…
Reference in New Issue
Block a user