From 7b33483852d5227edc2840ba25c59abbb1b90361 Mon Sep 17 00:00:00 2001 From: Volodymyr Shymanskyy Date: Wed, 27 Sep 2017 23:47:27 +0300 Subject: [PATCH] Update build test --- tools/test_build/test_build.ino | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/test_build/test_build.ino b/tools/test_build/test_build.ino index 8ecabf8..c95d489 100644 --- a/tools/test_build/test_build.ino +++ b/tools/test_build/test_build.ino @@ -9,6 +9,10 @@ TinyGsm modem(Serial); TinyGsmClient client(modem); +#if defined(TINY_GSM_MODEM_HAS_SSL) + TinyGsmClientSecure client(modem); +#endif + char server[] = "somewhere"; char resource[] = "something"; @@ -23,7 +27,7 @@ void loop() { // Test the start/restart functions modem.restart(); modem.begin(); - modem.autoBaud(); + modem.testAT(); modem.factoryDefault(); // Test the SIM card functions