在nvram_cust_pack.c中COMMON_NVRAM_EF_SMSAL_COMMON_PARAM_DEFAULT
kal_uint8 const COMMON_NVRAM_EF_SMSAL_COMMON_PARAM_DEFAULT[] =
{
#if defined (__CS_SERVICE__) && defined (__SMS_OVER_PS_SUPPORT__)
0x03, /* bearer service : GSM prefer */
#elif defined (__SMS_OVER_PS_SUPPORT__)
0x00, /* bearer service : GPRS Only */
#else
0x01, /* bearer service : GSM Only */
#endif
0x00, 0x00, /* status report, reply path OFF */
0x02, /* VP: Relative format */
#ifdef __UNIFIED_MESSAGE_SIMBOX_SUPPORT__
0x01, 0x01, 0x01, /* mem1, mem2, mem3 */
#else/* __UNIFIED_MESSAGE_SIMBOX_SUPPORT__ */
0x05, 0x05, 0x05, /* mem1, mem2, mem3 */
#endif /* __UNIFIED_MESSAGE_SIMBOX_SUPPORT__ */
0x00, 0x01, /* CB setting */
0x00, /* AT default profile ID */
0x00, /* First Octet */
0x00, /* Turn Off SMS FDN */
0x00, /* last_used_tp_mr */
0x00, /* mem_capacity_available */
0x00, /* selected_msp */
0x00 /* reserve */
};
第8個byte就是小區(qū)廣播的開關(guān),1是打開,0是關(guān)閉。
設(shè)置默認(rèn)關(guān)閉或打開是修改如下代碼中的第一個數(shù)據(jù)。 0x00就默認(rèn)關(guān)閉,改成0x01就是默認(rèn)打開
0x00, 0x01, /* CB setting *