Reading parallel memory?
Vaati
Posts: 712
Not sure what can do this, so I'm just putting it in the sandbox...
Is the BS2, prop, or SX able to read a parallel memory device such as a flash memory chip or a UV EPROM and send the data to a computer? This is very important for a lot of my current projects...
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Quit buying all those fixed voltage regulators, and·get an Adjustable Power Supply·for your projects!· Includes an LED testing terminal!
(no longer new) SD Card Adapter·Now available!· Add extra memory to your next Propeller project with ease!
Is the BS2, prop, or SX able to read a parallel memory device such as a flash memory chip or a UV EPROM and send the data to a computer? This is very important for a lot of my current projects...
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Quit buying all those fixed voltage regulators, and·get an Adjustable Power Supply·for your projects!· Includes an LED testing terminal!
(no longer new) SD Card Adapter·Now available!· Add extra memory to your next Propeller project with ease!
Comments
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Quit buying all those fixed voltage regulators, and·get an Adjustable Power Supply·for your projects!· Includes an LED testing terminal!
(no longer new) SD Card Adapter·Now available!· Add extra memory to your next Propeller project with ease!
If you run short of I/O then it's Shift Register Time.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Don't click on this.....
Use the Propeller icon!!
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Don't click on this.....
Use the Propeller icon!!
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Quit buying all those fixed voltage regulators, and·get an Adjustable Power Supply·for your projects!· Includes an LED testing terminal!
(no longer new) SD Card Adapter·Now available!· Add extra memory to your next Propeller project with ease!
It's really not a matter of the size per se...as mentioned above, you can use shift registers. In the example of a BASIC Stamp reading a 64KB EEPROM you would use two 74HC595 and one 74HC165 shift register. /OE would go to ground but you would need the /CS line, so all things considered you would need 5 I/O pins to make this happen. Now, as the EEPROM gets larger it uses more address lines (possibly my data lines too if more then 8-bits wide). So now all you do is add more shift registers as needed. These consume no additional I/O pins from the microcontroller. The limiting factor now is does your microcontroller have enough memory to shift out and xx-bit address and receive the xx-bit data value back? If so, then you're set. While the BASIC Stamp only has 16 bit registers, you could simulate 32-bit address generation very easily, meaning the BASIC Stamp 2 could read an EEPROM with 4294967296 bytes, one at a time.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Engineering
·
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Quit buying all those fixed voltage regulators, and·get an Adjustable Power Supply·for your projects!· Includes an LED testing terminal!
(no longer new) SD Card Adapter·Now available!· Add extra memory to your next Propeller project with ease!