From 4eaebc1988699db6ebfd35fbe56a3e8d4cd0b373 Mon Sep 17 00:00:00 2001 From: nanjekyejoannah Date: Mon, 12 Oct 2020 17:25:05 -0300 Subject: docs/develop: Add MicroPython Internals chapter. 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. --- docs/develop/extendingmicropython.rst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 docs/develop/extendingmicropython.rst (limited to 'docs/develop/extendingmicropython.rst') diff --git a/docs/develop/extendingmicropython.rst b/docs/develop/extendingmicropython.rst new file mode 100644 index 000000000..7fb1ae47a --- /dev/null +++ b/docs/develop/extendingmicropython.rst @@ -0,0 +1,19 @@ +.. _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 ` for more information on building core modules that +live in the main MicroPython repository. + +.. toctree:: + :maxdepth: 3 + + cmodules.rst + natmod.rst + \ No newline at end of file -- cgit v1.2.3