lvgl_esp32_drivers/lvgl_tft/display_hal.h
C47D 7cebfdd671 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
2021-09-14 19:13:28 -05:00

11 lines
256 B
C

#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