Tagged Questions

5
votes
6answers
169 views

Alarm history stack or queue?

I'm trying to develop an alarm history structure to be stored in non-volatile flash memory. Flash memory has a limited number of write cycles so I need a way to add records to the structure without ...
3
votes
2answers
109 views

Flash Memory in 8051F340 Microcontroller gets erased

Well I hope this question fits to Stackoverflow ( if otherwise, I want to apologize already ) I have can C8051F340 Microcontroller from Silabs. I wrote a little Interface which stores Information in ...
3
votes
4answers
2k views

When do I use xdata?

I am new at embedded system programming. I am working on a device that uses an 8051 chipset. I have noticed in the sample programs that when defining variables, sometimes they use the keyword xdata. ...
2
votes
5answers
259 views

FAT File system and lots of writes

I am considering using a FAT file system for an embedded data logging application. The logger will only create one file to which it continually appends 40 bytes of data every minute. After a couple ...