mbed Connector Interface simplification API on top of mbed-client

Fork of mbedConnectorInterfaceV3 by Doug Anson

NOTE:

This repo has been replaced with https://github.com/ARMmbed/mbedConnectorInterface. No further updates will occur with this repo. Please use the github repo instead. Thanks!

Revision:
101:305cc6527e20
Parent:
100:ff043f91a348
Child:
105:aeaaee8fbb1d
--- a/source/ConnectorEndpoint.cpp	Thu Apr 20 20:49:24 2017 +0000
+++ b/source/ConnectorEndpoint.cpp	Thu Apr 20 20:53:41 2017 +0000
@@ -445,13 +445,13 @@
 // mbed-cloud-client: update_authorized
 void Endpoint::update_authorize(int32_t request) {
 	// simple debug for now...
-	printf("Connector::Endpoint(Cloud) Update Authorize: request: %d\n",request);
+	printf("Connector::Endpoint(Cloud) Update Authorize: request: %d\n",(int)request);
 }
 	
 // mbed-cloud-client: update_progress
 void Endpoint::update_progress(uint32_t progress, uint32_t total) {
 	// simple debug for now...
-	printf("Connector::Endpoint(Cloud) Update Progress: (%ul/%ul)\n",progress,total);
+	printf("Connector::Endpoint(Cloud) Update Progress: (%d/%d)\n",(int)progress,(int)total);
 }
 #endif