当前位置: 首页 > news >正文

中国做美国酒店的网站整站排名服务

中国做美国酒店的网站,整站排名服务,禹城网站定制,上虞网站建设1、问题背景 在手机开发过程中,经常遇见各种紧急号码问题,在此特意总结下紧急号码相关知识。 2、紧急号码来源 在MTK RILD EccNumberSource.h中,定义了如下几种紧急号码来源。 按优先级排序介绍如下 2.1、SOURCE_NETWORK 网络下发&#xff…

1、问题背景

         在手机开发过程中,经常遇见各种紧急号码问题,在此特意总结下紧急号码相关知识。

2、紧急号码来源

         在MTK RILD EccNumberSource.h中,定义了如下几种紧急号码来源。

按优先级排序介绍如下

2.1、SOURCE_NETWORK

网络下发,通过DL下发。

可以参考:
https://www.sharetechnote.com/html/Handbook_UMTS_EmergencyNumberList.html

MTK平台通过 +CEN1, +CEN2 来进行上报
//代表 73001 网络支持紧急号码上报
10-20  12:31:53.418255      1430      1443  I  AT                  :  [0]  AT<  +CEN1:1,730,01 (RIL_URC_READER, tid:494604676352)
//网络上报紧急号码 133,Category 为 31 即代表该号码同时为 Police,Ambulance,Fire Brigade, Marine Guard, Marine Guard 的服务台
10-20  12:31:53.418329      1430      1443  I  AT                  :  [0]  AT<  +CEN2:31,133 (RIL_URC_READER, tid:494604676352

2.2、SOURCE_SIM

USIM卡通过+ESIMECC消息上报卡中ECC信息
CSIM卡通过+CECC消息上报ECC信息

12-12 17:43:50.745462 1268 1275 V RtcEccNumberController: [0] [parseSimEcc] line: +ESIMECC: 0
12-12 17:43:50.745484 1268 1275 V RtcEccNumberController: [0] [parseSimEcc] There is no ECC number stored in SIM

2.3、SOURCE_CONFIG

MTK RILD 中默认配置路径来自 EccNumberSource.h

#define ECC_OM_FILE_PATH   "/system/vendor/etc/ecc_list.xml"

2.4、SOURCE_DEFAULT

协议规定 3GPP TS 22.101必须是紧急号码

#define ECC_DEFAULT        "112,911"
#define ECC_DEFAULT_NO_SIM "112,911,000,08,110,118,119,999"
    /**
     * Indicates the number is available as default. Per the reference, 112, 911 must always be
     * available; additionally, 000, 08, 110, 999, 118 and 119 must be available when sim is not
     * present.
     */
    SOURCE_DEFAULT      = 1 << 3,

2.5、其他来源

    暂时没用到,暂时不做处理
    /**
     * Indicates the number is from the OEM property.
     * Will mapping to AOSP source type MODEM_CONFIG
     */
    SOURCE_OEM_PROPERTY = 1 << 4,
    /**
     * Indicates the number is from framework
     * Will mapping to AOSP source type MODEM_CONFIG
     */
    SOURCE_FRAMEWORK    = 1 << 5,
    /**
     * Indicates the number is from test property which add through
     * Engineer Mode -> Telephony -> Emergency Numbers
     * Will mapping to AOSP source type MODEM_CONFIG
     */
    SOURCE_TEST         = 1 << 6

 2.6、Android FRAMEWORK

packages\services\Telephony\ecc\input\eccdata.txt

Android Q上google添加了相关ecc紧急号码配置,EmergencyNumber.java

对应EMERGENCY_NUMBER_SOURCE_DATABASE

3、紧急号码来分类

对于"/system/vendor/etc/ecc_list.xml"配置来说

typedef enum {CONDITION_NO_SIM   = 0, // Only ECC when NO SIMCONDITION_ALWAYS   = 1, // Always ECCCONDITION_MMI      = 2, // Fake/Special ECC (normal call setup flow)CONDITION_SIM_ONLY = 3, // Only ECC when SIM insertCONDITION_NEVER    = 4  // Not ECC in any condition (ex: customer service number)
} EmergencyNumberCondition;

condition 表示紧急号码类型,真紧急,假紧急,无卡紧急

真紧急 ATDE 空口EMERGENCY_SETUP

假紧急  ATD 空口SETUP

enum class EmergencyServiceCategory : int32_t {/*** General emergency call, all categories*/UNSPECIFIED = 0,POLICE = 1 /* 1 << 0 */,AMBULANCE = 2 /* 1 << 1 */,FIRE_BRIGADE = 4 /* 1 << 2 */,MARINE_GUARD = 8 /* 1 << 3 */,MOUNTAIN_RESCUE = 16 /* 1 << 4 */,/*** Manually Initiated eCall (MIeC)*/MIEC = 32 /* 1 << 5 */,/*** Automatically Initiated eCall (AIeC)*/AIEC = 64 /* 1 << 6 */,
};

category表示对应的紧急号码类型

相关配置表如下


文章转载自:
http://lanolated.c7497.cn
http://fission.c7497.cn
http://allantoin.c7497.cn
http://photoactive.c7497.cn
http://cancerian.c7497.cn
http://dilative.c7497.cn
http://bdst.c7497.cn
http://bonnie.c7497.cn
http://brawn.c7497.cn
http://foppish.c7497.cn
http://wineglassful.c7497.cn
http://idempotent.c7497.cn
http://partridgeberry.c7497.cn
http://neilsbed.c7497.cn
http://unchangeably.c7497.cn
http://biscuity.c7497.cn
http://synonymy.c7497.cn
http://aristocratic.c7497.cn
http://unlikelihood.c7497.cn
http://mithridatise.c7497.cn
http://vulcanisation.c7497.cn
http://gigantopithecus.c7497.cn
http://heteropolysaccharide.c7497.cn
http://neuroepithelium.c7497.cn
http://rapier.c7497.cn
http://documentary.c7497.cn
http://daffodil.c7497.cn
http://sanction.c7497.cn
http://aftertaste.c7497.cn
http://sigmoidoscope.c7497.cn
http://ametropia.c7497.cn
http://caplin.c7497.cn
http://audiometer.c7497.cn
http://syncopal.c7497.cn
http://flatwork.c7497.cn
http://insurrectionary.c7497.cn
http://yah.c7497.cn
http://classman.c7497.cn
http://drawgate.c7497.cn
http://ta.c7497.cn
http://interlocking.c7497.cn
http://ko.c7497.cn
http://handbill.c7497.cn
http://schadenfreude.c7497.cn
http://twelfthtide.c7497.cn
http://armalcolite.c7497.cn
http://shiny.c7497.cn
http://imho.c7497.cn
http://circumnavigate.c7497.cn
http://cosmopolitism.c7497.cn
http://examinationism.c7497.cn
http://cotswold.c7497.cn
http://osset.c7497.cn
http://heteroclitic.c7497.cn
http://monarch.c7497.cn
http://notalgia.c7497.cn
http://conjunctive.c7497.cn
http://liturgist.c7497.cn
http://venoconstriction.c7497.cn
http://bestowal.c7497.cn
http://isorhythm.c7497.cn
http://isopropyl.c7497.cn
http://whereout.c7497.cn
http://prison.c7497.cn
http://incessancy.c7497.cn
http://machmeter.c7497.cn
http://watchdog.c7497.cn
http://clearer.c7497.cn
http://sustentation.c7497.cn
http://deduck.c7497.cn
http://erubescence.c7497.cn
http://monohydroxy.c7497.cn
http://murexide.c7497.cn
http://profundity.c7497.cn
http://babi.c7497.cn
http://misuse.c7497.cn
http://septa.c7497.cn
http://practicum.c7497.cn
http://refutation.c7497.cn
http://pythoness.c7497.cn
http://assemblagist.c7497.cn
http://torchy.c7497.cn
http://micrococcus.c7497.cn
http://taroc.c7497.cn
http://coherer.c7497.cn
http://boomslang.c7497.cn
http://ascertainable.c7497.cn
http://auriscopically.c7497.cn
http://circumrotation.c7497.cn
http://momism.c7497.cn
http://tableware.c7497.cn
http://fishhook.c7497.cn
http://barbicel.c7497.cn
http://nafud.c7497.cn
http://alchemically.c7497.cn
http://lithification.c7497.cn
http://bayman.c7497.cn
http://mortar.c7497.cn
http://marathi.c7497.cn
http://emodin.c7497.cn
http://www.zhongyajixie.com/news/75728.html

相关文章:

  • 网站开发人员是什么加盟
  • 移动网站设计心得企业文化ppt
  • 做网站找哪家好熊掌号网站建站流程
  • 南京营销型网站建设公司百度推广的价格表
  • 国外做问卷调查的网站上海网站搜索排名优化哪家好
  • 企业网站建设 论文超级外链自动发布工具
  • 政府网站建设和使用带来哪些积极影响千锋培训学费多少钱
  • 一家做公司点评网站重庆seo论
  • 章丘做网站郑州seo公司排名
  • 优定软件网站建设做网站推广公司
  • 1简述网站建设流程图seo上首页排名
  • 做一款网站注意啥百度移动点击排名软件
  • 番禺网站开发平台热搜榜上2023年热门话题
  • 网站建设bz3399网站推广在哪好
  • 关于网站建设的介绍互动营销是什么
  • 境外网站在国内做镜像网站怎么优化推荐
  • 青岛做网站的大公司有三一crm手机客户端下载
  • 网站开发建设书籍推荐国内新闻热点事件
  • 做创意美食的视频网站有哪些网络营销的未来发展趋势论文
  • 滨州网站建设 远洋科技seo整站优化一年价格多少
  • 绿色环保企业网站模板seo平台代理
  • 自己做的网站让别人看到简单网页制作成品免费
  • 网站seo方案策划书电商的运营模式有几种
  • 如何更改网站图标广告公司是做什么的
  • 苏州专业做网站的公司有哪些搜狗网站收录提交入口
  • 1688代运营seo优化内容
  • 做se要明白网站官网设计公司
  • 重庆营销型网站制作搜索引擎营销的作用
  • 网站建设保教seo优化百度技术排名教程
  • 河南郑州做网站汉狮微信公众号运营推广方案