Ping pong app demo.

Dependencies:   modem_ref_helper DebouncedInterrupt

Revision:
14:8b8a61233e8d
Parent:
13:343ca4102739
--- a/modem_callbacks.cpp	Tue Sep 21 08:49:29 2021 +0000
+++ b/modem_callbacks.cpp	Tue Sep 21 16:36:38 2021 +0000
@@ -29,16 +29,6 @@
     modem_ref_respond(action, ALP_ERR_FILE_NOT_FOUND, id);
 }
 
-void my_lqual(u8 ifid, int per)
-{
-    PRINT("Interface File [%3d] LQUAL : %d%% PER\r\n", ifid, per);
-}
-
-void my_ldown(u8 ifid)
-{
-    PRINT("Interface File [%3d] LDOWN\r\n", ifid);
-}
-
 void my_reset(void)
 {
     PRINT("Restarting application...\r\n");
@@ -52,21 +42,4 @@
     
     // Modem re-booted, restart APP
     my_reset();
-}
-
-void my_busy(u8 busy)
-{
-    if (busy)
-    {
-        PRINT("Modem Busy\r\n");
-        
-        /* Stop report, do not use modem */
-        /* Wait for modem reboot or modem not busy */
-    }
-    else
-    {
-        PRINT("Modem not Busy\r\n");
-        
-        /* Resume reports */
-    }
 }
\ No newline at end of file