mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-19 23:15:05 +00:00
## Improvements - Created new base driver classes: `EspLcdDisplayV2' and `EspLcdSpiDisplay` - Updated `St7789Display` to implement `EspLcdSpiDisplay` - Updated all boards with ST7789 display ## Fixes - Ensure that `tmp/` is created on startup (for all writeable filesystems) - Fix for `lv_list` padding on small screen devices - Fix for `PreferencesEsp` not processing result when writing string to NVS ## Other - Remove unused build scripts
9 lines
147 B
C++
9 lines
147 B
C++
#pragma once
|
|
|
|
#include <Tactility/hal/sdcard/SdCardDevice.h>
|
|
|
|
using tt::hal::sdcard::SdCardDevice;
|
|
|
|
std::shared_ptr<SdCardDevice> createSdCard();
|
|
|