diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-15 11:52:47 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-15 11:52:47 +0100 |
commit | c13d0b3304e656a8501e6eb991b7784694bf8ea9 (patch) | |
tree | 894b3f004800fce9c636a0fd2363e6cd895a5418 | |
parent | 35443610b1b47d148b84bcbcd1d8548a64c1fb3b (diff) |
stmhal: Wrap skin-named-usarts in PYBV10 #if.
-rw-r--r-- | stmhal/usart.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/stmhal/usart.c b/stmhal/usart.c index 247ab629d..cc0a6112e 100644 --- a/stmhal/usart.c +++ b/stmhal/usart.c @@ -182,7 +182,9 @@ STATIC mp_obj_t usart_obj_make_new(mp_obj_t type_in, uint n_args, uint n_kw, con o->usart_id = 0; if (MP_OBJ_IS_STR(args[0])) { const char *port = mp_obj_str_get_str(args[0]); - if (strcmp(port, "XA") == 0) { + if (0) { +#if defined(PYBV10) + } else if (strcmp(port, "XA") == 0) { o->usart_id = PYB_USART_XA; } else if (strcmp(port, "XB") == 0) { o->usart_id = PYB_USART_XB; @@ -190,10 +192,11 @@ STATIC mp_obj_t usart_obj_make_new(mp_obj_t type_in, uint n_args, uint n_kw, con o->usart_id = PYB_USART_YA; } else if (strcmp(port, "YB") == 0) { o->usart_id = PYB_USART_YB; +#endif } else { nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ValueError, "Usart port %s does not exist", port)); } - } else if (MP_OBJ_IS_INT(args[0])) { + } else { o->usart_id = mp_obj_get_int(args[0]); } |