Version 2.4b - 23rd September 2018

Fixes resetautorun for Adafruit ItsyBitsy M4 and Feather M4
This commit is contained in:
David Johnson-Davies 2018-09-23 18:15:13 +01:00 committed by GitHub
parent 18a10d4b77
commit 401b713ad6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/* uLisp ARM Version 2.4a - www.ulisp.com
David Johnson-Davies - www.technoblogy.com - 16th September 2018
/* uLisp ARM Version 2.4b - www.ulisp.com
David Johnson-Davies - www.technoblogy.com - 23rd September 2018
Licensed under the MIT license: https://opensource.org/licenses/MIT
*/
@ -641,7 +641,7 @@ void autorunimage () {
loadimage(NULL);
apply(autorun, NULL, &nullenv);
}
#elif defined(ARDUINO_METRO_M4)
#elif defined(ARDUINO_METRO_M4) || defined(ARDUINO_ITSYBITSY_M4) || defined(ARDUINO_FEATHER_M4)
object *nullenv = NULL;
FlashBeginRead();
object *autorun = (object *)FlashReadInt();