AT+CHUP seems to work better than ATH in our case

This commit is contained in:
Pierre Pronchery 2010-05-12 11:16:16 +00:00
parent 65d40cac3a
commit 7a7d96158f

View File

@ -343,7 +343,8 @@ void phone_call_answer(Phone * phone)
/* phone_call_hangup */
void phone_call_hangup(Phone * phone)
{
gsm_call_hangup(phone->gsm);
/* XXX seems to work better than hangup */
gsm_call_reject(phone->gsm);
}