Metal Detector
 
Loading...
Searching...
No Matches
display.h
Go to the documentation of this file.
1
13#ifndef INC_DISPLAY_H_
14#define INC_DISPLAY_H_
15
16
17#include "ili9341.h"
18#include "xpt2046.h"
19
20
21void dp_lvgl_init(void);
22void dp_init(void);
23
24extern SPI_HandleTypeDef *ili9341_spi;
25extern SPI_HandleTypeDef *xpt2046_spi;
26
27
28#endif /* INC_DISPLAY_H_ */
void dp_lvgl_init(void)
Initialize LVGL and set up the display buffer and input device.
Definition display.c:115
SPI_HandleTypeDef * xpt2046_spi
Definition display.c:26
void dp_init(void)
Initialize the display and touchscreen.
Definition display.c:84
SPI_HandleTypeDef * ili9341_spi
Definition display.c:25
Header file for the ILI9341 LCD driver.
Header file for XPT2046 touch screen controller driver.