SdFat icon indicating copy to clipboard operation
SdFat copied to clipboard

Arduino FAT16/FAT32 exFAT Library

Results 193 SdFat issues
Sort by recently updated
recently updated
newest added

I was using Arduino Due with sdFat library. SPI_SPEED that I 'd set was 40mHz and, It worked well. Now then I'm using esp32 , but the maximum speed of...

This code used to work: FsFile download = SD.open("/" + filename); if (download) { server.sendHeader("Content-Type", "text/text"); server.sendHeader("Content-Disposition", "attachment; filename=" + filename); server.sendHeader("Connection", "close"); //server.streamFile(download, "application/octet-stream"); server.streamFile(download, "image/bmp"); download.close(); } server...

Hi, I recently upgraded 2.0.7 -> 2.1.0 your fantastic library. Unfortunately code compilation failed. Function to send file from SD via http: ``` void getSDFile4www(const char *filename, String f_type) {...

Hi! I used SDFat v2.1.0 and example sketch SDInfo. There are some problem with decoding card manufacturing date. Android apps SD Insight and SD Tools shows correct dates - 02/2021...

Hello, thanks for your work, I have a problem with the SDFAT library with the LGT8F328P board, it compiles correctly but does not read the sd, I have tried with...

Firstly fantastic work with this library! It's a great implementation. I'm writing a logger routine using Teensy 3.5 that is fairly time critical and so I'm using the SDIO FIFO...

Hello, I have problems with a 512Mb FAT32 SD with the example "Backwards Compatibility". Begin works with SD.h, but keeps failing with SdFat,, I have try: #define SPI_SPEED SD_SCK_MHZ(4) and...

This is not a bug - it is a feature request. Is it possible to write direct to sectors of the SD-card using SdFat? This could be helpful when a...

#include SdFat sd; File file; char fileName[] = "datalog.csv"; #define LOGFILE "datalog.csv" file = sd.open(fileName, FILE_WRITE); It gives me the following error: 'File' does not name a type. Thanks in...

Hello Bill, Question: Your TeensySDIOLogger example is great. I want to create an extension for the Teensy audio library. There will be two classes that can play and record a...