You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
677 B
19 lines
677 B
4 years ago
|
.. _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
|
||
|
|