]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - common/print.c
Replaced tabs with spaces to match TMK convention.
[qmk_firmware.git] / common / print.c
index 4e36d3935b232803517c2bc34136217de25f8519..ca94e1e5d6a7ffb9649648ef367b2ab2c5fa21c3 100644 (file)
@@ -1,3 +1,4 @@
+/* Copyright 2012,2013 Jun Wako <wakojun@gmail.com> */
 /* Very basic print functions, intended to be used with usb_debug_only.c
  * http://www.pjrc.com/teensy/
  * Copyright (c) 2008 PJRC.COM, LLC
  * THE SOFTWARE.
  */
 
-#include <avr/io.h>
-#include <avr/pgmspace.h>
+#include <stdint.h>
 #include "print.h"
-#include "sendchar.h"
 
 
-bool print_enable = false;
+#ifndef NO_PRINT
 
-void print_S(const char *s)
-{
-       if (!print_enable) return;
-       char c;
+#if defined(__AVR__)
 
-       while (1) {
-               c = *s++;
-               if (!c) break;
-               if (c == '\n') sendchar('\r');
-               sendchar(c);
-       }
-}
+#define sendchar(c)    xputc(c)
 
-void print_P(const char *s)
-{
-       if (!print_enable) return;
-       char c;
-
-       while (1) {
-               c = pgm_read_byte(s++);
-               if (!c) break;
-               if (c == '\n') sendchar('\r');
-               sendchar(c);
-       }
-}
 
-void phex1(unsigned char c)
+void print_set_sendchar(int8_t (*sendchar_func)(uint8_t))
 {
-       if (!print_enable) return;
-       sendchar(c + ((c < 10) ? '0' : 'A' - 10));
+    xdev_out(sendchar_func);
 }
 
-void phex(unsigned char c)
-{
-       if (!print_enable) return;
-       phex1(c >> 4);
-       phex1(c & 15);
-}
+#elif defined(__arm__)
 
-void phex16(unsigned int i)
-{
-       if (!print_enable) return;
-       phex(i >> 8);
-       phex(i);
-}
+// TODO
+//void print_set_sendchar(int8_t (*sendchar_func)(uint8_t)) { }
 
-void pdec(uint8_t i)
-{
-    if (!print_enable) return;
-    if (i/100) sendchar('0' + (i/100));
-    if (i/100 || i%100/10) sendchar('0' + (i%100/10));
-    sendchar('0' + (i%10));
-}
-
-
-void pbin(unsigned char c)
-{
-    if (!print_enable) return;
-    for (int i = 7; i >= 0; i--) {
-        sendchar((c & (1<<i)) ? '1' : '0');
-    }
-}
+#endif
 
-void pbin_reverse(unsigned char c)
-{
-    if (!print_enable) return;
-    for (int i = 0; i < 8; i++) {
-        sendchar((c & (1<<i)) ? '1' : '0');
-    }
-}
+#endif