上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 28 下一页
摘要: 3G有三种标准: 中国移动的是TD的(国产标准,大唐),开发modem的有联芯科技、大唐、展讯 CDMA,是中国电信的,基本上都是高通的芯片 WCDMA,是中国联通的 我知道英飞凌有这样的芯片 CE下可用的模块: TD:LC6311(大唐) CDMA:MC8331A(中兴) 注:驱动都有(包括多通道 阅读全文
posted @ 2016-03-04 21:18 91program 阅读(145) 评论(0) 推荐(0) 编辑
摘要: RIL的开发需要两步:第一步:在PB中添加CellCore/RIL和TAPI 首先在CE6.0的catalog里面找到”CellCore”,你可以只选择你需要的选项(例如SMS支持)或者所有功能(ALL Modules)。 这样做的话就只会添加到你的API层(MDD模块)但是不能添加Enfora例程 阅读全文
posted @ 2016-03-04 19:33 91program 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 1.求下面函数的返回值(微软) int func(x) { int countx = 0; while(x) { countx ++; x = x&(x-1); } return countx; } 假定x = 9999。 答案:8 思路:将x转化为2进制,看含有的1的个数。 2. 什么是“引用”? 阅读全文
posted @ 2016-03-03 14:14 91program 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 一、请填写BOOL , float, 指针变量 与“零值”比较的 if 语句。(10分)提示:这里“零值”可以是0, 0.0 , FALSE或者“空指针”。例如 int 变量 n 与“零值”比较的 if 语句为:if ( n == 0 )if ( n != 0 )以此类推。请写出 BOOL flag 阅读全文
posted @ 2016-03-03 14:10 91program 阅读(447) 评论(0) 推荐(0) 编辑
摘要: 预处理器(Preprocessor) 1. 用预处理指令#define 声明一个常数,用以表明1年中有多少秒(忽略闰年问题) #define SECONDS_PER_YEAR (60 * 60 * 24 * 365)UL 我在这想看到几件事情: 1). #define 语法的基本知识(例如:不能以分 阅读全文
posted @ 2016-03-03 14:08 91program 阅读(604) 评论(0) 推荐(0) 编辑
摘要: 根据c/c++语法,const可以出现的地方,volatile几乎也都可以出现。但是,const修饰的对象其值不能改变,而volatile修饰的对象其值可以随意地改变,也就是说,volatile对象值可能会改变,即使没有任何代码去改变它。在这一点上,最典型的例子就是内存映射的设备寄存器和多线程中的共 阅读全文
posted @ 2016-03-03 14:07 91program 阅读(1047) 评论(0) 推荐(0) 编辑
摘要: When a call is coming, the RIL will call our NotifyCallback functon. The first call will be with RIL_NOTIFY_RING notification code. The it will be cal 阅读全文
posted @ 2016-03-02 11:34 91program 阅读(147) 评论(0) 推荐(0) 编辑
摘要: The phone number of the mobile device can be retrieved using the API lineGetAddressCaps. The API fills the LINEADDRESSCAPS structure that is passed in 阅读全文
posted @ 2016-03-02 11:33 91program 阅读(143) 评论(0) 推荐(0) 编辑
摘要: Connection Manager is a Windows Mobile component that manages and monitors different types of network connections such as PPP, RAS, GPRS, etc… Connect 阅读全文
posted @ 2016-03-02 11:10 91program 阅读(202) 评论(0) 推荐(0) 编辑
摘要: AT+CIPSTART: { 0 IP INITIAL 初始化 1 IP START 启动任务 2 IP CONFIG 配置场景 3 IP IND 接受场景配置 4 IP GPRSACT 场景已激活 5 IP STATUS 获得本地IP地址 6 TCP/UDP CONNECTING 与SERVER建 阅读全文
posted @ 2016-03-02 11:08 91program 阅读(1259) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 28 下一页