X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=common%2Fdebug.h;h=e63d46f0e9e0dbd398da756b45a7d0218f939f8c;hb=a207e848b3b308406263576c1e0d066067888416;hp=648f0e096c71e1a4c987361be59c47d49ec1c7c9;hpb=16a583d7fd057c3ebcb859db44f097fd8073ec49;p=max%2Ftmk_keyboard.git diff --git a/common/debug.h b/common/debug.h index 648f0e09..e63d46f0 100644 --- a/common/debug.h +++ b/common/debug.h @@ -36,6 +36,7 @@ along with this program. If not, see . #define debug_dec(data) do { if (debug_enable) print_dec(data); } while (0) #define debug_decs(data) do { if (debug_enable) print_decs(data); } while (0) +#define debug_hex4(data) do { if (debug_enable) print_hex4(data); } while (0) #define debug_hex8(data) do { if (debug_enable) print_hex8(data); } while (0) #define debug_hex16(data) do { if (debug_enable) print_hex16(data); } while (0) #define debug_hex32(data) do { if (debug_enable) print_hex32(data); } while (0)