Hi Matt, I need a large array for one of my applications and ran into the large array library which does exactly what I need. I am using a PIC16F1976 and I constantly ran out of data memory, even when defining an array of 200 bytes.
I had a look at the source code and I expect that this is caused by the fact that you define smaller arrays of 256 bytes but the PIC16F1976 does not have banks of that size but banks of at most 80 bytes. Should I make a new large array library or should I try to adapt the current libraries so that they also work for chips that have banks of 80 bytes, so arrays of 64 bytes would be the easiest to work with. If I add it to the existing libraries there are various options: 1) I check for the core type and make a separate part for those types of cores using arrays of 64 bytes. 2) Rewrite the library so that it is based on arrays of 64 bytes instead of 256 bytes and add more arrays to make it fit the original size. Any suggestions? Thanks. Kind regards, Rob -- You received this message because you are subscribed to the Google Groups "jallib" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/jallib. For more options, visit https://groups.google.com/d/optout.
