summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/pin.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-10-18 11:06:20 +1100
committerDamien George <damien.p.george@gmail.com>2016-10-21 16:26:01 +1100
commit4ebdb1f2b217410cdc1cee0e0c0da8fceb7627f2 (patch)
treed6188cf8f6579ffa66b8370032b8184a901a5312 /stmhal/pin.h
parent5d0735b93a52ff7f2f41dd27f3a22ca847f6b49b (diff)
downloadmicropython-4ebdb1f2b217410cdc1cee0e0c0da8fceb7627f2.tar.gz
micropython-4ebdb1f2b217410cdc1cee0e0c0da8fceb7627f2.zip
py: Be more specific with MP_DECLARE_CONST_FUN_OBJ macros.
In order to have more fine-grained control over how builtin functions are constructed, the MP_DECLARE_CONST_FUN_OBJ macros are made more specific, with suffix of _0, _1, _2, _3, _VAR, _VAR_BETEEN or _KW. These names now match the MP_DEFINE_CONST_FUN_OBJ macros.
Diffstat (limited to 'stmhal/pin.h')
-rw-r--r--stmhal/pin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/pin.h b/stmhal/pin.h
index df7df0ce2e..a11b0a0f8e 100644
--- a/stmhal/pin.h
+++ b/stmhal/pin.h
@@ -86,7 +86,7 @@ extern const mp_obj_type_t pin_cpu_pins_obj_type;
extern const mp_obj_dict_t pin_cpu_pins_locals_dict;
extern const mp_obj_dict_t pin_board_pins_locals_dict;
-MP_DECLARE_CONST_FUN_OBJ(pin_init_obj);
+MP_DECLARE_CONST_FUN_OBJ_KW(pin_init_obj);
void pin_init0(void);
uint32_t pin_get_mode(const pin_obj_t *pin);