fix(drivers): add missing includes (#6905)

This commit is contained in:
Gabor Kiss-Vamosi 2024-10-09 17:28:34 +02:00 committed by GitHub
parent 23addd077f
commit fc3ee875ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 24 additions and 13 deletions

View File

@ -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*/

View File

@ -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*/

View File

@ -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*/

View File

@ -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*/

View File

@ -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*/

View File

@ -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"