diff options
Diffstat (limited to 'keyboards/converter/adb_usb/matrix.c')
| -rw-r--r-- | keyboards/converter/adb_usb/matrix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/converter/adb_usb/matrix.c b/keyboards/converter/adb_usb/matrix.c index 4a70eb502..9e5399de5 100644 --- a/keyboards/converter/adb_usb/matrix.c +++ b/keyboards/converter/adb_usb/matrix.c | |||
| @@ -129,8 +129,8 @@ void adb_mouse_task(void) | |||
| 129 | if (debug_mouse) { | 129 | if (debug_mouse) { |
| 130 | print("adb_host_mouse_recv: "); print_bin16(codes); print("\n"); | 130 | print("adb_host_mouse_recv: "); print_bin16(codes); print("\n"); |
| 131 | print("adb_mouse raw: ["); | 131 | print("adb_mouse raw: ["); |
| 132 | phex(mouseacc); print(" "); | 132 | print_hex8(mouseacc); print(" "); |
| 133 | phex(mouse_report.buttons); print("|"); | 133 | print_hex8(mouse_report.buttons); print("|"); |
| 134 | print_decs(mouse_report.x); print(" "); | 134 | print_decs(mouse_report.x); print(" "); |
| 135 | print_decs(mouse_report.y); print("]\n"); | 135 | print_decs(mouse_report.y); print("]\n"); |
| 136 | } | 136 | } |
| @@ -173,7 +173,7 @@ uint8_t matrix_scan(void) | |||
| 173 | key1 = codes&0xFF; | 173 | key1 = codes&0xFF; |
| 174 | 174 | ||
| 175 | if (debug_matrix && codes) { | 175 | if (debug_matrix && codes) { |
| 176 | print("adb_host_kbd_recv: "); phex16(codes); print("\n"); | 176 | print("adb_host_kbd_recv: "); print_hex16(codes); print("\n"); |
| 177 | } | 177 | } |
| 178 | 178 | ||
| 179 | if (codes == 0) { // no keys | 179 | if (codes == 0) { // no keys |
