Tagged Questions
5
votes
6answers
171 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
737 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
70 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
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. ...
1
vote
3answers
248 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
2answers
231 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
829 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 ...