summaryrefslogtreecommitdiffstats
path: root/tmk_core/protocol/vusb/usbdrv/oddebug.c
diff options
context:
space:
mode:
authorWilliam Chang <william@factual.com>2019-11-20 22:17:07 -0800
committerWilliam Chang <william@factual.com>2019-11-20 22:17:07 -0800
commite7f4d56592b3975c38af329e77b4efd9108495e8 (patch)
tree0a416bccbf70bfdbdb9ffcdb3bf136b47378c014 /tmk_core/protocol/vusb/usbdrv/oddebug.c
parent71493b2f9bbd5f3d18373c518fa14ccafcbf48fc (diff)
parent8416a94ad27b3ff058576f09f35f0704a8b39ff3 (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'tmk_core/protocol/vusb/usbdrv/oddebug.c')
-rw-r--r--tmk_core/protocol/vusb/usbdrv/oddebug.c22
1 files changed, 9 insertions, 13 deletions
diff --git a/tmk_core/protocol/vusb/usbdrv/oddebug.c b/tmk_core/protocol/vusb/usbdrv/oddebug.c
index 945457c1f4..bcd28ff014 100644
--- a/tmk_core/protocol/vusb/usbdrv/oddebug.c
+++ b/tmk_core/protocol/vusb/usbdrv/oddebug.c
@@ -12,34 +12,30 @@
#if DEBUG_LEVEL > 0
-#warning "Never compile production devices with debugging enabled"
+# warning "Never compile production devices with debugging enabled"
-static void uartPutc(char c)
-{
- while(!(ODDBG_USR & (1 << ODDBG_UDRE))); /* wait for data register empty */
+static void uartPutc(char c) {
+ while (!(ODDBG_USR & (1 << ODDBG_UDRE)))
+ ; /* wait for data register empty */
ODDBG_UDR = c;
}
-static uchar hexAscii(uchar h)
-{
+static uchar hexAscii(uchar h) {
h &= 0xf;
- if(h >= 10)
- h += 'a' - (uchar)10 - '0';
+ if (h >= 10) h += 'a' - (uchar)10 - '0';
h += '0';
return h;
}
-static void printHex(uchar c)
-{
+static void printHex(uchar c) {
uartPutc(hexAscii(c >> 4));
uartPutc(hexAscii(c));
}
-void odDebug(uchar prefix, uchar *data, uchar len)
-{
+void odDebug(uchar prefix, uchar *data, uchar len) {
printHex(prefix);
uartPutc(':');
- while(len--){
+ while (len--) {
uartPutc(' ');
printHex(*data++);
}