diff options
author | blmorris <bryan.morrissey@gmail.com> | 2014-07-18 16:06:22 -0400 |
---|---|---|
committer | blmorris <bryan.morrissey@gmail.com> | 2014-07-18 16:06:22 -0400 |
commit | 0f4ee2e44a1e47258a8b07fb25e28286d131390c (patch) | |
tree | 7bfb507183544d14236c0be8a232a92f4113abb1 /teensy/uart.c | |
parent | 0429d35f37532d2a981e704f014a248da9b157d8 (diff) | |
parent | 5467186b0eaa6e856b00f60f807bb988ae2ef8c5 (diff) | |
download | micropython-0f4ee2e44a1e47258a8b07fb25e28286d131390c.tar.gz micropython-0f4ee2e44a1e47258a8b07fb25e28286d131390c.zip |
Merge https://github.com/micropython/micropython
Diffstat (limited to 'teensy/uart.c')
-rw-r--r-- | teensy/uart.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/teensy/uart.c b/teensy/uart.c index e3a35153bc..48149c795d 100644 --- a/teensy/uart.c +++ b/teensy/uart.c @@ -290,7 +290,7 @@ STATIC const mp_arg_t pyb_uart_init_args[] = { { MP_QSTR_stop, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = 1} }, { MP_QSTR_parity, MP_ARG_KW_ONLY | MP_ARG_OBJ, {.u_obj = mp_const_none} }, }; -#define PYB_UART_INIT_NUM_ARGS ARRAY_SIZE(pyb_uart_init_args) +#define PYB_UART_INIT_NUM_ARGS MP_ARRAY_SIZE(pyb_uart_init_args) STATIC mp_obj_t pyb_uart_init_helper(pyb_uart_obj_t *self, uint n_args, const mp_obj_t *args, mp_map_t *kw_args) { // parse args @@ -419,7 +419,7 @@ STATIC const mp_arg_t pyb_uart_send_args[] = { { MP_QSTR_send, MP_ARG_REQUIRED | MP_ARG_OBJ, {.u_obj = MP_OBJ_NULL} }, { MP_QSTR_timeout, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = 5000} }, }; -#define PYB_UART_SEND_NUM_ARGS ARRAY_SIZE(pyb_uart_send_args) +#define PYB_UART_SEND_NUM_ARGS MP_ARRAY_SIZE(pyb_uart_send_args) STATIC mp_obj_t pyb_uart_send(uint n_args, const mp_obj_t *args, mp_map_t *kw_args) { // TODO assumes transmission size is 8-bits wide @@ -465,7 +465,7 @@ STATIC const mp_arg_t pyb_uart_recv_args[] = { { MP_QSTR_recv, MP_ARG_REQUIRED | MP_ARG_OBJ, {.u_obj = MP_OBJ_NULL} }, { MP_QSTR_timeout, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = 5000} }, }; -#define PYB_UART_RECV_NUM_ARGS ARRAY_SIZE(pyb_uart_recv_args) +#define PYB_UART_RECV_NUM_ARGS MP_ARRAY_SIZE(pyb_uart_recv_args) STATIC mp_obj_t pyb_uart_recv(uint n_args, const mp_obj_t *args, mp_map_t *kw_args) { // TODO assumes transmission size is 8-bits wide |