Program to update the D7A modem's firmware.

Dependencies:   modem_ref_helper DebouncedInterrupt

Revision:
31:b9117984247d
Parent:
29:aa16a927f0eb
--- a/modem_callbacks.cpp	Mon Jan 28 09:28:11 2019 +0000
+++ b/modem_callbacks.cpp	Fri Feb 22 16:35:52 2019 +0000
@@ -6,27 +6,27 @@
 // ============================================================{{{
 void my_read(u8 fid, u32 offset, u32 length, int id)
 {
-    modem_respond(0, ALP_ERR_FILE_NOT_FOUND, id);
+    modem_respond(ALP_ERR_FILE_NOT_FOUND, id);
 }
 
 void my_write(u8 fid, void *data, u32 offset, u32 length, int id)
 {
-    modem_respond(0, ALP_ERR_FILE_NOT_FOUND, id);
+    modem_respond(ALP_ERR_FILE_NOT_FOUND, id);
 }
 
 void my_read_fprop(u8 fid, int id)
 {
-    modem_respond(0, ALP_ERR_FILE_NOT_FOUND, id);
+    modem_respond(ALP_ERR_FILE_NOT_FOUND, id);
 }
 
 void my_flush(u8 fid, int id)
 {
-    modem_respond(0, ALP_ERR_FILE_NOT_FOUND, id);
+    modem_respond(ALP_ERR_FILE_NOT_FOUND, id);
 }
 
 void my_delete(u8 fid, int id)
 {
-    modem_respond(0, ALP_ERR_FILE_NOT_FOUND, id);
+    modem_respond(ALP_ERR_FILE_NOT_FOUND, id);
 }
 
 void my_udata(void *data, u32 length)