TX1 node

Revision:
18:e6a835c40639
Parent:
11:325e3da833e1
Child:
19:e65ed29fd4d1
--- a/Arguments.cpp	Mon Jun 13 13:44:45 2016 +0000
+++ b/Arguments.cpp	Mon Jun 13 22:40:45 2016 +0000
@@ -133,6 +133,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);