From 601892d106bb7646c67a47ae1b10cacdead9c394 Mon Sep 17 00:00:00 2001 From: Volodymyr Shymanskyy Date: Mon, 11 Sep 2017 19:56:56 +0300 Subject: [PATCH] Add debug --- examples/AllFunctions/AllFunctions.ino | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/AllFunctions/AllFunctions.ino b/examples/AllFunctions/AllFunctions.ino index ca7f477..0d027c8 100644 --- a/examples/AllFunctions/AllFunctions.ino +++ b/examples/AllFunctions/AllFunctions.ino @@ -63,6 +63,7 @@ void setup() { } void loop() { + // Restart takes quite some time // To skip it, call init() instead of restart() DBG("Initializing modem..."); @@ -133,6 +134,8 @@ void loop() { #endif #ifdef CALL_TARGET + DBG("Calling:", CALL_TARGET); + // This is NOT supported on M590 res = modem.callNumber(CALL_TARGET); DBG("Call:", res ? "OK" : "fail");