Where to find a previous version of firmware? #3953
Replies: 1 comment
-
Posted at 2014-07-17 by @gfwilliams http://www.espruino.com/binaries Just find Can you paste up what the error messages are? If it is something that's broken in this version I'd like to try and fix it as soon as I can. Posted at 2014-07-17 by user7114 Issue #1 @ v67 -- console respond to reset() does not always return with a > Issue #2 Unknown errors in v67 but in v66 all responses/feedbacks/warnings OK Test code in pasted first then v66 responses and then v67 responses.
reset(); | |_ ___ ___ _ ||___ ___
| |_ ___ ___ _ ||___ ___
Posted at 2014-07-17 by @gfwilliams Ahh. So this isn't a bug in Espruino as far as I know. (Not sure what is causing issue 1 though) What has happened is onInit is only called on startup - not when you first upload your code. You've set a timeout to occur that uses i2c, and it happens before i2c is initialised. In 1v67 the i2c error causes an exception, which causes the timeout to be removed. To fix it simply add the line Posted at 2014-07-17 by user7114
Looking at the last line of code (above) it is already installed? Posted at 2014-07-18 by @gfwilliams Sorry - was checking on my phone and didn't see that. Just looked and it seems you are initialising the lcd before you initialise the i2c. Try moving the i2c.setup line above the hd44780 line. It probably explains why you had to copy all the other lines outside of the onInit function too? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Posted at 2014-07-17 by user7114
I need to revert back to a previous version of firmware.
By downloading the latest (v67) broke my code and I cannot even
try to decipher what the errors are on the console.
I need v66 version download ?
Beta Was this translation helpful? Give feedback.
All reactions