Receiving code from Flash drive through Datalogger
Hi all!
We are working on a school project with the Basic Stamp Homework Board 2.
Our code is large so we are wondering if anyone knows how to store the code on the flash drive. We then want to use this code with our parallax board through a datalogger. So hopefully, our datalogger will be able to send code to the board from the flashdrive as well as send data from our sensor to the flashdrive. We understand that this may call for multiple files to be made on our flashdrive.
Please help us out if you know whether this is doable or not!
Thanks!
We are working on a school project with the Basic Stamp Homework Board 2.
Our code is large so we are wondering if anyone knows how to store the code on the flash drive. We then want to use this code with our parallax board through a datalogger. So hopefully, our datalogger will be able to send code to the board from the flashdrive as well as send data from our sensor to the flashdrive. We understand that this may call for multiple files to be made on our flashdrive.
Please help us out if you know whether this is doable or not!
Thanks!
Comments
Large programs can often be made much smaller by:
1) Removing debugging code (You can keep it as comments for documentation purposes)
2) Shortening string constants used to label display output
3) Finding commonly used code sequences, maybe with slight differences between them, and making them into subroutines called with a GOSUB, maybe with one or two variables used as parameters / return values.