Got modem to work with MedSentry website. Includes minor change to a library file.

Dependencies:   CyaSSL

Dependents:   MTS-Socket

Fork of HTTPClient-SSL by MultiTech

Revision:
52:d49ba1ed624c
Parent:
50:6b0d6121914f
Child:
53:7eb484761f66
--- a/HTTPClient.cpp	Fri Sep 11 21:51:39 2015 +0000
+++ b/HTTPClient.cpp	Tue Jan 26 20:09:15 2016 +0000
@@ -22,7 +22,8 @@
 #define MAX_URL_PATH_LENGTH     128
 
 //Debug is disabled by default
-#if 0
+#define HTTP_DEBUG
+#ifdef HTTP_DEBUG
 //Enable debug
 #include <cstdio>
 #define DBG(x, ...) std::printf("[HTTPClient : DBG]"x"\r\n", ##__VA_ARGS__);