PDA

View Full Version : Array larger than 256 bytes



Ron Marcus
- 26th November 2005, 15:32
Is it possible to create an array larger than 256 bytes in PBP? I'd like to use one of the newer 18F25(26)00 series chips with at least a 2K array.

Thanks,
Ron

Charles Linquis
- 27th November 2005, 07:14
The 18F chips don't have the paging scheme (or the limitations) of the smaller parts. Array size is limited only by available RAM.

I created a 3500 byte array in an 8720 and it compiled with no errors.

mister_e
- 27th November 2005, 08:47
Depending of you application but why not simply using the internal or an external EEPROM instead ?

Ron Marcus
- 27th November 2005, 15:38
Depending of you application but why not simply using the internal or an external EEPROM instead ?

Unless I use FRAM, the EEPROM is much too slow. I am streaming data in/out on an RF link at 115K baud. Thanks for the replies...

Ron