diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-19 23:19:18 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-19 23:19:18 +0000 |
commit | 948a58d56e3b0d43789ff5e91d6f844157dec05d (patch) | |
tree | e2b0b7420ac870b184ea4e6b706a6051aaf1115b /py/runtime.h | |
parent | 1b182a30d00fc0a35b8ad835e51f019e28ba919a (diff) | |
parent | 51dabac0961165cd38cdd0ba227aaf014190091c (diff) | |
download | micropython-948a58d56e3b0d43789ff5e91d6f844157dec05d.tar.gz micropython-948a58d56e3b0d43789ff5e91d6f844157dec05d.zip |
Merge pull request #310 from dhylands/pin_map
Add pin mapping code.
Diffstat (limited to 'py/runtime.h')
-rw-r--r-- | py/runtime.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/py/runtime.h b/py/runtime.h index 1eef99d2ff..7215cc8890 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -1,3 +1,5 @@ +void rt_check_nargs(int n_args, machine_uint_t n_args_min, machine_uint_t n_args_max, int n_kw, bool is_kw); + int rt_is_true(mp_obj_t arg); mp_obj_t rt_load_const_dec(qstr qstr); |