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:
36:7d12a5386197
Parent:
17:fa1bba4c6053
--- a/agenttypesystem.h	Thu Jul 12 18:10:30 2018 -0700
+++ b/agenttypesystem.h	Tue Sep 11 11:14:37 2018 -0700
@@ -49,7 +49,7 @@
 
 #define EDM_BOOLEANS_VALUES \
     EDM_TRUE, \
-    EDM_FALSE 
+    EDM_FALSE
 
 DEFINE_ENUM(EDM_BOOLEANS, EDM_BOOLEANS_VALUES);
 
@@ -66,7 +66,7 @@
 #error update this file to contain the latest C standard.
 #endif
 #else
-#ifdef __cplusplus 
+#ifdef __cplusplus
 #define ISPOSITIVEINFINITY(x) (std::isinf((x)) && (signbit((x))==0))
 #else
 #error unknown (or C89) compiler, must provide a definition for ISPOSITIVEINFINITY
@@ -86,7 +86,7 @@
 #error update this file to contain the latest C standard.
 #endif
 #else
-#ifdef __cplusplus 
+#ifdef __cplusplus
 #define ISNEGATIVEINFINITY(x) (std::isinf((x)) && (signbit((x)) != 0))
 #else
 #error unknown (or C89) compiler, must provide a definition for ISNEGATIVEINFINITY