4eaebc1988
This commit adds many new sections to the existing "Developing and building MicroPython" chapter to make it all about the internals of MicroPython. This work was done as part of Google's Season of Docs 2020.
19 lines
677 B
ReStructuredText
19 lines
677 B
ReStructuredText
.. _extendingmicropython:
|
|
|
|
Extending MicroPython in C
|
|
==========================
|
|
|
|
This chapter describes options for implementing additional functionality in C, but from code
|
|
written outside of the main MicroPython repository. The first approach is useful for building
|
|
your own custom firmware with some project-specific additional modules or functions that can
|
|
be accessed from Python. The second approach is for building modules that can be loaded at runtime.
|
|
|
|
Please see the :ref:`library section <internals_library>` for more information on building core modules that
|
|
live in the main MicroPython repository.
|
|
|
|
.. toctree::
|
|
:maxdepth: 3
|
|
|
|
cmodules.rst
|
|
natmod.rst
|
|
|