this is using the mbed os version 5-13-1

Dependencies:   mbed-http

Committer:
ocomeni
Date:
Sun Mar 10 09:46:06 2019 +0000
Revision:
74:f26e846adfe9
ATCmdManager now instaltiates ok

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ocomeni 74:f26e846adfe9 1 #ifndef __WIFI_DEMO_H__
ocomeni 74:f26e846adfe9 2 #define __WIFI_DEMO_H__
ocomeni 74:f26e846adfe9 3
ocomeni 74:f26e846adfe9 4 #ifndef __MBED_H__
ocomeni 74:f26e846adfe9 5 #define __MBED_H__
ocomeni 74:f26e846adfe9 6 #include "mbed.h"
ocomeni 74:f26e846adfe9 7 #endif
ocomeni 74:f26e846adfe9 8
ocomeni 74:f26e846adfe9 9 #include "mbed_trace.h"
ocomeni 74:f26e846adfe9 10 #include "https_request.h"
ocomeni 74:f26e846adfe9 11 #include "http_request.h"
ocomeni 74:f26e846adfe9 12 /* List of trusted root CA certificates
ocomeni 74:f26e846adfe9 13 * currently two: GlobalSign, the CA for os.mbed.com and Let's Encrypt, the CA for httpbin.org
ocomeni 74:f26e846adfe9 14 *
ocomeni 74:f26e846adfe9 15 * To add more root certificates, just concatenate them.
ocomeni 74:f26e846adfe9 16 */
ocomeni 74:f26e846adfe9 17 #include "https_certificates.h"
ocomeni 74:f26e846adfe9 18 int wifi_demo_func(NetworkInterface* network);
ocomeni 74:f26e846adfe9 19
ocomeni 74:f26e846adfe9 20 #endif // __WIFI_DEMO_H__