I'm trying to solve a problem which I've posted in other threads. The solution I was thinking of would mean using two arduinos each reading and writing to an SD card. From what I've read this doesn't seem possible. I want both arduinos to read the same data to maintain state. This is for a door lock so the state would be "locked" and "unlocked".
Even if it were possible, my experience with the relaibility of SD cards on Arduinos would prevent me using them for an application such as a door lock, which you would want to be reliable.
Which Arduino? The Pro Mini has some EEPROM on chip. You could use that.
If only needed to store "locked" or "Unlocked" you could easily add some parity bits so if the EEPROM location becomes "used up" you can just move to the next address.
@JohnRob I'm using the Mega. I have a switch and RFID and I want them both to be able to check the state of the lock. I can get both working individually but when I try to run them both it doesn't work. That's why I was thinking of using 2 Arduinos. There's other threads where I've posted the code. Not sure what the solution is at the moment.