Rename display_bsp to display_hal
The implementation of display hal is MCU dependant, in this example we implement it using the ESP-IDF framework
This commit is contained in:
parent
2629b6d86a
commit
7cebfdd671
4 changed files with 21 additions and 21 deletions
10
lvgl_tft/display_hal.h
Normal file
10
lvgl_tft/display_hal.h
Normal file
|
@ -0,0 +1,10 @@
|
|||
#ifndef DISPLAY_HAL_H_
|
||||
#define DISPLAY_HAL_H_
|
||||
|
||||
void display_hal_init_io(void);
|
||||
void display_hal_delay(uint32_t delay_ms);
|
||||
void display_hal_backlight(uint8_t state);
|
||||
void display_hal_gpio_dc(uint8_t state);
|
||||
void display_hal_gpio_rst(uint8_t state);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue