Flash Memory, looking for pointers

Thread Starter

Flow

Joined May 30, 2010
37
Hey there,

I'm about to embark on an embedded project involving a uC and flash memory. I've never had to deal with external memory, so could anybody give me some pointers on where to look for information? Like Books, Tutorials, Websites etc.?

Does anybody know some Flash ICs with some convenient interface (SPI, I2C?) ?

Thanks in advance! :)
 

reema paul

Joined Jun 28, 2010
12
generally pointers only sound big thou they are not..
pointers function is complete in few lines.
ex:
*************SOP**********************
void lcd_str(unsigned char *p)
{
while(*p)
lcd_disp(*p++);
}

void main()
{
lcd_str("happy");
}
***************EOP****************
DISPAY: happy
 

Thread Starter

Flow

Joined May 30, 2010
37
I'm unsure about Flash Memory ICs Reema, not about microcontrollers nor about C pointers.

Thanks though...
 
Top