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`
This commit is contained in:
Ken Van Hoeylandt
2024-01-28 16:34:25 +01:00
committed by GitHub
parent 618f557a16
commit d27579848a
17 changed files with 457 additions and 142 deletions
+17 -5
View File
@@ -33,14 +33,26 @@ and [here](https://components.espressif.com/components?q=esp_lcd_touch)
### Devices
Most hardware configurations should work, but it might require you to set up the drivers yourself.
Predefined configurations are available for:
- LilyGo T-Deck (see [lilygo.cc](https://www.lilygo.cc/products/t-deck), [AliExpress](https://www.aliexpress.com/item/1005005692235592.html))
- Waveshare S3 Touch LCD 4.3 ([docs](https://www.waveshare.com/wiki/ESP32-S3-Touch-LCD-4.3))
- Yellow Board 2432S024C: a 2.4" display with capacitive touch (see AliExpress [1](https://www.aliexpress.com/item/1005005902429049.html), [2](https://www.aliexpress.com/item/1005005865107357.html))
- (more will follow)
| Device | Screen&Touch | SD card | Other |
|------------------------------------------|--------------|---------|----------|
| [LilyGo T-Deck][tdeck] | ✅ | ✅ | Keyboard |
| [Waveshare S3 Touch][waveshare_s3_touch] | ✅ | ⏳ | |
| Yellow Board 2432S024C (\*) | ✅ | ⏳ | |
Other configurations can be supported, but they require you to set up the drivers yourself.
- ✅: Capable and implemented
- ⏳: Capable but not yet implemented
- ❌: Not capable
(*) Note: Only the capacitive version is supported. See AliExpress [here][2432s024c_1] and [here][2432s024c_2].
[tdeck]: https://www.lilygo.cc/products/t-deck
[waveshare_s3_touch]: https://www.aliexpress.com/item/1005005692235592.html
[2432s024c_1]: https://www.aliexpress.com/item/1005005902429049.html
[2432s024c_2]: https://www.aliexpress.com/item/1005005865107357.html
## Guide