You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
6 lines
190 B
C
6 lines
190 B
C
|
|
// 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);
|