View Single Post
Old 02-07-2011, 10:22 AM   #4336 (permalink)
shortcircuit
EcoModding Lurker
 
Join Date: Feb 2011
Location: arizona
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by DJBecker View Post
The software to read and write SD cards is a bit complicated. You'll definitely want to use one of the processors with more memory, and a pre-written library.

You won't be able to run programs from the SD card. Programs have to be first copied to the internal flash, which is a pretty slow process.

The Arduino boards all come with a small bootloader program that runs right after reset to check if you want to download a new program. If there isn't a download request, it jumps to the user program. This works pretty well for updates, but you do have to check that it won't screw up your control. The bootloader sets all of the OCR1A/B/C pins to outputs, which might command full throttle for one or two seconds.

The AVR processors all have small EEPROM memories which is where operational parameters are usually saved.
so my best option is to simply use a USB arduino to make programming/reprogramming easy....
THANKS!
  Reply With Quote