summaryrefslogtreecommitdiff
path: root/keyboards/converter/m0110_usb
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2024-01-26 16:32:06 +0000
committerGitHub <noreply@github.com>2024-01-26 16:32:06 +0000
commita632593769758244f10f577adb69b30e06f64985 (patch)
tree4e6264ac839a88ff927a75dc152aab0787282c56 /keyboards/converter/m0110_usb
parent728aa576b0cd65c6fb7cf77132fdcd06fcedb643 (diff)
Migrate and remove deprecated debug utils (#22961)
Diffstat (limited to 'keyboards/converter/m0110_usb')
-rw-r--r--keyboards/converter/m0110_usb/m0110.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/keyboards/converter/m0110_usb/m0110.c b/keyboards/converter/m0110_usb/m0110.c
index f3097fb465..308eb936e3 100644
--- a/keyboards/converter/m0110_usb/m0110.c
+++ b/keyboards/converter/m0110_usb/m0110.c
@@ -312,8 +312,7 @@ static inline uint8_t instant(void) {
m0110_send(M0110_INSTANT);
uint8_t data = m0110_recv();
if (data != M0110_NULL) {
- debug_hex(data);
- debug(" ");
+ dprintf("%02X ", data);
}
return data;
}