nrf5/modules: Syncing uart module code after upmerge with upstream master.

This commit is contained in:
Glenn Ruben Bakke 2017-02-19 19:06:12 +01:00
parent f69c1acbbe
commit 7c0195da6c

View File

@ -439,7 +439,7 @@ const mp_obj_type_t pyb_uart_type = {
.name = MP_QSTR_UART, .name = MP_QSTR_UART,
.print = pyb_uart_print, .print = pyb_uart_print,
.make_new = pyb_uart_make_new, .make_new = pyb_uart_make_new,
.getiter = mp_identity, .getiter = mp_identity_getiter,
.iternext = mp_stream_unbuffered_iter, .iternext = mp_stream_unbuffered_iter,
.protocol = &uart_stream_p, .protocol = &uart_stream_p,
.locals_dict = (mp_obj_t)&pyb_uart_locals_dict, .locals_dict = (mp_obj_t)&pyb_uart_locals_dict,