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
micropython
micropython-native
micropython-lib
micropython-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 micropython
Add MicroPython as a dependency in recipe with RDEPENDS
(for runtime) or DEPENDS
(for build):
DEPENDS += " micropython"
RDEPENDS_${PN} += " micropython"