Any good tutorials which are more embedded hardware related (programming AVRs etc)?
I only seem to be stuck at the equals instructions regarding variables (with external SRAM) through the TinyBASIC sketch. I just need a method to make an internal array equal the external SRAM array without bringing the data in (at least not in one chunk due to the larger size of the external SRAM; it could be bought into the AVR in small chunks only if TinyBASIC would still work by using this method which I am not sure about) the external SRAM into the AVRs internal SRAM (by this I mean the data in the external SRAM must be able to be used in the TinyBASIC sketch just like it is with internal SRAM; the code line with the equals operator in the first post is an example of how I need to be able to access and use the external SRAM variables).