-
Notifications
You must be signed in to change notification settings - Fork 6
Description
I had a couple questions regarding possible use of this on my project.
1: Is there any reason this would not work with an ATTINY85 running on an 8 mhz internal clock, since it's the same family?
2: I don't suppose it would work on a 328P...
3: The "Master" program that uploads the firmware confuses me. How would I get my firmware into a byte array like was shown in order to upload it? Normally it's a hex file.
Specifically, I am using an ESP8266 as the host device, where I would ideally upload the hex file to the internal filesystem (which I can do already). Can you elaborate on what algorithm (pseudocode or C++) would convert a hex file (or whatever compiled output you used) into a byte array as you demonstrated? I'm also not sure how it's safe to move it around address-wise without corrupting the program (unless it uses relative addressing by default, or it's somehow compiled that way).