Remove mp_obj_new_exception_msg_1_arg and _2_arg.
This commit is contained in:
parent
780ba22bb8
commit
099a9cb575
2
py/obj.h
2
py/obj.h
@ -215,8 +215,6 @@ mp_obj_t mp_obj_new_complex(mp_float_t real, mp_float_t imag);
|
|||||||
#endif
|
#endif
|
||||||
mp_obj_t mp_obj_new_exception(qstr id);
|
mp_obj_t mp_obj_new_exception(qstr id);
|
||||||
mp_obj_t mp_obj_new_exception_msg(qstr id, const char *msg);
|
mp_obj_t mp_obj_new_exception_msg(qstr id, const char *msg);
|
||||||
mp_obj_t mp_obj_new_exception_msg_1_arg(qstr id, const char *fmt, const char *a1);
|
|
||||||
mp_obj_t mp_obj_new_exception_msg_2_args(qstr id, const char *fmt, const char *a1, const char *a2);
|
|
||||||
mp_obj_t mp_obj_new_exception_msg_varg(qstr id, const char *fmt, ...); // counts args by number of % symbols in fmt, excluding %%; can only handle void* sizes (ie no float/double!)
|
mp_obj_t mp_obj_new_exception_msg_varg(qstr id, const char *fmt, ...); // counts args by number of % symbols in fmt, excluding %%; can only handle void* sizes (ie no float/double!)
|
||||||
mp_obj_t mp_obj_new_range(int start, int stop, int step);
|
mp_obj_t mp_obj_new_range(int start, int stop, int step);
|
||||||
mp_obj_t mp_obj_new_range_iterator(int cur, int stop, int step);
|
mp_obj_t mp_obj_new_range_iterator(int cur, int stop, int step);
|
||||||
|
@ -66,7 +66,7 @@ STATIC mp_obj_t complex_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const
|
|||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_TypeError, "complex takes at most 2 arguments, %d given", (void*)(machine_int_t)n_args));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "complex takes at most 2 arguments, %d given", n_args));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ STATIC mp_obj_t exception_call(mp_obj_t self_in, uint n_args, uint n_kw, const m
|
|||||||
mp_obj_exception_t *base = self_in;
|
mp_obj_exception_t *base = self_in;
|
||||||
|
|
||||||
if (n_kw != 0) {
|
if (n_kw != 0) {
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_TypeError, "%s does not take keyword arguments", qstr_str(base->id)));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "%s does not take keyword arguments", qstr_str(base->id)));
|
||||||
}
|
}
|
||||||
|
|
||||||
mp_obj_exception_t *o = m_new_obj_var(mp_obj_exception_t, mp_obj_t, n_args);
|
mp_obj_exception_t *o = m_new_obj_var(mp_obj_exception_t, mp_obj_t, n_args);
|
||||||
@ -75,14 +75,6 @@ mp_obj_t mp_obj_new_exception_msg(qstr id, const char *msg) {
|
|||||||
return mp_obj_new_exception_msg_varg(id, msg);
|
return mp_obj_new_exception_msg_varg(id, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
mp_obj_t mp_obj_new_exception_msg_1_arg(qstr id, const char *fmt, const char *a1) {
|
|
||||||
return mp_obj_new_exception_msg_varg(id, fmt, a1);
|
|
||||||
}
|
|
||||||
|
|
||||||
mp_obj_t mp_obj_new_exception_msg_2_args(qstr id, const char *fmt, const char *a1, const char *a2) {
|
|
||||||
return mp_obj_new_exception_msg_varg(id, fmt, a1, a2);
|
|
||||||
}
|
|
||||||
|
|
||||||
mp_obj_t mp_obj_new_exception_msg_varg(qstr id, const char *fmt, ...) {
|
mp_obj_t mp_obj_new_exception_msg_varg(qstr id, const char *fmt, ...) {
|
||||||
// make exception object
|
// make exception object
|
||||||
mp_obj_exception_t *o = m_new_obj_var(mp_obj_exception_t, mp_obj_t*, 0);
|
mp_obj_exception_t *o = m_new_obj_var(mp_obj_exception_t, mp_obj_t*, 0);
|
||||||
|
@ -40,7 +40,7 @@ STATIC mp_obj_t float_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const m
|
|||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_TypeError, "float takes at most 1 argument, %d given", (void*)(machine_int_t)n_args));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "float takes at most 1 argument, %d given", n_args));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
17
py/objfun.c
17
py/objfun.c
@ -26,20 +26,19 @@ STATIC void check_nargs(mp_obj_fun_native_t *self, int n_args, int n_kw) {
|
|||||||
|
|
||||||
if (self->n_args_min == self->n_args_max) {
|
if (self->n_args_min == self->n_args_max) {
|
||||||
if (n_args != self->n_args_min) {
|
if (n_args != self->n_args_min) {
|
||||||
nlr_jump(mp_obj_new_exception_msg_2_args(MP_QSTR_TypeError,
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError,
|
||||||
"function takes %d positional arguments but %d were given",
|
"function takes %d positional arguments but %d were given",
|
||||||
(const char*)(machine_int_t)self->n_args_min,
|
self->n_args_min, n_args));
|
||||||
(const char*)(machine_int_t)n_args));
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (n_args < self->n_args_min) {
|
if (n_args < self->n_args_min) {
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_TypeError,
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError,
|
||||||
"<fun name>() missing %d required positional arguments: <list of names of params>",
|
"<fun name>() missing %d required positional arguments: <list of names of params>",
|
||||||
(const char*)(machine_int_t)(self->n_args_min - n_args)));
|
self->n_args_min - n_args));
|
||||||
} else if (n_args > self->n_args_max) {
|
} else if (n_args > self->n_args_max) {
|
||||||
nlr_jump(mp_obj_new_exception_msg_2_args(MP_QSTR_TypeError,
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError,
|
||||||
"<fun name> expected at most %d arguments, got %d",
|
"<fun name> expected at most %d arguments, got %d",
|
||||||
(void*)(machine_int_t)self->n_args_max, (void*)(machine_int_t)n_args));
|
self->n_args_max, n_args));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -144,7 +143,7 @@ STATIC mp_obj_t fun_bc_call(mp_obj_t self_in, uint n_args, uint n_kw, const mp_o
|
|||||||
mp_obj_fun_bc_t *self = self_in;
|
mp_obj_fun_bc_t *self = self_in;
|
||||||
|
|
||||||
if (n_args < self->n_args - self->n_def_args || n_args > self->n_args) {
|
if (n_args < self->n_args - self->n_def_args || n_args > self->n_args) {
|
||||||
nlr_jump(mp_obj_new_exception_msg_2_args(MP_QSTR_TypeError, "function takes %d positional arguments but %d were given", (const char*)(machine_int_t)self->n_args, (const char*)(machine_int_t)n_args));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "function takes %d positional arguments but %d were given", self->n_args, n_args));
|
||||||
}
|
}
|
||||||
if (n_kw != 0) {
|
if (n_kw != 0) {
|
||||||
nlr_jump(mp_obj_new_exception_msg(MP_QSTR_TypeError, "function does not take keyword arguments"));
|
nlr_jump(mp_obj_new_exception_msg(MP_QSTR_TypeError, "function does not take keyword arguments"));
|
||||||
@ -253,7 +252,7 @@ STATIC mp_obj_t fun_asm_call(mp_obj_t self_in, uint n_args, uint n_kw, const mp_
|
|||||||
mp_obj_fun_asm_t *self = self_in;
|
mp_obj_fun_asm_t *self = self_in;
|
||||||
|
|
||||||
if (n_args != self->n_args) {
|
if (n_args != self->n_args) {
|
||||||
nlr_jump(mp_obj_new_exception_msg_2_args(MP_QSTR_TypeError, "function takes %d positional arguments but %d were given", (const char*)(machine_int_t)self->n_args, (const char*)(machine_int_t)n_args));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "function takes %d positional arguments but %d were given", self->n_args, n_args));
|
||||||
}
|
}
|
||||||
if (n_kw != 0) {
|
if (n_kw != 0) {
|
||||||
nlr_jump(mp_obj_new_exception_msg(MP_QSTR_TypeError, "function does not take keyword arguments"));
|
nlr_jump(mp_obj_new_exception_msg(MP_QSTR_TypeError, "function does not take keyword arguments"));
|
||||||
|
@ -28,7 +28,7 @@ STATIC mp_obj_t gen_wrap_call(mp_obj_t self_in, uint n_args, uint n_kw, const mp
|
|||||||
const byte *bc_code;
|
const byte *bc_code;
|
||||||
mp_obj_fun_bc_get(self_fun, &bc_n_args, &bc_n_state, &bc_code);
|
mp_obj_fun_bc_get(self_fun, &bc_n_args, &bc_n_state, &bc_code);
|
||||||
if (n_args != bc_n_args) {
|
if (n_args != bc_n_args) {
|
||||||
nlr_jump(mp_obj_new_exception_msg_2_args(MP_QSTR_TypeError, "function takes %d positional arguments but %d were given", (const char*)(machine_int_t)bc_n_args, (const char*)(machine_int_t)n_args));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "function takes %d positional arguments but %d were given", bc_n_args, n_args));
|
||||||
}
|
}
|
||||||
if (n_kw != 0) {
|
if (n_kw != 0) {
|
||||||
nlr_jump(mp_obj_new_exception_msg(MP_QSTR_TypeError, "function does not take keyword arguments"));
|
nlr_jump(mp_obj_new_exception_msg(MP_QSTR_TypeError, "function does not take keyword arguments"));
|
||||||
|
@ -39,7 +39,7 @@ STATIC mp_obj_t int_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_
|
|||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_TypeError, "int takes at most 2 arguments, %d given", (void*)(machine_int_t)n_args));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "int takes at most 2 arguments, %d given", n_args));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ STATIC mp_obj_t list_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp
|
|||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_TypeError, "list takes at most 1 argument, %d given", (void*)(machine_int_t)n_args));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "list takes at most 1 argument, %d given", n_args));
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -67,7 +67,7 @@ STATIC mp_obj_t set_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_
|
|||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_TypeError, "set takes at most 1 argument, %d given", (void*)(machine_int_t)n_args));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "set takes at most 1 argument, %d given", n_args));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@ STATIC mp_obj_t tuple_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const m
|
|||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_TypeError, "tuple takes at most 1 argument, %d given", (void*)(machine_int_t)n_args));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "tuple takes at most 1 argument, %d given", n_args));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -103,13 +103,13 @@ STATIC mp_obj_t class_make_new(mp_obj_t self_in, uint n_args, uint n_kw, const m
|
|||||||
m_del(mp_obj_t, args2, 1 + n_args + 2 * n_kw);
|
m_del(mp_obj_t, args2, 1 + n_args + 2 * n_kw);
|
||||||
}
|
}
|
||||||
if (init_ret != mp_const_none) {
|
if (init_ret != mp_const_none) {
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_TypeError, "__init__() should return None, not '%s'", mp_obj_get_type_str(init_ret)));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "__init__() should return None, not '%s'", mp_obj_get_type_str(init_ret)));
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
// TODO
|
// TODO
|
||||||
if (n_args != 0) {
|
if (n_args != 0) {
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_TypeError, "function takes 0 positional arguments but %d were given", (void*)(machine_int_t)n_args));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "function takes 0 positional arguments but %d were given", n_args));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -284,7 +284,7 @@ STATIC mp_obj_t type_call(mp_obj_t self_in, uint n_args, uint n_kw, const mp_obj
|
|||||||
mp_obj_type_t *self = self_in;
|
mp_obj_type_t *self = self_in;
|
||||||
|
|
||||||
if (self->make_new == NULL) {
|
if (self->make_new == NULL) {
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_TypeError, "cannot create '%s' instances", self->name));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "cannot create '%s' instances", self->name));
|
||||||
}
|
}
|
||||||
|
|
||||||
// make new instance
|
// make new instance
|
||||||
@ -511,7 +511,7 @@ STATIC mp_obj_t static_class_method_make_new(mp_obj_t self_in, uint n_args, uint
|
|||||||
assert(self_in == &mp_type_staticmethod || self_in == &mp_type_classmethod);
|
assert(self_in == &mp_type_staticmethod || self_in == &mp_type_classmethod);
|
||||||
|
|
||||||
if (n_args != 1 || n_kw != 0) {
|
if (n_args != 1 || n_kw != 0) {
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_TypeError, "function takes 1 positional argument but %d were given", (void*)(machine_int_t)n_args));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_TypeError, "function takes 1 positional argument but %d were given", n_args));
|
||||||
}
|
}
|
||||||
|
|
||||||
mp_obj_static_class_method_t *o = m_new_obj(mp_obj_static_class_method_t);
|
mp_obj_static_class_method_t *o = m_new_obj(mp_obj_static_class_method_t);
|
||||||
|
@ -84,7 +84,7 @@ done:
|
|||||||
return (found ^ neg) - neg;
|
return (found ^ neg) - neg;
|
||||||
|
|
||||||
value_error:
|
value_error:
|
||||||
nlr_jump(mp_obj_new_exception_msg_2_args(MP_QSTR_ValueError, "invalid literal for int() with base %d: '%s'", (void*)(machine_uint_t)base, s));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_ValueError, "invalid literal for int() with base %d: '%s'", base, s));
|
||||||
}
|
}
|
||||||
|
|
||||||
#else /* defined(UNIX) */
|
#else /* defined(UNIX) */
|
||||||
|
@ -427,7 +427,7 @@ mp_obj_t pyb_ADC(mp_obj_t pin_name_obj) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (i == ADC_NUM_CHANNELS) {
|
if (i == ADC_NUM_CHANNELS) {
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_ValueError, "pin %s does not have ADC capabilities", pin_name));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_ValueError, "pin %s does not have ADC capabilities", pin_name));
|
||||||
}
|
}
|
||||||
|
|
||||||
// init ADC just for this channel
|
// init ADC just for this channel
|
||||||
@ -438,7 +438,7 @@ mp_obj_t pyb_ADC(mp_obj_t pin_name_obj) {
|
|||||||
return o;
|
return o;
|
||||||
|
|
||||||
pin_error:
|
pin_error:
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_ValueError, "pin %s does not exist", pin_name));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_ValueError, "pin %s does not exist", pin_name));
|
||||||
}
|
}
|
||||||
|
|
||||||
MP_DEFINE_CONST_FUN_OBJ_1(pyb_ADC_obj, pyb_ADC);
|
MP_DEFINE_CONST_FUN_OBJ_1(pyb_ADC_obj, pyb_ADC);
|
||||||
|
@ -535,7 +535,7 @@ mp_obj_t pyb_gpio(uint n_args, mp_obj_t *args) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pin_error:
|
pin_error:
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_ValueError, "pin %s does not exist", pin_name));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_ValueError, "pin %s does not exist", pin_name));
|
||||||
}
|
}
|
||||||
|
|
||||||
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(pyb_gpio_obj, 1, 2, pyb_gpio);
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(pyb_gpio_obj, 1, 2, pyb_gpio);
|
||||||
|
@ -129,7 +129,7 @@ mp_obj_t pyb_wlan_http_get(mp_obj_t host_name, mp_obj_t host_path) {
|
|||||||
}
|
}
|
||||||
int sd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
|
int sd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
|
||||||
if (sd < 0) {
|
if (sd < 0) {
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(QSTR_FROM_STR_STATIC("WlanError"), "socket failed: %d", (void*)sd));
|
nlr_jump(mp_obj_new_exception_msg_varg(QSTR_FROM_STR_STATIC("WlanError"), "socket failed: %d", sd));
|
||||||
}
|
}
|
||||||
//printf("socket seemed to work\n");
|
//printf("socket seemed to work\n");
|
||||||
//sys_tick_delay_ms(200);
|
//sys_tick_delay_ms(200);
|
||||||
@ -140,7 +140,7 @@ mp_obj_t pyb_wlan_http_get(mp_obj_t host_name, mp_obj_t host_path) {
|
|||||||
remote.sin_addr.s_addr = htonl(last_ip);
|
remote.sin_addr.s_addr = htonl(last_ip);
|
||||||
int ret = connect(sd, (sockaddr*)&remote, sizeof(sockaddr));
|
int ret = connect(sd, (sockaddr*)&remote, sizeof(sockaddr));
|
||||||
if (ret != 0) {
|
if (ret != 0) {
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(QSTR_FROM_STR_STATIC("WlanError"), "connect failed: %d", (void*)ret));
|
nlr_jump(mp_obj_new_exception_msg_varg(QSTR_FROM_STR_STATIC("WlanError"), "connect failed: %d", ret));
|
||||||
}
|
}
|
||||||
//printf("connect seemed to work\n");
|
//printf("connect seemed to work\n");
|
||||||
//sys_tick_delay_ms(200);
|
//sys_tick_delay_ms(200);
|
||||||
@ -198,7 +198,7 @@ mp_obj_t pyb_wlan_http_get(mp_obj_t host_name, mp_obj_t host_path) {
|
|||||||
// read data
|
// read data
|
||||||
ret = recv(sd, buf, 64, 0);
|
ret = recv(sd, buf, 64, 0);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(QSTR_FROM_STR_STATIC("WlanError"), "recv failed %d", (void*)ret));
|
nlr_jump(mp_obj_new_exception_msg_varg(QSTR_FROM_STR_STATIC("WlanError"), "recv failed %d", ret));
|
||||||
}
|
}
|
||||||
vstr_add_strn(vstr, buf, ret);
|
vstr_add_strn(vstr, buf, ret);
|
||||||
}
|
}
|
||||||
@ -218,7 +218,7 @@ mp_obj_t pyb_wlan_serve(void) {
|
|||||||
sys_tick_delay_ms(500);
|
sys_tick_delay_ms(500);
|
||||||
if (sd < 0) {
|
if (sd < 0) {
|
||||||
printf("socket fail\n");
|
printf("socket fail\n");
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(QSTR_FROM_STR_STATIC("WlanError"), "socket failed: %d", (void*)sd));
|
nlr_jump(mp_obj_new_exception_msg_varg(QSTR_FROM_STR_STATIC("WlanError"), "socket failed: %d", sd));
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -239,7 +239,7 @@ mp_obj_t pyb_wlan_serve(void) {
|
|||||||
sys_tick_delay_ms(100);
|
sys_tick_delay_ms(100);
|
||||||
if (ret != 0) {
|
if (ret != 0) {
|
||||||
printf("bind fail\n");
|
printf("bind fail\n");
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(QSTR_FROM_STR_STATIC("WlanError"), "bind failed: %d", (void*)ret));
|
nlr_jump(mp_obj_new_exception_msg_varg(QSTR_FROM_STR_STATIC("WlanError"), "bind failed: %d", ret));
|
||||||
}
|
}
|
||||||
printf("bind seemed to work\n");
|
printf("bind seemed to work\n");
|
||||||
|
|
||||||
|
@ -190,7 +190,7 @@ mp_obj_t pyb_gpio(int n_args, mp_obj_t *args) {
|
|||||||
return mp_const_none;
|
return mp_const_none;
|
||||||
|
|
||||||
pin_error:
|
pin_error:
|
||||||
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_ValueError, "pin %d does not exist", (void *)(machine_uint_t)pin));
|
nlr_jump(mp_obj_new_exception_msg_varg(MP_QSTR_ValueError, "pin %d does not exist", pin));
|
||||||
}
|
}
|
||||||
|
|
||||||
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(pyb_gpio_obj, 1, 2, pyb_gpio);
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(pyb_gpio_obj, 1, 2, pyb_gpio);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user