CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

Adding about 300 KB memory/flash to a PIC18

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
Skirmitt



Joined: 19 May 2009
Posts: 60

View user's profile Send private message

Adding about 300 KB memory/flash to a PIC18
PostPosted: Thu Sep 30, 2010 8:54 am     Reply with quote

I have a sound generator project that is finished based on a pic18f2685 that has 96K of flash. I stuffed it completely full with sounds that I play through portB (8 bit 16KHz). I send each byte with a delay and that works great.
I now store the sounds in an array that is included in a header file.

Now, I am limited in sounds by the 96K of flash and I want to add some more external flash on a relative easy way. I would send the sounds through the RS232 port to program/erase/renew them into the flash chip.

What solution would you guys choose ? I tought about an SD card but that has a pretty large footprint, is pretty complicated to program and I only need about 300 to 500KB of flash.
Ttelmah



Joined: 11 Mar 2010
Posts: 19348

View user's profile Send private message

PostPosted: Thu Sep 30, 2010 9:07 am     Reply with quote

FRAM.
Not flash. Magnetic memory, but writes just like an EEPROM, but _fast_. Zero delays on writes or reads. Basically writes/reads data as fast as you can clock it in via SPI or I2C.
You wouldn't need a delay with this...
Single chip solution. Price more than EEPROM, but not by much.
Only question is what voltage you are working at?. The highest density parts (512KB, 1MB, 2MB, and 4MB), are low voltage, requiring 3.3v operation. A FM25V10, holds 1MB, and is a little SOIC8 package.

Best Wishes
Skirmitt



Joined: 19 May 2009
Posts: 60

View user's profile Send private message

PostPosted: Thu Sep 30, 2010 9:10 am     Reply with quote

I'm currently running at 5V. If this chip would be THE solution I could arrange a 3.3V system of course.
Is there a driver for this chip available ?
bkamen



Joined: 07 Jan 2004
Posts: 1611
Location: Central Illinois, USA

View user's profile Send private message

PostPosted: Thu Sep 30, 2010 5:10 pm     Reply with quote

In terms of reading, wouldn't FLASH EEPROM be ok?

Do the writes need to be fast like the reads? If so, I agree with Ttelmah. FRAM (good ol' core memory! hahaha - well not really) would be the way to go.

But if slow write is ok and fast read works, then isn't FLASH based ok too?

-Ben
_________________
Dazed and confused? I don't think so. Just "plain lost" will do. :D
FvM



Joined: 27 Aug 2008
Posts: 2337
Location: Germany

View user's profile Send private message

PostPosted: Thu Sep 30, 2010 11:50 pm     Reply with quote

Yes, if the number of intended total number rewrites is below a 10000 order of magnitude, serial flash, e.g. Numonyx/Micron 25P40 for a 512 kBit part or a larger device up to 2 or 8 MByte capacity, is the cheapest solution. These devices have generally 3.3V supply voltage, but the effort for SPI level translation is acceptable, I think.
Skirmitt



Joined: 19 May 2009
Posts: 60

View user's profile Send private message

PostPosted: Fri Oct 01, 2010 12:49 am     Reply with quote

The writing doesn't have to be fast. As said, data for it will be delivered over the rs232 port so it will take some time to complete.
bkamen



Joined: 07 Jan 2004
Posts: 1611
Location: Central Illinois, USA

View user's profile Send private message

PostPosted: Fri Oct 01, 2010 7:52 am     Reply with quote

Skirmitt wrote:
The writing doesn't have to be fast. As said, data for it will be delivered over the rs232 port so it will take some time to complete.


The look at the company Microchip just acquired called SST.

They have parts that are nice. (I think they'll run 3.3V too)

I recently worked on a PIC32 design that used a 16Mb (2MB) 8pin SOIC SPI based storage that ran up to 80MHz SPI clock speeds.

-Ben
_________________
Dazed and confused? I don't think so. Just "plain lost" will do. :D
arunb



Joined: 08 Sep 2003
Posts: 492
Location: India

View user's profile Send private message Send e-mail

RE:
PostPosted: Sat Oct 02, 2010 2:15 am     Reply with quote

Too bad you didn't like SD card, it may not be as complicated as you think, if you use only the basic read/write facility and not the FAT file system implementation.

Also the cards are easily available in any store, you don't need to buy them specially.

Just my suggestion.

thanks
a
Skirmitt



Joined: 19 May 2009
Posts: 60

View user's profile Send private message

PostPosted: Tue Oct 05, 2010 12:14 pm     Reply with quote

Well after a long time I picked the SD code up again and I succeeded ! Although I still have some questions, I'll ask them in another thread.
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group