A modelling and serializer library for Microsoft Azure IoTHub client applications

Dependents:   sht15_remote_monitoring f767zi_mqtt remote_monitoring simplesample_amqp ... more

This library implements a serializer library to be used in projects involving Microsoft Azure IoT Hub connectivity. The code is replicated from https://github.com/Azure/azure-iot-sdks

Revision:
29:f6b8978f8581
Parent:
22:422d94bd3c18
Child:
30:5fabc80edeb1
--- a/agenttypesystem.c	Fri Dec 15 14:10:22 2017 -0800
+++ b/agenttypesystem.c	Tue Jan 30 08:22:58 2018 -0800
@@ -3022,7 +3022,7 @@
     }
     else
     {
-        (*dst) = temp;
+        (*dst) = (int)temp;
         result = 1;
     }
     return result;
@@ -3074,7 +3074,7 @@
     else
     {
         result = 1;
-        (*dst) = temp;
+        (*dst) = (unsigned int)temp;
     }
     return result;
 }