diff options
author | stijn <stijn@ignitron.net> | 2020-10-21 11:13:47 +0200 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2020-10-29 15:30:42 +1100 |
commit | 25c4563f26c2270cde01b01dca0e8b801c9c8282 (patch) | |
tree | 893f7160c558bceb288f06642d2fae440d51014d /examples/usercmodule/cppexample/examplemodule.h | |
parent | fad4079778f46bc21dd19a674b31b4c3c7eb6a91 (diff) | |
download | micropython-25c4563f26c2270cde01b01dca0e8b801c9c8282.tar.gz micropython-25c4563f26c2270cde01b01dca0e8b801c9c8282.zip |
examples: Add example code for user C modules, both C and C++.
Add working example code to provide a starting point for users with files
that they can just copy, and include the modules in the coverage test to
verify the complete user C module build functionality. The cexample module
uses the code originally found in cmodules.rst, which has been updated to
reflect this and partially rewritten with more complete information.
Diffstat (limited to 'examples/usercmodule/cppexample/examplemodule.h')
-rw-r--r-- | examples/usercmodule/cppexample/examplemodule.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/usercmodule/cppexample/examplemodule.h b/examples/usercmodule/cppexample/examplemodule.h new file mode 100644 index 0000000000..d89384a630 --- /dev/null +++ b/examples/usercmodule/cppexample/examplemodule.h @@ -0,0 +1,5 @@ +// Include MicroPython API. +#include "py/runtime.h" + +// Declare the function we'll make available in Python as cppexample.cppfunc(). +extern mp_obj_t cppfunc(mp_obj_t a_obj, mp_obj_t b_obj); |