use std::fstream for SDCARD
Hi I'm trying to reuse some code that uses use std::fstream for file access.I have the FATFS working and can read and write files. like this:fr = f_open(&fil, path, FA_WRITE | FA_CREATE_ALWAYS);if (fr == FR_OK) {// Write text to the filefr = f_write(...