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
The uart_write() function in uart.c had a wrong argument (c instead of data).
During compilation the error was
Compiling: platforms/chibios/drivers/uart.c In file included from ./lib/chibios/os/hal/include/hal.h:136,
from platforms/chibios/drivers/uart.h:21,
from platforms/chibios/drivers/uart.c:17:
platforms/chibios/drivers/uart.c: In function 'uart_write':
platforms/chibios/drivers/uart.c:46:55: error: 'c' undeclared (first use in this function); did you mean 'ch'?
46 | void uart_write(uint8_t data) { sdPut(&SERIAL_DRIVER, c); }
|
Manually changing the argument solved the issue. The bug originated from commit 04b51e381e2ff3f4c7aba662e1c817ce5daa931d.
System Information
QMK Firmware version: 0.15.11
The text was updated successfully, but these errors were encountered:
Describe the Bug
The
uart_write()
function inuart.c
had a wrong argument (c
instead ofdata
).During compilation the error was
Manually changing the argument solved the issue. The bug originated from commit
04b51e381e2ff3f4c7aba662e1c817ce5daa931d
.System Information
The text was updated successfully, but these errors were encountered: