I am sending data for a file to my ConnectME in 8k chunks and then writing them to the file system before requesting the next chunk of data. The process of writing seems to take a relatively long time to occur. Each of these 8k data chunks can take anywhere from @ 3-10 seconds to be written. I am using fwrite() to write to the file system. The total file size will be @ 350 KB.
Is there anything I can do to speed up the writing to the file. Or is there a better data size to use to eliminate some writing overhead.