atmodem: Add a few more debug statements for SMS support

This commit is contained in:
Marcel Holtmann 2010-08-20 21:53:21 +02:00
parent 6df7c1a1c6
commit 773b3a8088
1 changed files with 12 additions and 0 deletions

View File

@ -365,6 +365,8 @@ static inline void at_ack_delivery(struct ofono_sms *sms)
struct sms_data *data = ofono_sms_get_data(sms);
char buf[256];
DBG("");
/* We must acknowledge the PDU using CNMA */
if (data->cnma_ack_pdu)
snprintf(buf, sizeof(buf), "AT+CNMA=1,%d\r%s",
@ -440,6 +442,8 @@ static void at_cmgr_notify(GAtResult *result, gpointer user_data)
long pdu_len;
int tpdu_len;
DBG("");
g_at_result_iter_init(&iter, result);
if (!g_at_result_iter_next(&iter, "+CMGR:"))
@ -588,6 +592,8 @@ static void at_cmgl_done(struct ofono_sms *sms)
{
struct sms_data *data = ofono_sms_get_data(sms);
DBG("");
if (data->incoming == AT_UTIL_SMS_STORE_MT &&
data->store == AT_UTIL_SMS_STORE_ME) {
at_cmgl_set_cpms(sms, AT_UTIL_SMS_STORE_SM);
@ -621,6 +627,8 @@ static void at_cmgl_notify(GAtResult *result, gpointer user_data)
int status;
char buf[16];
DBG("");
g_at_result_iter_init(&iter, result);
while (g_at_result_iter_next(&iter, "+CMGL:")) {
@ -788,6 +796,8 @@ static gboolean build_cnmi_string(char *buf, int *cnmi_opts,
const char *mode;
int len = sprintf(buf, "AT+CNMI=");
DBG("");
if (data->vendor == OFONO_VENDOR_QUALCOMM_MSM ||
data->vendor == OFONO_VENDOR_HUAWEI ||
data->vendor == OFONO_VENDOR_NOVATEL)
@ -842,6 +852,8 @@ static void construct_ack_pdu(struct sms_data *d)
int len;
int tpdu_len;
DBG("");
memset(&ackpdu, 0, sizeof(ackpdu));
ackpdu.type = SMS_TYPE_DELIVER_REPORT_ACK;