mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-04-19 01:45:06 +00:00
- Refactor `Ili934xDisplay` to use `EspLcdSpiDisplay` as base class - Update `St7789Display` for changes to `EspLcdDisplayV2` related to ILI934x driver - Updated all board driver implementations for ILI934x driver changes - Simplified board configurations: - All boards now have a `Configuration.cpp` - All board config's headers are removed - Removed `Boards.h` - Fix for untar-ing large files - Increase main task stack size to avoid stackoverflow when downloading apps in App Hub - Reduce SPI frequency for ST7789 displays (according to spec)
8 lines
146 B
C++
8 lines
146 B
C++
#pragma once
|
|
|
|
#include <Tactility/hal/sdcard/SdCardDevice.h>
|
|
|
|
using tt::hal::sdcard::SdCardDevice;
|
|
|
|
std::shared_ptr<SdCardDevice> createSdCard();
|