You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
line 164 in source/hic_hal/freescale/kl27z/uart.c:
line 149 in source/hic_hal/freescale/kl26z/uart.c:
line 140 in source/hic_hal/freescale/kl26z/uart.c:
line 134 in source/hic_hal/freescale/k20dx/uart.c:
The comparison if (data_bits == 2) { is made, but data_bits is always <= 1; the comparison will always resolve to false.
The text was updated successfully, but these errors were encountered:
In multiple uart.c files:
line 164 in
source/hic_hal/freescale/kl27z/uart.c
:line 149 in
source/hic_hal/freescale/kl26z/uart.c
:line 140 in
source/hic_hal/freescale/kl26z/uart.c
:line 134 in
source/hic_hal/freescale/k20dx/uart.c
:The comparison
if (data_bits == 2) {
is made, butdata_bits
is always <= 1; the comparison will always resolve to false.The text was updated successfully, but these errors were encountered: