diff options
| author | tmk <nobody@nowhere> | 2013-02-11 12:48:49 +0900 | 
|---|---|---|
| committer | tmk <nobody@nowhere> | 2013-02-11 12:48:49 +0900 | 
| commit | 8c80deb775ac151001dc1592a2e94e8677b49964 (patch) | |
| tree | aa62c5cbef8419d9cdded26440cfdb42f7d806fd /common/debug.h | |
| parent | 4701b08b71b187cb3d015bec7e05d30e35c344ac (diff) | |
| parent | 39d093339393e1758eede06f736b1f99a68ac74c (diff) | |
| download | firmware-8c80deb775ac151001dc1592a2e94e8677b49964.tar.gz firmware-8c80deb775ac151001dc1592a2e94e8677b49964.tar.bz2 firmware-8c80deb775ac151001dc1592a2e94e8677b49964.zip  | |
Merge branch 'keymap2'
Conflicts:
	common/keyboard.c
Diffstat (limited to 'common/debug.h')
| -rw-r--r-- | common/debug.h | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/common/debug.h b/common/debug.h index 648f0e096..e63d46f0e 100644 --- a/common/debug.h +++ b/common/debug.h @@ -36,6 +36,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  #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)  | 
