Loading a Program from SD card

Can anyone link to an example of loading a program from SD card..

This has been a basic thing in computing since DOS, but i never seen the comcept covered in Arduino Land, I want to run a code section, and when i run out of memory for that code section, or what to switch over to a new task, i just go to the disk and load in the new code section and keep on rolling... i mean we used to do this with the AppleIIE and 5.25 floppy drives back in the day...

The architecture of the AVR processors does not allow running code from RAM, hence the only way to do what you want would be very clumsy - using a second processor to read the SD, burn that code to flash, and restart the AVR !

1 Like

what about ESP32?

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.