Skip to content

Commit 7c3edde

Browse files
authored
device-ui: exFat support (#6279)
1 parent 78b4eff commit 7c3edde

File tree

5 files changed

+4
-3
lines changed

5 files changed

+4
-3
lines changed

platformio.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ lib_deps =
9494

9595
[device-ui_base]
9696
lib_deps =
97-
https://github.com/meshtastic/device-ui.git#d7b18e98704f988fcda9e5fa7404e677b3d11f8c
97+
https://github.com/meshtastic/device-ui.git#74e739ed4532ca10393df9fc89ae5a22f0bab2b1
9898

9999
; Common libs for environmental measurements in telemetry module
100100
; (not included in native / portduino)

variants/t-deck/platformio.ini

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ build_flags =
3939
-D INPUTDRIVER_ENCODER_BTN=0
4040
-D INPUTDRIVER_BUTTON_TYPE=0
4141
-D MAX_NUM_NODES=250
42+
-D HAS_SDCARD
4243
-D HAS_SCREEN=0
4344
-D HAS_TFT=1
4445
-D USE_I2S_BUZZER

variants/t-deck/variant.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#define GPS_TX_PIN 43
4343

4444
// Have SPI interface SD card slot
45-
#define HAS_SDCARD 1
45+
// #define HAS_SDCARD // --> needs to be in platform.ini for device-ui
4646
#define SPI_MOSI (41)
4747
#define SPI_SCK (40)
4848
#define SPI_MISO (38)

variants/unphone/platformio.ini

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ build_flags =
4646
-D MAX_THREADS=40
4747
-D HAS_SCREEN=0
4848
-D HAS_TFT=1
49+
-D HAS_SDCARD
4950
-D DISPLAY_SET_RESOLUTION
5051
-D RAM_SIZE=3072
5152
-D LV_LVGL_H_INCLUDE_SIMPLE

variants/unphone/variant.h

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
#undef GPS_RX_PIN
4949
#undef GPS_TX_PIN
5050

51-
#define HAS_SDCARD 1
5251
#define SD_SPI_FREQUENCY 25000000
5352
#define SDCARD_CS 43
5453

0 commit comments

Comments
 (0)