diff --git a/RX_FSK/src/conn-sdcard.cpp b/RX_FSK/src/conn-sdcard.cpp index d9b3fe7..d754068 100644 --- a/RX_FSK/src/conn-sdcard.cpp +++ b/RX_FSK/src/conn-sdcard.cpp @@ -152,7 +152,7 @@ String ConnSDCard::getStatus() { uint32_t usedSize = SD.usedBytes() / (1024 * 1024); uint32_t totalSize = SD.totalBytes() / (1024 * 1024); char buf[256]; - snprintf(buf, 256, "SD card type: %s [size: %lu MB]. File system: %lu / %lu MB free", cardTypeStr(cardType), + snprintf(buf, 256, "SD card type: %s [size: %lu MB]. File system: %lu / %lu MB used", cardTypeStr(cardType), cardSize, usedSize, totalSize); return String(buf); }