aboutsummaryrefslogtreecommitdiffstats
path: root/common/mbed
diff options
context:
space:
mode:
authorJun Wako <wakojun@gmail.com>2015-01-04 17:03:47 +0900
committerJun Wako <wakojun@gmail.com>2015-01-04 17:21:43 +0900
commitd0fefb76f8a1430c749e67bc72b4dba00c7143c9 (patch)
tree2cf2fe560e83fef19c9a99adcc5d2b2300145bfc /common/mbed
parentc6e533ce83d6ae4393e6cdf1f6d39ffefc790115 (diff)
downloadfirmware-d0fefb76f8a1430c749e67bc72b4dba00c7143c9.tar.gz
firmware-d0fefb76f8a1430c749e67bc72b4dba00c7143c9.tar.bz2
firmware-d0fefb76f8a1430c749e67bc72b4dba00c7143c9.zip
infinity: Add initial files for keyboard support
Diffstat (limited to 'common/mbed')
-rw-r--r--common/mbed/xprintf.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/mbed/xprintf.cpp b/common/mbed/xprintf.cpp
index 4342b79f8..3647ece75 100644
--- a/common/mbed/xprintf.cpp
+++ b/common/mbed/xprintf.cpp
@@ -6,6 +6,10 @@
#define STRING_STACK_LIMIT 120
+//TODO
+int xprintf(const char* format, ...) { return 0; }
+
+#if 0
/* mbed Serial */
Serial ser(UART_TX, UART_RX);
@@ -44,3 +48,4 @@ int xprintf(const char* format, ...)
return r;
*/
}
+#endif