Closed Olzeke51 closed 1 year ago
I'm not sure this is the correct fix but I changed line 116 of circuitpython/ports/mimxrt10xx/common-hal/busio/UART.c
from: self->character_bits = (uint8_t)mp_arg_validate_int_range(self->character_bits, 7, 8, MP_QSTR_bits); to: self->character_bits = (uint8_t)mp_arg_validate_int_range(bits, 7, 8, MP_QSTR_bits);
and the error no longer occurs.
CircuitPython version
Code/REPL
Behavior
Description
Teensy 4.1 board Version 7.3.3 works okay without the need for 'bits' never had any reference to it.; never specified it. # this is for serial1 default pin assignments on 0 and 1
Additional information
No response