summaryrefslogtreecommitdiff
path: root/src/gsmd
diff options
context:
space:
mode:
authorerin_yueh <erin_yueh@99fdad57-331a-0410-800a-d7fa5415bdb3>2008-01-26 18:38:56 +0000
committererin_yueh <erin_yueh@99fdad57-331a-0410-800a-d7fa5415bdb3>2008-01-26 18:38:56 +0000
commitc0bd00541a3edba795361b504c896a388376d898 (patch)
tree17fe8379030b0c60953964f68e40863475113a60 /src/gsmd
parentb550563332e8627110f4c4dd8cf6ab9a8e9b0e04 (diff)
gsmd: disable COLP to avoid cme error 512 (Sean Chiang)
git-svn-id: http://svn.openmoko.org/trunk/src/target/gsm@3964 99fdad57-331a-0410-800a-d7fa5415bdb3
Diffstat (limited to 'src/gsmd')
-rw-r--r--src/gsmd/gsmd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gsmd/gsmd.c b/src/gsmd/gsmd.c
index fdd33de..c11e59f 100644
--- a/src/gsmd/gsmd.c
+++ b/src/gsmd/gsmd.c
@@ -182,7 +182,8 @@ static int gsmd_initsettings2(struct gsmd *gsmd)
/* use +CLIP: to indicate CLIP */
rc |= gsmd_simplecmd(gsmd, "AT+CLIP=1");
/* use +COLP: to indicate COLP */
- rc |= gsmd_simplecmd(gsmd, "AT+COLP=1");
+ /* set it 0 to disable subscriber info and avoid cme err 512 */
+ rc |= gsmd_simplecmd(gsmd, "AT+COLP=0");
/* use +CCWA: to indicate waiting call */
rc |= gsmd_simplecmd(gsmd, "AT+CCWA=1,1");
/* configure message format as PDU mode*/
personal git repositories of Harald Welte. Your mileage may vary