Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
4
votes
3answers
733 views

What is a good filesystem for embedded NAND drives?

I am working on an embedded application that uses NAND flash for storage. As it looks now, we won't use Linux or any other RTOS. The application must handle unexpected power downs. We have been ...
3
votes
1answer
69 views

Storing of image in on-chip memory of MCB1700 evaluation board

I work with MCB1700 evaluation board. It has (320 x 240) TF LCD Display. IDE: Keil uvision4 4.03q. My task is to download picture from PC to MCB1700, display it on LCD and download on USB-stick ...
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 ...
1
vote
3answers
247 views

NAND RAW access

I'm working with a C++ application in an embedded systems running Linux. This device receives messages (small chunk of few bytes) and need to be stored in a non volatile memory in case of power ...
1
vote
1answer
1k views

ATmega328 + SPI Flash Memory

Preface: This question is about a project I am working on with a professor at my university. It is NOT for a grade, but my reputation with this professor does matter. So while my success on this ...
1
vote
2answers
245 views

NAND flash programming: granularity of writes?

is someone in the kow about write accesses on nowadays large NAND flash chips? What is the minimal granularity for writes? I have a microcontroller flash here which requires at least 1 and at most 4 ...
1
vote
2answers
230 views

Interfacing 45DB161 data flash with 89LP4052 controller

I am trying to interface the data flash with 89lp 4052 controller. Crysal used 11.0592 mhz. This controller has built in spi bus. I tried all combinations of CPHA AND CPOL. Tried mode 0 as well as ...
1
vote
5answers
826 views

Circular Buffer in Flash

I need to store items of varying length in a circular queue in a flash chip. Each item will have its encapsulation so I can figure out how big it is and where the next item begins. When there are ...
1
vote
3answers
1k views

Am I overflowing my AVR's flash memory with a program that's too big?

I have a project where an ATtiny2313V is controlling a 7x5 LED matrix to display scrolling text. To display the text, I built a font which is stored in the flash with the rest of the program. The ...
1
vote
4answers
656 views

Deleting files on FAT32 USB changes the first cluster information

i have made a file recovery software, which reads the FAT32 directory entry and identifies the first cluster of the file and attempts to recover the data, it is supposedly to be working fine however ...
0
votes
1answer
62 views

Suggestion over a simple FAT16/FAT32 read/write implementation [closed]

Folks I am using MSP430 and M25P64(serial flash memory) . I need suggestion for generic file system that I can use to implement Thanks AK
0
votes
0answers
155 views

iPad Cookies - Possible to burn out flash memory?

I am currently writing a full screen web application for the iPad. This application will likely write a small amount of data to a local cookie at an interval of once per second. A user will interact ...
0
votes
0answers
13 views

What is the better/safest way to save streaming data to media on-the-fly: as multiple small files or as one large file?

I am working in the project of a medical data logger. The file format specification states that each fixed-size block of the file must correspond to a fixed-time interval of collected data. This sort ...
0
votes
3answers
85 views

Is there any flash driver at the OS level loaded?

whether Is there any flash driver at the OS level (linux) to load or we need to write/develop ?, please suggest me.
0
votes
2answers
128 views

Determining failing sectors on portable flash memory

I'm trying to write a program that will detect signs of failure for portable flash memory devices (thumb drives, etc). I have seen tools in the past that are able to detect failing sectors and other ...
-1
votes
1answer
57 views

flash memory security [closed]

as you might already know there are available security mechanisms to secure flash memories (say USB flash disks) the way how they implement it is by thoroughly encrypting the data in RAM before it is ...