diff options
author | tmk <nobody@nowhere> | 2010-08-23 15:46:24 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2010-08-23 23:11:14 +0900 |
commit | 3b31337cd8a5fe8b02924f2056ad2648a028c563 (patch) | |
tree | 060cc2413f74f89c957655d3fe954ac58c3ae42d /print.c | |
parent | c17f07819ffeb119a09d4acdfa5097b272d2e2f9 (diff) |
perform nomal keyboard behavior. It works now!!!
Diffstat (limited to 'print.c')
-rw-r--r-- | print.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -60,7 +60,14 @@ void phex16(unsigned int i) void pbin(unsigned char c) { - for (int i=7; i>=0; i--) { + for (int i = 7; i >= 0; i--) { + usb_debug_putchar((c & (1<<i)) ? '1' : '0'); + } +} + +void pbin_reverse(unsigned char c) +{ + for (int i = 0; i < 8; i++) { usb_debug_putchar((c & (1<<i)) ? '1' : '0'); } } |