微波EDA网,见证研发工程师的成长!
首页 > 研发问答 > 手机设计讨论 > MTK手机平台交流 > 在设置FDN check时是否可以 只检查DA ,不检查短信中心号码 SCA

在设置FDN check时是否可以 只检查DA ,不检查短信中心号码 SCA

时间:10-02 整理:3721RD 点击:
[DESCRIPTION]
在设置FDN check 时 是否可以只检查DA ,不检查短信中心号码 SCA。
[SOLUTION]
这Modem code 里可以客制化 ,修改custom_SMS_fdn_check_da_only 的return 值为TRUE 的话 ,就不会check SMSC 是否在FDN 里。
/*************************************************************************
**********************
* FUNCTION
* custom_sms_fdn_check_da_only()
* DESCRIPTION
* According to spec 22.101 A.25 ,
* For SMS,both SCA(Service Center address) and DA(Destination Address)
shall be checked when FDN is enabled
* There might be special requirement for sms fdn check to check DA only.
*
* PARAMETERS
* none
* RETURNS
* KAL_TRUE is to ignore fdn check for sca, only check for da
* KAL_FALSE (default) is to obey the spec. Do fdn check for both sca and
da
**************************************************************************
**********************/
kal_uint8 custom_sms_fdn_check_da_only(void)
{
#ifdef __SMS_FDN_CHECK_DA_ONLY__
return KAL_TRUE;
#else
return KAL_FALSE;
#endif
}

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top