Hi, looks like 2v22 broke the Nucleo F411 build. Seems to work on 2v21.
Both my Espruino Wifi and Pico seems to work with 2v22, and those have the same / similar uC.
>
____ _
| __|___ ___ ___ _ _|_|___ ___
| __|_ -| . | _| | | | | . |
|____|___| _|_| |___|_|_|_|___|
|_| espruino.com
2v22 (c) 2024 G.Williams
Espruino is Open Source. Our work is supported
only by sales of official boards and donations:
http://espruino.com/Donate
>process.env
Uncaught [object Object]
at line 1 col 8
process.env
^
Some basic commands work, but looks like even the simplest function call fails
>2+3
=5
>a="alma"
="alma"
>a+5
="alma5"
>b = {x:1}
={ x: 1 }
>b
={ x: 1 }
>b.x
=1
>print(b)
Uncaught [object Object]
at line 1 col 1
print(b)
^
>
>print('x')
Uncaught [object Object]
at line 1 col 1
print('x')
^
>
>LED1.toggle()
Uncaught [object Object]
at line 1 col 5
LED1.toggle()
^
>
I will try to dig deeper, haven't built the firmware yet :)
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Hi, looks like 2v22 broke the Nucleo F411 build. Seems to work on 2v21.
Both my Espruino Wifi and Pico seems to work with 2v22, and those have the same / similar uC.
Nucleo on 2v21:
After update via the built-in STLink:
Some basic commands work, but looks like even the simplest function call fails
I will try to dig deeper, haven't built the firmware yet :)