Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: modem_ref_helper_for_v5_3_217
Diff: src/modem_ref.cpp
- Revision:
- 37:f5424d109c6d
- Parent:
- 35:ac940cf8ebe6
- Child:
- 39:bc4fccf2d84b
diff -r ac940cf8ebe6 -r f5424d109c6d src/modem_ref.cpp
--- a/src/modem_ref.cpp Thu Sep 06 10:41:51 2018 +0000
+++ b/src/modem_ref.cpp Thu Oct 04 09:36:44 2018 +0000
@@ -4,7 +4,7 @@
#include "modem_ref.h"
#include "kal_crypto.h"
-#if 0
+#if 1
#define REF_PRINT(...) PRINT(__VA_ARGS__)
#define URC_PRINT(...) PRINT(__VA_ARGS__)
#else
@@ -244,6 +244,10 @@
ASSERT(g_modem.user[id].istatus != NULL,"ASSERT: NULL ISTAT Buffer for RD on ID %d\n",id);
memcpy(g_modem.user[id].istatus,r.data,r.meta.itf.length);
break;
+ case ALP_OPCODE_RSP_EOPISTATUS:
+ REF_PRINT("RSP_EOPISTATUS[%02X]\n", r.meta.istatus.itf);
+ err = r.meta.istatus.err ? ALP_ERR_ITF_START + r.meta.istatus.err : ALP_ERR_NONE;
+ break;
default:
ASSERT(false,"ASSERT: Unsupported ALP Response: %d\n",r.type);
break;