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:
C47D 2021-08-25 14:43:24 -05:00
parent 2629b6d86a
commit 7cebfdd671
4 changed files with 21 additions and 21 deletions

10
lvgl_tft/display_hal.h Normal file
View 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