Reputation: 3637
If a have a FAT filesystem implemented in a SDRAM memory block(on a blackfin 537 board) how could I write a file to that memory(file system)?
Upvotes: 2
Views: 965
Reputation: 179779
The easiest solution is to install a ram disk driver (which makes the RAM look like a block device) and a FAT driver (which will interpret the RAM blocks as a FAT file system). You can now use the regular std::fstream
functions.
Upvotes: 1