Anyone found simple way to add 128k SRAM
Shael
Posts: 17
I am working on a Propeller project and would like to add 128K sram 3.3v IC.·All the 3.3v sram seam to be in surface mount only. Has anyone found a simple way to add an sram to there Propeller Proto Board?
Comments
Look at the documentation for the TriBlade Prop (on this forum) for one example of their use. The part # for the SRAM is AS6C4008-55PCN.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Airspace V - international hangar flying!
www.airspace-v.com/ggadgets for tools & toys
Mike,
Could you expand on this "tie the extra address lines to Vss and just use 128K"?
How many lines could we reduce this chip to under this configuration?
We need a "common standard" for an SRAM solution here just like that of Rokicki's SD driver.
I'm not sure SPI ram is the solution to the problem as speeds become an issue.
OBC
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
New to the Propeller?
Visit the: The Propeller Pages @ Warranty Void.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
--Steve
Propalyzer: Propeller PC Logic Analyzer
http://forums.parallax.com/showthread.php?p=788230
Thanks for the tip. Except for the 55ns speed should work fine.
A 128K SRAM uses 17 address lines (A0..A16). A 512K SRAM uses 19 address lines (A0..A18). If you only want to use 128K out of 512K, then you can connect the last two address lines to Vss (A17 and A18) and save 2 Prop pins.
Cypress makes a 2Mx8 45ns SRAM, CY62167EV30. Of course this requires 21 address lines.
In my case, I only need to read this sequentially, rather than randomly.
I have a really simple circuit that enables you to use all 21 address lines by using only a few control lines from the Propeller.
A couple of 74HC4040 counters are cascaded to increment the address lines on command from the Prop.
I've attached a partial schematic to show how it's done. Let me know if anyone would like more info.
My application allows a camera to store data in the SRAM, then reads it to analyze the image.
Jim