Skip to content

Commit

Permalink
onekey: Fix console output on AVR (#19930)
Browse files Browse the repository at this point in the history
  • Loading branch information
sigprof authored Apr 3, 2023
1 parent 1d1c407 commit 2d7240f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion keyboards/handwired/onekey/keymaps/adc/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion keyboards/handwired/onekey/keymaps/hardware_id/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
char buffer[100];
sprintf(buffer, "ID:%lu:%lu:%lu:%lu\n", id.data[0], id.data[1], id.data[2], id.data[3]);
#ifdef CONSOLE_ENABLE
printf(buffer);
uprintf("%s", buffer);
#else
send_string(buffer);
#endif
Expand Down

0 comments on commit 2d7240f

Please sign in to comment.