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:
35:ede97b73d1bb
Parent:
30:5fabc80edeb1
Child:
36:7d12a5386197
--- a/agenttypesystem.c	Tue Jun 26 19:15:47 2018 -0700
+++ b/agenttypesystem.c	Thu Jul 12 18:10:30 2018 -0700
@@ -3062,7 +3062,7 @@
 }
 
 /*the following function does the same as  sscanf(src, "%u", &dst)*/
-static int sscanfu(const char* src, unsigned int* dst)
+static int sscanfu(const char* src, uint32_t* dst)
 {
     int result;
     char* next;
@@ -3074,7 +3074,7 @@
     else
     {
         result = 1;
-        (*dst) = (unsigned int)temp;
+        (*dst) = (uint32_t)temp;
     }
     return result;
 }