Tactiliest/boards/lilygo_tdeck/lilygo_tdeck.c
Ken Van Hoeylandt d27579848a
SD card support (#23)
### General
- Added support for SD cards in `HadwareConfig`
- Properly disabled PC build for now (I was still getting error emails)
- Updated `README.md` with a device compatibility table

### T-Deck:
- Implemented SD card support
- Logging message cleanup
- Updated `config,h` with various new settings
- Reduced stack depth from `8096` to `5000`
2024-01-28 16:34:25 +01:00

14 lines
265 B
C

#include "lilygo_tdeck.h"
#include <stdbool.h>
bool tdeck_bootstrap();
bool tdeck_init_lvgl();
extern SdCard tdeck_sdcard;
const HardwareConfig lilygo_tdeck = {
.bootstrap = &tdeck_bootstrap,
.init_lvgl = &tdeck_init_lvgl,
.sdcard = &tdeck_sdcard
};