Can't get the FAT32 object to create a new file
BobbyV
Posts: 19
Hello all,
I can't create a file on a SD card, I'm using the Parallax terminal to validate the output, but it just dies when it is new file time. I am using prop tool ver. 2.9.3 and the P2 edge. I have attached ( what I thought was) simple test code. What mistake am I making?
Thanks,
Rob.
Comments
You're calling FATEngineStart with the fifth parameter set to the write-protect pin (-1), when that parameter actually affects the readOnly setting. Set to anything other than 0 and you can't write to the card.
Give this a try, it worked for me:
That worked, Thanks!