diff options
| author | Dan Halbert <halbert@halwitz.org> | 2020-03-05 16:35:31 -0500 |
|---|---|---|
| committer | Dan Halbert <halbert@halwitz.org> | 2020-03-05 16:35:31 -0500 |
| commit | 817b5be320b36b9cac59b195b1c19359783fe032 (patch) | |
| tree | 5ea4c33a2b205c93cd1a3ebeabeb41a97b65f92b /shared-bindings/touchio | |
| parent | e30b1d3121b094e8f8ae67ff1b66f381c37c6a07 (diff) | |
rename routines to be clearer; fix wiznet arg types
Diffstat (limited to 'shared-bindings/touchio')
| -rw-r--r-- | shared-bindings/touchio/TouchIn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/touchio/TouchIn.c b/shared-bindings/touchio/TouchIn.c index 5eadb2cc4..db53ec1bc 100644 --- a/shared-bindings/touchio/TouchIn.c +++ b/shared-bindings/touchio/TouchIn.c @@ -66,7 +66,7 @@ STATIC mp_obj_t touchio_touchin_make_new(const mp_obj_type_t *type, mp_arg_check_num(n_args, kw_args, 1, 1, false); // 1st argument is the pin - const mcu_pin_obj_t *pin = validate_is_free_pin(args[0]); + const mcu_pin_obj_t *pin = validate_obj_is_free_pin(args[0]); touchio_touchin_obj_t *self = m_new_obj(touchio_touchin_obj_t); self->base.type = &touchio_touchin_type; |
