Lines Matching refs:u_int

93         { MP_QSTR_baudrate, MP_ARG_INT, {.u_int = 115200} },  in machine_uart_init_helper()
94 { MP_QSTR_bits, MP_ARG_INT, {.u_int = e_DATA_WIDTH_8BIT} }, in machine_uart_init_helper()
95 { MP_QSTR_parity, MP_ARG_OBJ, {.u_int = NO_PARITY} }, in machine_uart_init_helper()
96 { MP_QSTR_stop, MP_ARG_INT, {.u_int = e_STOP_BITS_1} }, in machine_uart_init_helper()
97 { MP_QSTR_tx, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = -1} }, in machine_uart_init_helper()
98 { MP_QSTR_rx, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = -1} }, in machine_uart_init_helper()
99 { MP_QSTR_rts, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = 0} }, in machine_uart_init_helper()
100 { MP_QSTR_cts, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = 0} }, in machine_uart_init_helper()
101 { MP_QSTR_txbuf, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = -1} }, in machine_uart_init_helper()
102 { MP_QSTR_rxbuf, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = -1} }, in machine_uart_init_helper()
103 { MP_QSTR_timeout, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = 0} }, in machine_uart_init_helper()
104 { MP_QSTR_timeout_char, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = 0} }, in machine_uart_init_helper()
105 { MP_QSTR_invert, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = 0} }, in machine_uart_init_helper()
116 int32_t baudrate = args[ARG_baudrate].u_int; in machine_uart_init_helper()
124 uint32_t rts = args[ARG_rts].u_int; in machine_uart_init_helper()
125 uint32_t cts = args[ARG_cts].u_int; in machine_uart_init_helper()
137 uint8_t data_width = args[ARG_bits].u_int; in machine_uart_init_helper()
178 uint8_t stop_bits = args[ARG_stop].u_int; in machine_uart_init_helper()
193 self->timeout = args[ARG_timeout].u_int; in machine_uart_init_helper()
197 self->timeout_char = args[ARG_timeout_char].u_int; in machine_uart_init_helper()