Timeline for How do I extract code from an arduino? [duplicate]
Current License: CC BY-SA 4.0
13 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Sep 19, 2019 at 17:07 | history | duplicates list edited | VE7JRO | duplicates list edited from Is there any way to download a sketch from an Arduino? to Is there any way to download a sketch from an Arduino?, Get the uploaded code from arduino by using arduino IDE 1.0.6 [duplicate] | |
| Sep 19, 2019 at 17:01 | history | closed |
The Guy with The Hat VE7JRO |
Duplicate of Is there any way to download a sketch from an Arduino? | |
| Sep 19, 2019 at 15:20 | review | Close votes | |||
| Sep 19, 2019 at 17:05 | |||||
| Sep 19, 2019 at 11:58 | comment | added | Mawg | Isn't the code in one of your backups, or your version control system? | |
| Sep 19, 2019 at 11:04 | comment | added | Martin | You likely can't recover the source code, but if you had some important logic that you don't want to rewrite from scratch, it's very likely you can dump out the assembly and reconstruct that into C pretty easily (although manually). | |
| Sep 19, 2019 at 6:00 | history | tweeted | twitter.com/StackArduino/status/1174563950610001920 | ||
| Sep 19, 2019 at 1:45 | answer | added | mckenzm | timeline score: 9 | |
| Sep 18, 2019 at 23:34 | history | became hot network question | |||
| Sep 18, 2019 at 20:22 | comment | added | stevieb |
You have a couple of answers, but here's a piece of advice for going forward... protect yourself against code loss by learning how to use a VCS (Version Control System). This will allow you to keep all changes to your software on both your local computer as well as a remote system which stores it. Nowadays, I use git, but there are several. Github is a free online git storage facility. So you do some code, "commit" your changes, and then "push" them up to Github. You can then pull your code down to any computer with git on it thereafter.
|
|
| Sep 18, 2019 at 15:37 | answer | added | Michel Keijzers | timeline score: 13 | |
| Sep 18, 2019 at 15:37 | answer | added | Duncan C | timeline score: 23 | |
| Sep 18, 2019 at 15:35 | review | First posts | |||
| Sep 18, 2019 at 16:11 | |||||
| Sep 18, 2019 at 15:33 | history | asked | Awesome_Ace22 | CC BY-SA 4.0 |