OpenEmbedded layer for MicroPython.
MicroPython is a lean and fast implementation of the Python 3 programming language that is optimised to run on embedded systems.
1.x
1.x
micropythonmicropython-nativemicropython-libmicropython-lib-native
Add meta-micropython layer to EXTRALAYERS in conf/bblayers.conf. For example:
```	EXTRALAYERS +=" \	${TOPDIR}/sources/meta-micropython \	" ``` To build latest MicroPython package:
bitbake micropythonAdd MicroPython as a dependency in recipe with RDEPENDS (for runtime) or DEPENDS (for build):
DEPENDS += " micropython" RDEPENDS_${PN} += " micropython"