The esp_lvgl_port code was duplicated across all boards, so I moved it into the Tactility subproject to simplify the board implementations.
12 lines
92 B
C++
12 lines
92 B
C++
#pragma once
|
|
|
|
#ifdef ESP_PLATFORM
|
|
|
|
namespace tt::lvgl {
|
|
|
|
bool initEspLvglPort();
|
|
|
|
}
|
|
|
|
#endif
|