Merge pull request #307 from iabdalkader/master

Fix usart_obj_tx_char
This commit is contained in:
Damien George 2014-02-17 22:17:56 +00:00
commit ff77dc567c
1 changed files with 4 additions and 2 deletions

View File

@ -205,8 +205,10 @@ static mp_obj_t usart_obj_rx_char(mp_obj_t self_in) {
static mp_obj_t usart_obj_tx_char(mp_obj_t self_in, mp_obj_t c) { static mp_obj_t usart_obj_tx_char(mp_obj_t self_in, mp_obj_t c) {
pyb_usart_obj_t *self = self_in; pyb_usart_obj_t *self = self_in;
if (self->is_enabled) { uint len;
usart_tx_char(self->usart_id, mp_obj_get_int(c)); const char *str = mp_obj_str_get_data(c, &len);
if (len == 1 && self->is_enabled) {
usart_tx_char(self->usart_id, str[0]);
} }
return mp_const_none; return mp_const_none;
} }