summaryrefslogtreecommitdiff
path: root/print.c
diff options
context:
space:
mode:
Diffstat (limited to 'print.c')
-rw-r--r--print.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/print.c b/print.c
index 2f0617c64f..8e46decac4 100644
--- a/print.c
+++ b/print.c
@@ -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');
}
}