STM32F103

Fork of mbed-rpc by Mbed

Revision:
11:74cf20da6924
Parent:
1:6919289a5946
--- a/Arguments.cpp	Thu Jun 18 07:30:13 2015 +0100
+++ b/Arguments.cpp	Wed Aug 12 15:51:47 2015 +0000
@@ -132,6 +132,11 @@
     reply += sprintf(reply, "%d", v);
 }
 
+template<> void Reply::putData<unsigned short>(unsigned short uint16) {
+    separator();
+    reply += sprintf(reply, "%u", uint16);
+}
+
 template<> void Reply::putData<float>(float f) {
     separator();
     reply += sprintf(reply, "%.17g", f);