-
Data Logging
Hi,
I'm putting together a system to talk to a GPS board I have. It will do various things, such as output to an LCD etc. I wanted to do some data logging - record waypoints, track position every x seconds, etc.
Serial EEPROM seems to be the way to go. But 1 Million write cycles is not neccesarily as much as it sounds if you are recording a few bytes every few seconds. Does anyone have any thoughts...?
Cheers,
Ben
-
Compact flash
I found a few other posts on this site. I also found a site here:
http://www.mikroelektronika.co.yu/en...ook/08.htm#8.3
This talks about writing to CF using a POC, but seems to be for a different distribution of Basic...?
-
Look into FRAM from www.ramtron.com
-
Ben, every BYTE can be written to 1 million times. Surely you don't fill your entire memory every few seconds.
-
Ah... every byte. That makes a lot more sense, now I come to think about it!
Interfacing a serial EEPROM to a PIC should be quite simple. I still need to find an easy way of getting the data out of the eeprom and onto a PC, which is why the CF idea seemed nice. But probably far more complicated...
Ben
-
Ben,
have you had a look at This Thread ?
-
Thanks - I found that a few minutes ago - it seems very thorough!
Cheers,
Ben
-
Yeah. An EEPROm would certainly store the data - but accessing it on a PC once it has been recored seems slightly more involved. An advantage of using something like a formatted flash card is it is possible to just plug it in and read what's there.
The disadvantage seems to be the added complexity of circuitry and programming to achieve this...