onekey: Fix console output on AVR (#19930)

This commit is contained in:
Sergey Vlasov
2023-04-03 07:28:12 +03:00
committed by GitHub
parent 1d1c407e4e
commit 2d7240f730
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
char buffer[50];
sprintf(buffer, "ADC:%u\n", val);
#ifdef CONSOLE_ENABLE
printf(buffer);
uprintf("%s", buffer);
#else
send_string(buffer);
#endif