diff options
author | 2013-02-11 12:48:49 +0900 | |
---|---|---|
committer | 2013-02-11 12:48:49 +0900 | |
commit | 8c80deb775ac151001dc1592a2e94e8677b49964 (patch) | |
tree | aa62c5cbef8419d9cdded26440cfdb42f7d806fd /common/print.c | |
parent | 4701b08b71b187cb3d015bec7e05d30e35c344ac (diff) | |
parent | 39d093339393e1758eede06f736b1f99a68ac74c (diff) | |
download | qmk_firmware-8c80deb775ac151001dc1592a2e94e8677b49964.tar.gz |
Merge branch 'keymap2'
Conflicts:
common/keyboard.c
Diffstat (limited to 'common/print.c')
-rw-r--r-- | common/print.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/common/print.c b/common/print.c index 84400a1df..08d211f20 100644 --- a/common/print.c +++ b/common/print.c @@ -113,7 +113,6 @@ void print_decs(int16_t data) } -static inline void print_hex4(uint8_t data) { sendchar(data + ((data < 10) ? '0' : 'A' - 10)); @@ -137,6 +136,12 @@ void print_hex32(uint32_t data) print_hex16(data); } +void print_bin4(uint8_t data) +{ + for (int i = 4; i >= 0; i--) { + sendchar((data & (1<<i)) ? '1' : '0'); + } +} void print_bin8(uint8_t data) { |