source file '战地3 kernel32.dlllib' ignored

Access denied | www.archivum.info used Cloudflare to restrict access
Please enable cookies.
What happened?
The owner of this website (www.archivum.info) has banned your access based on your browser's signature (3e0c93-ua98).Access denied | www.archivum.info used Cloudflare to restrict access
Please enable cookies.
What happened?
The owner of this website (www.archivum.info) has banned your access based on your browser's signature (3e0c825cf5fb968d-ua98).he910-3G汇总_文档资料库
he910-3G汇总
frescale 的 imx6 的平台,android4.3 系统,内核版本 3.0.35,采用 he910,USB 连接方式,以 下是 he910 3G 调试总结: 1.所用芯片厂家提供资料:解压参考此压缩包文档:添加流程: 一.内核: 1. make menuconfig 配置如下: 配置驱动: 选择 Device DriversUSB support进入 USB support 之后选择 cdc-acm 支持接着继续在此目录选择 USB 转串口最后选择 USB driver for GSM and CDMA modems 添加 ppp 协议 配置驱动选择网络设备支持选择 ppp 所有协议内核至此配置完成。 2. 内核添加 usb 串口驱动 kernel_imx/drivers/usb/class/cdc-acm.c(注:不同的芯片可能修改的 usb 驱动文件不一 样 ,he910 此芯片是 cdc-acm.c( 会在目标板上产生 /dev/ttyACM0 等节点 ), 其他可能 kernel_imx/drivers/usb/serial/option.c(会产生节点为/dev/ttyUSB0,/dev/ttyUSB1 等),具 体请参考厂家资料) 添加内容如下: 模块接上之后,进入串口查看 pid vid cd sys/bus/usb/devices/2-1 cat idProduct cat idVendor #define TELIT_VENDOR_ID 0x1bc7 注:产品 ID #define TELIT_PRODUCT_HE910_DUAL 0x0021 注:制造商 ID static const struct usb_device_id acm_ids[] = { /*for TELIT 3G*/ { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_HE910_DUAL), .driver_info = NO_UNION_NORMAL, }, } 上电时序(直接上电了) : /*3G*/ gpio_request(SABRESD_3G_PWR_ON,&3g_power_en&); gpio_direction_output(SABRESD_3G_PWR_ON,1); gpio_request(SABRESD_3G_SHUTDOWN,&3g_shutdown&); gpio_direction_output(SABRESD_3G_SHUTDOWN,0); gpio_request(SABRESD_3G_ON_OFF,&3g_on_off&); gpio_direction_output(SABRESD_3G_ON_OFF,0); msleep(5000); gpio_direction_output(SABRESD_3G_ON_OFF,1); msleep(5000); gpio_direction_output(SABRESD_3G_ON_OFF,0); 到此内核配置完成。 二.Android 层 以下是按照所给资料配置,资料名称如下:1. Android 层添加支持 he910 代码 \\192.168.5.225\yg_ln\M636\M636_JB4.3_Android\hardware\imx\mx6\3G 编 译 出 厂 商提供的文件\\192.168.5.225\yg_ln\M636\M636_JB4.3_Android\hardware\ril 编译此目录下厂商提 供的 ril 库/disk2/Extand1/yg_work/M636/M636_JB4.3_Android/hardware/ril/runtime-ril-port 支 添加持 he910 设备 { .name = &TELIT-HE910&, .idVendor = &1bc7&, .idProduct = &0021&, .deviceport = &/dev/ttyACM3&,//at cmd port .dataport = &/dev/ttyACM0&, //data port 注:id 匹配 ok 则会在 logcat 信息中 找到”TELIT-HE910”这个名字和相应 type .type = TELIT_MODEM, }, /disk2/Extand1/yg_work/M636/M636_JB4.3_Android/hardware/ril/include 添加 enum { HUAWEI_MODEM = 0, AMAZON_MODEM, ZTE_MODEM, TELIT_MODEM,//添加一个 modern 名 UNKNOWN_MODEM, }; 编译完成后具体步骤如下:Android build requirementsFor proper installing Telit RIL driver, pppd is needed. It can usually be built during Android building process. pppd binary in the target filesystem should be found in /system/bin.2.4. Copying the required filesFor proper installing Telit RIL driver several files should be copied inside Android device: Common setup - Copy chat in /system/bin - Copy libreference-ril.so in /system/lib - Copy ip-up-ppp0 in /system/etc/ppp - Copy ip-down-ppp0 in /system/etc/ppp An additional setup is needed for each specific device: HE Family - Copy options in /system/etc - Copy hsdpa_connect in /system/etc - Copy hsdpa_disconnect in /system/etc2.5. Changing Android configuration filesFor proper installing Telit RIL driver some configuration files inside Android device should be changed. Look for the init file (usually named init.rc). In the on boot section add: chown radio system /system/bin/chat chown radio system /system/etc/options chown radio system /system/etc/ppp/ip-up-ppp0 chown radio system /system/etc/ppp/ip-down-ppp0 service ril-daemon /system/bin/rild socket rild stream 660 root radio socket rild-debug stream 660 radio system user root group radio cache inet misc audio vpn net_admin chmod 0770 /system/etc/chat chmod 0770 /system/etc/options chmod 0770 /system/etc/ppp/ip-up-ppp0 chmod 0770 /system/etc/ppp/ip-down-ppp0 In the init section where services are defined add: service pppd /system/bin/pppd file /etc/options class main user root group shell radio oneshot disabled HE Family - Add the following lines in the init file (usually init.rc), in the on boot section: chown radio system /dev/ttyACM0 chown radio system /dev/ttyACM3 chmod 0770 /system/etc/hsdpa_connect chmod 0770 /system/etc/hsdpa_disconnect chown radio system /system/etc/hsdpa_connect chown radio system /system/etc/hsdpa_disconnect - Add the following properties to the system (usually in default.prop): rild.libpath=/system/lib/libreference-ril.so rild.libargs=-d /dev/ttyACM02.6. Changing Android framework filesFor proper working of the Telit RIL driver the init Android application should be changed. Open the file system/core/init/property_service.c. Look for check_control_perms function and replace if (uid == AID_SYSTEM || uid == AID_ROOT) with if (uid == AID_SYSTEM || uid == AID_ROOT || uid == AID_RADIO). Open the file system/core/init/init.c. Look for service_stop_or_reset function and replace kill(-svc-&pid, SIGKILL); with if (svc-&name != NULL) { if (strstr(svc-&name, “pppd”) != NULL) kill(-svc-&pid, SIGTERM); else kill(-svc-&pid, SIGKILL); } else kill(-svc-&pid, SIGKILL); 至此 Android 配置完成。 总结: 1. 内核识别到 USB 设备 2. Android 层通过内核层两个 ID 匹配实现 data(传输数据)和 cmd(AT 命令)通讯 常用 AT 命令: cat /dev/ttyACM3 & echo Cen &ATE0\r& & /dev/ttyACM3 关闭回显。程序初始化 AT 部分首先关闭回显。 echo Cen &AT\r& & /dev/ttyACM3 (正常应该返回一个 OK) echo Cen &AT+CGSN\r& & /dev/ttyACM3 (备注:得到序列号(IMEI)) echo -en &AT+CIMI\r& & /dev/ttyACM3 (备注:得到手机 IMSI 号码) echo -en &AT+CNUM\r& & /dev/ttyACM3 (备注:用户号码) echo -en &AT+CREG?\r& & /dev/ttyACM3 (备注:查网络注册语音打电话) echo -en &AT+CSQ\r& & /dev/ttyACM3 (备注:查当前信号) echo -en &ATD667\r& & /dev/ttyACM3 (备注:打电话) echo -en &ATA\r& & /dev/ttyACM3 (备注:接听电话电话) echo -en &AT+CGREG?\r& & /dev/ttyACM3 (备注:查网络注册上网) Logcat 信息: Kernel: 串口输入命令:dmesg 显示如下: root@M636:/ # U-Boot 2009.08-dirty (Sep 10 2014 - 15:45:11) CPU: Freescale i.MX6 family TO1.2 at 792 MHz Thermal sensor with ratio = 176 Temperature: 29 C, calibration data 0x55b4ca69 mx6q pll1: 792MHz mx6q pll2: 528MHz mx6q pll3: 480MHz mx6q pll8: 50MHz ipg clock : Hz ipg per clock : Hz uart clock : Hz cspi clock : Hz ahb clock : Hz axi clock : Hz emi_slow clock: Hz ddr clock : Hz usdhc1 clock : Hz usdhc2 clock : Hz usdhc3 clock : Hz usdhc4 clock : Hz nfc clock : Hz Board: i.MX6Q-SABRESD: unknown-board Board: 0x63012 [POR ] Boot Device: MMC I2C: ready DRAM: 1 GB pad6_gpio_init MMC: FSL_USDHC: 0,FSL_USDHC: 1,FSL_USDHC: 2,FSL_USDHC: 3 initialize environment ... *** Warning - bad CRC or MMC, using default environment In: serial Out: serial Err: serial pad6_work m13088_init detect ] m13088 checksum .... m13088 checksum ok Net: got MAC address from IIM: 00:00:00:00:00:00 FEC0 [PRIME] Hit any key to stop autoboot: 0 kernel @ 56140) ramdisk @ 4907) kernel cmdline: use uboot command line: console=ttymxc3,115200 init=/init video=mxcfb0:dev=ldb,LDB-WVGA,bpp=32 video=mxcfb1:off video=mxcfb2:off fbmem=10M fb0base=0x27b00000 vmalloc=400M androidboot.console=ttymxc3 androidboot.hardware=freescale Starting kernel ... Initializing cgroup subsys cpu Linux version 3.0.35-gaaafd08-dirty (yg@tianfeng-Honmax-Server) (gcc version 4.6.x-google
(prerelease) (GCC) ) #128 SMP PREEMPT Wed Oct 8 15:34:20 CST 2014 CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c53c7d CPU: VIPT nonaliasing data cache, VIPT aliasing instruction cache Machine: Freescale i.MX 6Quad/DualLite/Solo Sabre-SD Board Ignoring unrecognised tag 0x Memory policy: ECC disabled, Data cache writealloc CPU identified as i.MX6Q, silicon rev 1.2 PERCPU: Embedded 7 pages/cpu @c92 r u32768 Built 1 zonelists in Zone order, mobility grouping on. Total pages: 208128 Kernel command line: console=ttymxc3,115200 init=/init video=mxcfb0:dev=ldb,LDB-WVGA,bpp=32 video=mxcfb1:off video=mxcfb2:off fbmem=10M fb0base=0x27b00000 vmalloc=400M androidboot.console=ttymxc3 androidboot.hardware=freescale PID hash table entries: 2048 (order: 1, 8192 bytes) Dentry cache hash table entries: 65536 (order: 6, 262144 bytes) Inode-cache hash table entries: 32768 (order: 5, 131072 bytes) Memory: 379MB 378MB 64MB = 821MB total Memory: 0916k available, 227660k reserved, 441344K highmem Virtual kernel memory layout: vector : 0xffff0000 - 0xffff1000 ( 4 kB) fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB) DMA : 0xfbe00000 - 0xffe00000 ( 64 MB) vmalloc : 0xd9800000 - 0xf2000000 ( 392 MB) lowmem : 0xc0000000 - 0xd9000000 ( 400 MB) pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB) modules : 0xbf000000 - 0xbfe00000 ( 14 MB) .init : 0xc0008000 - 0xc0045000 ( 244 kB) .text : 0xc0045000 - 0xc30 kB) .data : 0xc0882000 - 0xc0917030 ( 597 kB) .bss : 0xc0917054 - 0xc0a9cc80 (1560 kB) Preemptible hierarchical RCU implementation. NR_IRQS:624 MXC GPIO hardware sched_clock: 32 bits at 3000kHz, resolution 333ns, wraps every 1431655ms arm_max_freq=1GHz MXC_Early serial console at MMIO 0x21f0000 (options ';) bootconsole [ttymxc3] enabled Calibrating delay loop... 1581.05 BogoMIPS (lpj=7905280) pid_max: default: 32768 minimum: 301 Mount-cache hash table entries: 512 Initializing cgroup subsys debug Initializing cgroup subsys cpuacct Initializing cgroup subsys freezer CPU: Testing write buffer coherency: ok hw perfevents: enabled with ARMv7 Cortex-A9 PMU driver, 7 counters available CPU1: Booted secondary processor Brought up 2 CPUs SMP: Total of 2 processors activated (3162.11 BogoMIPS). print_constraints: dummy: NET: Registered protocol family 16 print_constraints: vddpu: 725 &--& 1300 mV at 700 mV fast normal print_constraints: vddcore: 725 &--& 1300 mV at 1150 mV fast normal print_constraints: vddsoc: 725 &--& 1300 mV at 1200 mV fast normal print_constraints: vdd2p5: 2000 &--& 2775 mV at 2400 mV fast normal print_constraints: vdd1p1: 800 &--& 1400 mV at 1100 mV fast normal print_constraints: vdd3p0: 2625 &--& 3400 mV at 3000 mV fast normal wl12xx irq_num = 380 uart5 is added wl12xx_set_platform_data platform_data-&irq = 380 ram_console: got buffer at 3ff00000, size 100000 ram_console: uncorrectable error in header ram_console: no valid data in buffer (sig = 0xfff2f7ee) console [ram-1] enabled No AHCI save PWR: PDDQ enabled hw-breakpoint: found 6 breakpoint and 1 watchpoint registers. hw-breakpoint: 1 breakpoint(s) reserved for watchpoint single-step. hw-breakpoint: maximum watchpoint size is 4 bytes. L310 cache controller enabled l2x0: 16 ways, CACHE_ID 0x, AUX_CTRL 0x, Cache size: 1048576 B bio: create slab &bio-0& at 0 mxs-dma mxs-dma-apbh: initialized print_constraints: PPMIC_5V: 5000 mV print_constraints: PMIC_VSNVS: 3000 mV print_constraints: PMIC_VGEN1V5: 1500 mV print_constraints: PMIC_VGEN1V8: 1800 mV print_constraints: PMIC_VGEN2V8: 2800 mV print_constraints: PMIC_VGEN3V3: 3300 mV print_constraints: vmmc: 3300 mV vgaarb: loaded SCSI subsystem initialized usbcore: registered new interface driver usbfs usbcore: registered new interface driver hub usbcore: registered new device driver usb Freescale USB OTG Driver loaded, $Revision: 1.55 $ imx-ipuv3 imx-ipuv3.1: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7) mxc_mipi_csi2 mxc_mipi_csi2: i.MX MIPI CSI2 driver probed mxc_mipi_csi2 mxc_mipi_csi2: i.MX MIPI CSI2 dphy version is 0x3130302a MIPI CSI2 driver module loaded Advanced Linux Sound Architecture Driver Version 1.0.24. Bluetooth: Core ver 2.16 NET: Registered protocol family 31 Bluetooth: HCI device and connection manager initialized Bluetooth: HCI socket layer initialized Bluetooth: L2CAP socket layer initialized Bluetooth: SCO socket layer initialized i2c-core: driver [max17135] using legacy suspend method i2c-core: driver [max17135] using legacy resume method Switching to clocksource mxc_timer1 NET: Registered protocol family 2 IP route cache hash table entries: 16384 (order: 4, 65536 bytes) TCP established hash table entries: 65536 (order: 7, 524288 bytes) TCP bind hash table entries: 65536 (order: 7, 786432 bytes) TCP: Hash tables configured (established 65536 bind 65536) TCP reno registered UDP hash table entries: 256 (order: 1, 8192 bytes) UDP-Lite hash table entries: 256 (order: 1, 8192 bytes) NET: Registered protocol family 1 RPC: Registered named UNIX socket transport module. RPC: Registered udp transport module. RPC: Registered tcp transport module. RPC: Registered tcp NFSv4.1 backchannel transport module. PCI: CLS 0 bytes, default 32 Unpacking initramfs... Freeing initrd memory: 228K honmax hm13088 version: 4 1 honmax hm13088 uid:
honmax hm13088 mac1: 66:55:44:33:22:11 honmax hm13088 mac2: cc:bb:aa:99:88:77 get config = 0 i2c-core: driver [hm13088] using legacy suspend method i2c-core: driver [hm13088] using legacy resume method PMU: registered new PMU device of type 0 Static Power Management for Freescale i.MX6 wait mode is enabled for i.MX6 cpaddr = d9880000 suspend_iram_base=d9918000 PM driver module loaded IMX usb wakeup probe the wakeup pdata is 0xd45f8a20 add wake up source irq 75 IMX usb wakeup probe the wakeup pdata is 0xd45f87e0 cpu regulator mode:ldo_enable i.MXC CPU frequency driver highmem bounce pool size: 64 pages ashmem: initialized NTFS driver 2.1.30 [Flags: R/O]. JFFS2 version 2.2. (NAND) 漏
Red Hat, Inc. fuse init (API version 7.16) msgmni has been set to 741 NET: Registered protocol family 38 cryptodev: driver loaded. io scheduler noop registered io scheduler deadline registered io scheduler cfq registered (default) MIPI DSI driver module loaded mxc_sdc_fb mxc_sdc_fb.0: register mxc display driver ldb _regulator_get: get() with no identifier mxc_sdc_fb mxc_sdc_fb.1: Can't get fb option for mxcfb1! mxc_sdc_fb mxc_sdc_fb.2: Can't get fb option for mxcfb2! imx-sdma imx-sdma: loaded firmware 1.1 imx-sdma imx-sdma: initialized Serial: IMX driver imx-uart.4: ttymxc4 at MMIO 0x21f4000 (irq = 62) is a IMX imx-uart.2: ttymxc2 at MMIO 0x21ec000 (irq = 60) is a IMX imx-uart.0: ttymxc0 at MMIO 0x2020000 (irq = 58) is a IMX imx-uart.1: ttymxc1 at MMIO 0x21e8000 (irq = 59) is a IMX imx-uart.3: ttymxc3 at MMIO 0x21f0000 (irq = 61) is a IMX console [ttymxc3] enabled, bootconsole disabled console [ttymxc3] enabled, bootconsole disabled loop: module loaded GPMI NAND driver registered. (IMX) vcan: Virtual CAN interface driver CAN device driver interface flexcan netdevice driver FEC Ethernet Driver fec_enet_mii_bus: probed PPP generic driver version 2.4.2 PPP Deflate Compression module registered PPP BSD Compression module registered tun: Universal TUN/TAP device driver, 1.6 tun: (C)
Max Krasnyansky && ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver fsl-ehci fsl-ehci.0: Freescale On-Chip EHCI Host Controller fsl-ehci fsl-ehci.0: new USB bus registered, assigned bus number 1 fsl-ehci fsl-ehci.0: irq 75, io base 0x fsl-ehci fsl-ehci.0: USB 2.0 started, EHCI 1.00 hub 1-0:1.0: USB hub found hub 1-0:1.0: 1 port detected add wake up source irq 72 fsl-ehci fsl-ehci.1: Freescale On-Chip EHCI Host Controller fsl-ehci fsl-ehci.1: new USB bus registered, assigned bus number 2 fsl-ehci fsl-ehci.1: irq 72, io base 0x fsl-ehci fsl-ehci.1: USB 2.0 started, EHCI 1.00 hub 2-0:1.0: USB hub found hub 2-0:1.0: 1 port detected usbcore: registered new interface driver cdc_acm cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters Initializing USB Mass Storage driver... usbcore: registered new interface driver usb-storage USB Mass Storage support registered. usbcore: registered new interface driver usbserial usbserial: USB Serial Driver core USB Serial support registered for GSM modem (1-port) usbcore: registered new interface driver option option: v0.7.2:USB Driver for GSM modems USB Serial support registered for Qualcomm USB modem usbcore: registered new interface driver qcserial ARC USBOTG Device Controller driver (1 August 2005) android_usb gadget: Mass Storage Function, version:
android_usb gadget: Number of LUNs=1 lun0: LUN: removable file: (no medium) Gadget Android: controller 'fsl-usb2-udc' not recognized android_usb gadget: android_usb ready Suspend udc for OTG auto detect fsl-usb2-udc: bind to driver android_usb mousedev: PS/2 mouse device common for all mice input: gpio-keys as /devices/platform/gpio-keys/input/input0 enter gpio_keys_report_event enter gpio_keys_report_event enter gpio_keys_report_event enter gpio_keys_report_event i2c-core: driver [isl29023] using legacy suspend method i2c-core: driver [isl29023] using legacy resume method using rtc device, snvs_rtc, for alarms snvs_rtc snvs_rtc.0: rtc core: registered snvs_rtc as rtc0 i2c /dev entries driver Linux video capture interface: v2.00 mxc_v4l2_output mxc_v4l2_output.0: V4L2 device registered as video16 mxc_v4l2_output mxc_v4l2_output.0: V4L2 device registered as video17 usbcore: registered new interface driver uvcvideo USB Video Class driver (v1.1.0) i2c-core: driver [mag3110] using legacy suspend method i2c-core: driver [mag3110] using legacy resume method imx2-wdt imx2-wdt.0: IMX2+ Watchdog Timer enabled. timeout=60s (nowayout=1) device-mapper: uevent: version 1.0.3 device-mapper: ioctl: 4.20.0-ioctl () initialised: dm- sdhci: Secure Digital Host Controller Interface driver sdhci: Copyright(c) Pierre Ossman mmc0: SDHCI controller on platform [sdhci-esdhc-imx.3] using DMA sdhci sdhci-esdhc-imx.2: no write-protect pin available! mmc1: SDHCI controller on platform [sdhci-esdhc-imx.2] using DMA sdhci sdhci-esdhc-imx.1: no write-protect pin available! sdhci sdhci-esdhc-imx.1: no card-detect pin available! usb 1-1: new low speed USB device number 2 using fsl-ehci mmc2: SDHCI controller on platform [sdhci-esdhc-imx.1] using DMA mxc_vdoa mxc_vdoa: i.MX Video Data Order Adapter(VDOA) driver probed VPU initialized mxc_asrc registered Galcore version 4.6.9.9754 revserved_memory_account:viv_gpu registerd Thermal calibration data is 0x55b4ca69 Thermal sensor with ratio = 176 Anatop Thermal registered as thermal_zone0 anatop_thermal_probe: default cooling device is cpufreq! ======================enter ad7879_i2c_probe======================enter ad7879_probe input: eGalax Touch Screen as /devices/platform/imx-i2c.0/i2c-0/0-002c/input/input1 m636_3g_mixdev_init mmc0: new high speed DDR MMC card at address 0001 mmcblk0: mmc0:0001 MMC04G 3.54 GiB mmcblk0boot0: mmc0:0001 MMC04G partition 1 2.00 MiB mmcblk0boot1: mmc0:0001 MMC04G partition 2 2.00 MiB mmcblk0: p1 p2 p3 & p5 p6 p7 p8 & p4 mmcblk0: p4 size 5251072 extends beyond EOD, truncated mmcblk0boot1: unknown partition table mmcblk0boot0: unknown partition table WLAN power on usb 1-1: device v093a p2510 is not supported cdc_acm 1-1:1.0: skipping garbage WLAN power off WLAN power on WLAN power off WLAN power on WLAN power off WLAN power on WLAN power off mmc2: card claims to support voltages below the defined range. These will be ignored. mmc2: queuing unknown CIS tuple 0x91 (3 bytes) mmc2: new SDIO card at address 0001 usb 2-1: new high speed USB device number 2 using fsl-ehci usb 2-1: config 1 interface 0 altsetting 0 endpoint 0x81 has an invalid bInterval 255, changing to 11 cdc_acm 2-1:1.0: This device cannot do calls on its own. It is not a modem. cdc_acm 2-1:1.0: ttyACM0: USB ACM device usb 2-1: USB disconnect, device number 2 usb 2-1: new high speed USB device number 3 using fsl-ehci cdc_acm 2-1:1.0: This device cannot do calls on its own. It is not a modem. cdc_acm 2-1:1.0: ttyACM0: USB ACM device cdc_acm 2-1:1.2: This device cannot do calls on its own. It is not a modem. cdc_acm 2-1:1.2: ttyACM1: USB ACM device cdc_acm 2-1:1.4: This device cannot do calls on its own. It is not a modem. cdc_acm 2-1:1.4: ttyACM2: USB ACM device cdc_acm 2-1:1.6: This device cannot do calls on its own. It is not a modem. cdc_acm 2-1:1.6: ttyACM3: USB ACM device cdc_acm 2-1:1.8: This device cannot do calls on its own. It is not a modem. cdc_acm 2-1:1.8: ttyACM4: USB ACM device cdc_acm 2-1:1.10: This device cannot do calls on its own. It is not a modem. cdc_acm 2-1:1.10: ttyACM5: USB ACM device cdc_acm 2-1:1.12: This device cannot do calls on its own. It is not a modem. cdc_acm 2-1:1.12: ttyACM6: USB ACM device leds_init radio_dev_init input: PixArt USB Optical Mouse as /devices/platform/fsl-ehci.0/usb1/1-1/1-1:1.0/input/input2 generic-usb 10.0001: input,hidraw0: USB HID v1.11 Mouse [PixArt USB Optical Mouse] on usb-fsl-ehci.0-1/input0 usbcore: registered new interface driver usbhid usbhid: USB HID core driver logger: created 256K log 'log_main' logger: created 256K log 'log_events' logger: created 256K log 'log_radio' logger: created 256K log 'log_system' usbcore: registered new interface driver snd-usb-audio Cirrus Logic CS42888 ALSA SoC Codec Driver i2c-core: driver [cs42888] using legacy suspend method i2c-core: driver [cs42888] using legacy resume method imx-hdmi-soc-dai imx-hdmi-soc-dai.0: Failed: Load HDMI-video first. asoc: wm8960 &-& imx-ssi.1 mapping ok imx_3stack asoc driver ALSA device list: #0: wm8960-audio oprofile: using arm/armv7-ca9 GACT probability NOT on Mirror/redirect action on u32 classifier Actions configured Netfilter messages via NETLINK v0.30. nf_conntrack version 0.5.0 (12830 buckets, 51320 max) ctnetlink v0.93: registering with nfnetlink. NF_TPROXY: Transparent proxy support initialized, version 4.1.0 NF_TPROXY: Copyright (c)
BalaBit IT Ltd. xt_time: kernel timezone is -0000 IPv4 over IPv4 tunneling driver GRE over IPv4 demultiplexor driver ip_tables: (C)
Netfilter Core Team arp_tables: (C) 2002 David S. Miller TCP cubic registered NET: Registered protocol family 10 Mobile IPv6 ip6_tables: (C)
Netfilter Core Team IPv6 over IPv4 tunneling driver NET: Registered protocol family 17 NET: Registered protocol family 15 can: controller area network core (rev
abi 8) NET: Registered protocol family 29 can: raw protocol (rev ) can: broadcast manager protocol (rev
t) Bluetooth: RFCOMM TTY layer initialized Bluetooth: RFCOMM socket layer initialized Bluetooth: RFCOMM ver 1.11 Bluetooth: BNEP (Ethernet Emulation) ver 1.3 Bluetooth: BNEP filters: protocol multicast Bluetooth: HIDP (Human Interface Emulation) ver 1.2 L2TP core driver, V2.0 L2TP IP encapsulation support (L2TPv3) L2TP netlink interface L2TP ethernet pseudowire support (L2TPv3) VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4 Bus freq driver module loaded Bus freq driver Enabled mxc_dvfs_core_probe DVFS driver module loaded snvs_rtc snvs_rtc.0: setting system clock to
00:00:08 UTC (8) Freeing init memory: 244K init: cannot find '/system/bin/uim-sysfs', disabling 'uim' init: cannot find '/system/bin/dbus-daemon', disabling 'dbus' init: cannot find '/system/etc/install-recovery.sh', disabling 'flash_recovery' Compat-wireless backport release: ol_R5.SP4.01 Backport based on wl12xx.git ol_R5.SP4.01-2-g1aa2c8e root@M636:/ # cfg80211: Calling CRDA to update world regulatory domain wl12xx: driver version: wl12xx: compilation time: Thu Sep 4 12:06:27 2014 android_usb: already disabled mtp_bind_config ERROR: v4l2 capture: slave not found! ERROR: v4l2 capture: slave not found! ERROR: v4l2 capture: slave not found! ERROR: v4l2 capture: slave not found! ERROR: v4l2 capture: slave not found! ERROR: v4l2 capture: slave not found! ERROR: v4l2 capture: slave not found! ERROR: v4l2 capture: slave not found! warning: `rild' uses 32-bit capabilities (legacy support in use) request_suspend_state: wakeup (3-&0) at
( 00:00:01. UTC) cpufreq_interactive_input_connect: connect to eGalax Touch Screen eth0: Freescale FEC PHY driver [Generic PHY] (mii_bus:phy_addr=1:01, irq=-1) ADDRCONF(NETDEV_UP): eth0: link is not ready acc_open acc_release init: sys_prop: permission denied uid:1003 name:service.bootanim.exit Android: 串口输入命令:Logcat Cb radio 显示如下: 130|root@M636:/ # logcat -b radio I/use-Rlog/RLOG-RIL( 2281): Runtime 3G port found matched device with Name:TELIT-HE910 idVendor:1bc7 idProduct:0021 I/use-Rlog/RLOG-RIL( 2281): Current modem type = 3 D/use-Rlog/RLOG-RILD( 2281): Couldn't find proper modem, retrying... D/TelephonyManager( 2276): No /proc/cmdline exception=java.io.FileNotFoundException: /proc/cmdline: open failed: EACCES (Permission denied) D/TelephonyManager( 2276): /proc/cmdline= I/use-Rlog/RLOG-RIL( 2281): 3G modem monitor thread is start I/use-Rlog/RLOG-RIL( 2281): Opening tty device /dev/ttyACM0 E/RILC ( 2281): RIL_register: RIL version 8 D/use-Rlog/RLOG-AT( 2281): AT& AT D/use-Rlog/RLOG-AT( 2281): AT& +CGREG: 0 D/use-Rlog/RLOG-AT( 2281): AT& +CREG: 1,&A53F&,& D/use-Rlog/RLOG-AT( 2281): AT& #PSNT: 4 D/use-Rlog/RLOG-AT( 2281): AT& +CGREG: 1,&A53F&,&,&02& D/use-Rlog/RLOG-AT( 2281): AT& #PSNT: 3 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& ATE0 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& ATE0Q0V1 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT+CFUN=4 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT&W D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT&P D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& ATS0=0 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT+CMEE=1 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT+CREG=2 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT+CGREG=2 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT+CCWA=1 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT+CMUT=0 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT+CSSN=0,1 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT#QSS=2 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT+WIND=32 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT#DIALMODE=0 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT+CFUN? D/use-Rlog/RLOG-AT( 2281): AT& +CFUN: 4 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& +CREG: 0 D/use-Rlog/RLOG-AT( 2281): AT& +CGREG: 0 D/use-Rlog/RLOG-AT( 2281): AT& #PSNT: 4 D/use-Rlog/RLOG-AT( 2281): AT& +CGEV: NW DETACH D/use-Rlog/RLOG-AT( 2281): AT& #QSS: 0 D/TelephonyManager( 2760): getLteOnCdmaMode=0 curVal=-1 product_type='' lteOnCdmaProductType='' D/TelephonyManager( 2760): getLteOnCdmaMode=0 curVal=-1 product_type='' lteOnCdmaProductType='' I/PhoneFactory( 2760): Network Mode set to 0 D/TelephonyManager( 2760): getLteOnCdmaMode=0 curVal=-1 product_type='' lteOnCdmaProductType='' I/PhoneFactory( 2760): lteOnCdma is 0 use SUBSCRIPTION_FROM_NV I/PhoneFactory( 2760): Cdma Subscription set to 1 D/RILJ ( 2760): RIL(context, preferredNetworkType=0 cdmaSubscription=1) D/RILJ ( 2760): Starting RILReceiver I/RILJ ( 2760): Connected to 'rild' socket I/RILC ( 2281): libril: new connection I/RILC ( 2281): RIL Daemon version: Telit android ril R2.00.04.rc5_HE910 D/RILJ ( 2760): [UNSL]& UNSOL_RIL_CONNECTED {8} D/RILJ ( 2760): [0000]& RADIO_POWER off D/RILJ ( 2760): [0001]& REQUEST_SET_PREFERRED_NETWORK_TYPE : 0 D/use-Rlog/RLOG-RIL( 2281): onRequest: RADIO_POWER D/use-Rlog/RLOG-AT( 2281): AT& AT+CFUN=4 D/RILJ ( 2760): [0002]& RIL_REQUEST_CDMA_SET_SUBSCRIPTION_SOURCE : 1 D/RILJ ( 2760): setCellInfoListRate:
D/RILJ ( 2760): [0003]& RIL_REQUEST_SET_CELL_INFO_LIST_RATE D/RILJ ( 2760): [UNSL]& UNSOL_RESPONSE_RADIO_STATE_CHANGED RADIO_ON D/RILJ ( 2760): [0004]& SCREEN_STATE: true D/RILJ ( 2760): [UNSL]& UNSOL_RESPONSE_RADIO_STATE_CHANGED RADIO_OFF D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: SET_PREFERRED_NETWORK_TYPE D/use-Rlog/RLOG-RIL( 2281): onRequest: CDMA_SET_SUBSCRIPTION_SOURCE D/use-Rlog/RLOG-RIL( 2281): onRequest: SET_UNSOL_CELL_INFO_LIST_RATE D/use-Rlog/RLOG-RIL( 2281): onRequest: SCREEN_STATE D/RILJ ( 2760): [0000]& RADIO_POWER D/RilRequest( 2760): [0001]& REQUEST_SET_PREFERRED_NETWORK_TYPE error: com.android.internal.telephony.CommandException: RADIO_NOT_AVAILABLE D/RilRequest( 2760): [0002]& RIL_REQUEST_CDMA_SET_SUBSCRIPTION_SOURCE error: com.android.internal.telephony.CommandException: RADIO_NOT_AVAILABLE D/RilRequest( 2760): [0003]& RIL_REQUEST_SET_CELL_INFO_LIST_RATE error: com.android.internal.telephony.CommandException: RADIO_NOT_AVAILABLE D/RilRequest( 2760): [0004]& SCREEN_STATE error: com.android.internal.telephony.CommandException: RADIO_NOT_AVAILABLE D/UiccController( 2760): Creating UiccController I/PhoneFactory( 2760): Creating GSMPhone D/PhoneBase( 2760): mDoesRilSendMultipleCallRing=true D/PhoneBase( 2760): mCallRingDelay=3000 D/RILJ ( 2760): setPhoneType=1 old value=0 D/SMSDispatcher( 2760): SMSDispatcher: ctor mSmsCapable=true format=3gpp mSmsReceiveDisabled=false mSmsSendDisabled=false D/DCT ( 2760): DCT.constructor D/Dcc ( 2760): E ctor D/Dcc ( 2760): X ctor D/DCT ( 2760): GsmDCT.constructor D/DCT ( 2760): applyNewState(default, true(true), true(false)) D/DCT ( 2760): trySetupData for type:default due to dependencyMet apnContext={mApnType=default mState=IDLE mWaitingApns={null} mWaitingApnsPermanentFailureCountDown=0 mApnSetting={null} mReason=dependencyMet mDataEnabled=true mDependencyMet=true} D/DCT ( 2760): trySetupData with mIsPsRestricted=false D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 1 - SIM not loaded D/DCT ( 2760): trySetupData: X apnContext not 'ready' retValue=false D/DCT ( 2760): applyNewState(mms, false(false), true(false)) D/DCT ( 2760): applyNewState(supl, false(false), true(false)) D/DCT ( 2760): applyNewState(hipri, false(false), true(false)) D/DCT ( 2760): applyNewState(fota, false(false), true(false)) D/DCT ( 2760): applyNewState(ims, false(false), true(false)) D/DCT ( 2760): applyNewState(cbs, false(false), true(false)) D/Dcc ( 2760): DccDefaultState: msg.what=EVENT_RIL_CONNECTED mRilVersion=8 D/IccCardProxy( 2760): Creating D/IccCardProxy( 2760): Broadcasting intent ACTION_SIM_STATE_CHANGED NOT_READY reason null D/IccCardProxy( 2760): Setting radio tech UMTS D/TelephonyManager( 2760): getLteOnCdmaMode=0 curVal=-1 product_type='' lteOnCdmaProductType='' D/IccCardProxy( 2760): updateQuietMode: 3GPP subscription -& newQuietMode=false D/IccCardProxy( 2760): updateQuietMode: QuietMode is false (app_type=1 isLteOnCdmaMode=false cdmaSource=-1) D/CallManager( 2760): registerPhone(GSM Handler (com.android.internal.telephony.PhoneProxy) {41b76a80}) D/RILJ ( 2760): [0005]& RADIO_POWER on D/use-Rlog/RLOG-RIL( 2281): onRequest: RADIO_POWER D/use-Rlog/RLOG-AT( 2281): AT& AT+CFUN=1 D/PHONE ( 2760): [ServiceState] setNullState=3 D/GsmSST ( 2760): [GsmSST] Poll ServiceState done: oldSS=[1 1 home null null null Unknown Unknown CSS not supported 0 0 RoamInd=0 DefRoamInd=0 EmergOnly=false] newSS=[3 3 home null null null Unknown Unknown CSS not supported -1 -1 RoamInd=-1 DefRoamInd=-1 EmergOnly=false] oldMaxDataCalls=1 mNewMaxDataCalls=1 oldReasonDataDenied=-1 mNewReasonDataDenied=-1 D/GsmSST ( 2760): [GsmSST] useDataRegStateForDataOnlyDevice: VoiceRegState=3 DataRegState=3 D/PHONE ( 2760): [ServiceState] setVoiceRegState=3 D/PHONE ( 2760): [ServiceState] setNullState=1 D/PHONE ( 2760): [ServiceState] setNullState=1 D/GsmSST ( 2760): [GsmSST] updateSpnDisplay: radio is off w/ showPlmn=false plmn=null D/GsmSST ( 2760): [GsmSST] updateSpnDisplay: changed sending intent rule=0 showPlmn='false' plmn='null' showSpn='false' spn='' D/GsmSST ( 2760): [GsmSST] operatorNumeric is null D/DCT ( 2760): get all active apn types D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:default] getApnSetting: apnSetting=null D/DCT ( 2760): handleMessage msg={ what=270369 when=-193ms obj=android.os.AsyncResult@41b84120 } D/DCT ( 2760): handleMessage msg={ what=270337 when=-171ms obj=android.os.AsyncResult@41b880b8 } D/DCT ( 2760): onRadioAvailable D/DCT ( 2760): overall state is IDLE D/DCT ( 2760): handleMessage msg={ what=270342 when=-170ms obj=android.os.AsyncResult@41b881a8 } D/DCT ( 2760): onRadioOffOrNotAvailable: is off and clean up all connections D/DCT ( 2760): cleanUpAllConnections: tearDown=false reason=radioTurnedOff D/DCT ( 2760): cleanUpConnection: E tearDown=false reason=radioTurnedOff apnContext={mApnType=fota mState=IDLE mWaitingApns={null} mWaitingApnsPermanentFailureCountDown=0 mApnSetting={null} mReason=radioTurnedOff mDataEnabled=false mDependencyMet=true} D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:fota] getApnSetting: apnSetting=null D/use-Rlog/RLOG-AT( 2281): AT& OK D/RILJ ( 2760): [UNSL]& UNSOL_RESPONSE_SIM_STATUS_CHANGED D/RILJ ( 2760): [UNSL]& UNSOL_RESPONSE_RADIO_STATE_CHANGED RADIO_ON D/DCT ( 2760): cleanUpConnection: X tearDown=false reason=radioTurnedOff apnContext={mApnType=fota mState=IDLE mWaitingApns={null} mWaitingApnsPermanentFailureCountDown=0 mApnSetting={null} mReason=radioTurnedOff mDataEnabled=false mDependencyMet=true} dcac=null D/DCT ( 2760): cleanUpConnection: E tearDown=false reason=radioTurnedOff apnContext={mApnType=supl mState=IDLE mWaitingApns={null} mWaitingApnsPermanentFailureCountDown=0 mApnSetting={null} mReason=radioTurnedOff mDataEnabled=false mDependencyMet=true} D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:supl] getApnSetting: apnSetting=null D/DCT ( 2760): cleanUpConnection: X tearDown=false reason=radioTurnedOff apnContext={mApnType=supl mState=IDLE mWaitingApns={null} mWaitingApnsPermanentFailureCountDown=0 mApnSetting={null} mReason=radioTurnedOff mDataEnabled=false mDependencyMet=true} dcac=null D/DCT ( 2760): cleanUpConnection: E tearDown=false reason=radioTurnedOff apnContext={mApnType=hipri mState=IDLE mWaitingApns={null} mWaitingApnsPermanentFailureCountDown=0 mApnSetting={null} mReason=radioTurnedOff mDataEnabled=false mDependencyMet=true} D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:hipri] getApnSetting: apnSetting=null D/DCT ( 2760): cleanUpConnection: X tearDown=false reason=radioTurnedOff apnContext={mApnType=hipri mState=IDLE mWaitingApns={null} mWaitingApnsPermanentFailureCountDown=0 mApnSetting={null} mReason=radioTurnedOff mDataEnabled=false mDependencyMet=true} dcac=null D/DCT ( 2760): cleanUpConnection: E tearDown=false reason=radioTurnedOff apnContext={mApnType=ims mState=IDLE mWaitingApns={null} mWaitingApnsPermanentFailureCountDown=0 mApnSetting={null} mReason=radioTurnedOff mDataEnabled=false mDependencyMet=true} D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:ims] getApnSetting: apnSetting=null D/DCT ( 2760): cleanUpConnection: X tearDown=false reason=radioTurnedOff apnContext={mApnType=ims mState=IDLE mWaitingApns={null} mWaitingApnsPermanentFailureCountDown=0 mApnSetting={null} mReason=radioTurnedOff mDataEnabled=false mDependencyMet=true} dcac=null D/DCT ( 2760): cleanUpConnection: E tearDown=false reason=radioTurnedOff apnContext={mApnType=default mState=IDLE mWaitingApns={null} mWaitingApnsPermanentFailureCountDown=0 mApnSetting={null} mReason=radioTurnedOff mDataEnabled=true mDependencyMet=true} D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:default] getApnSetting: apnSetting=null D/DCT ( 2760): cleanUpConnection: X tearDown=false reason=radioTurnedOff apnContext={mApnType=default mState=IDLE mWaitingApns={null} mWaitingApnsPermanentFailureCountDown=0 mApnSetting={null} mReason=radioTurnedOff mDataEnabled=true mDependencyMet=true} dcac=null D/DCT ( 2760): cleanUpConnection: E tearDown=false reason=radioTurnedOff apnContext={mApnType=mms mState=IDLE mWaitingApns={null} mWaitingApnsPermanentFailureCountDown=0 mApnSetting={null} mReason=radioTurnedOff mDataEnabled=false mDependencyMet=true} D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:mms] getApnSetting: apnSetting=null D/DCT ( 2760): cleanUpConnection: X tearDown=false reason=radioTurnedOff apnContext={mApnType=mms mState=IDLE mWaitingApns={null} mWaitingApnsPermanentFailureCountDown=0 mApnSetting={null} mReason=radioTurnedOff mDataEnabled=false mDependencyMet=true} dcac=null D/DCT ( 2760): cleanUpConnection: E tearDown=false reason=radioTurnedOff apnContext={mApnType=cbs mState=IDLE mWaitingApns={null} mWaitingApnsPermanentFailureCountDown=0 mApnSetting={null} mReason=radioTurnedOff mDataEnabled=false mDependencyMet=true} D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:cbs] getApnSetting: apnSetting=null D/DCT ( 2760): cleanUpConnection: X tearDown=false reason=radioTurnedOff apnContext={mApnType=cbs mState=IDLE mWaitingApns={null} mWaitingApnsPermanentFailureCountDown=0 mApnSetting={null} mReason=radioTurnedOff mDataEnabled=false mDependencyMet=true} dcac=null D/DCT ( 2760): stopNetStatPoll D/DCT ( 2760): stopDataStallAlarm: current tag=22463 mDataStallAlarmIntent=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:fota] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:supl] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:hipri] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:ims] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:mms] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:cbs] getApnSetting: apnSetting=null D/DCT ( 2760): handleMessage msg={ what=270345 when=-258ms obj=android.os.AsyncResult@41b88480 } D/DCT ( 2760): onDataConnectionDetached: stop polling and notify detached D/DCT ( 2760): stopNetStatPoll D/DCT ( 2760): stopDataStallAlarm: current tag=22464 mDataStallAlarmIntent=null D/DCT ( 2760): notifyDataConnection: reason=dataDetached D/DCT ( 2760): notifyDataConnection: type:default D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:default] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:fota] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:supl] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:hipri] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:ims] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:mms] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:cbs] getApnSetting: apnSetting=null D/DCT ( 2760): handleMessage msg={ what=270348 when=-275ms obj=android.os.AsyncResult@41b885d8 } D/DCT ( 2760): onRoamingOff D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:fota] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:supl] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:hipri] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:ims] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:mms] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:cbs] getApnSetting: apnSetting=null D/DCT ( 2760): setupDataOnConnectableApns: isConnectable() call trySetupData D/DCT ( 2760): trySetupData for type:default due to roamingOff apnContext={mApnType=default mState=IDLE mWaitingApns={null} mWaitingApnsPermanentFailureCountDown=0 mApnSetting={null} mReason=roamingOff mDataEnabled=true mDependencyMet=true} D/DCT ( 2760): trySetupData with mIsPsRestricted=false D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:fota] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:supl] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:hipri] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:ims] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:mms] getApnSetting: apnSetting=null D/DCT ( 2760): isDataAllowed: not allowed due to - gprs= 3 - SIM not loaded D/DCT ( 2760): [ApnContext:cbs] getApnSetting: apnSetting=null D/DCT ( 2760): trySetupData: X apnContext not 'ready' retValue=false D/RILJ ( 2760): [0006]& BASEBAND_VERSION D/RILJ ( 2760): [0007]& GET_IMEI D/RILJ ( 2760): [0008]& GET_IMEISV D/DebugService( 2760): DebugService DebugService: D/SipService( 2760): SipService: started! D/SipService( 2760): start: D/UiccController( 2760): Received EVENT_ICC_STATUS_CHANGED, calling getIccCardStatus D/RILJ ( 2760): [0009]& GET_SIM_STATUS D/RILJ ( 2760): [0010]& OPERATOR D/RILJ ( 2760): [0011]& DATA_REGISTRATION_STATE D/RILJ ( 2760): [0012]& VOICE_REGISTRATION_STATE D/RILJ ( 2760): [0013]& QUERY_NETWORK_SELECTION_MODE D/UiccController( 2760): Received EVENT_ICC_STATUS_CHANGED, calling getIccCardStatus D/RILJ ( 2760): [0014]& GET_SIM_STATUS D/RILJ ( 2760): [0015]& GET_CURRENT_CALLS D/RILJ ( 2760): [0016]& RIL_REQUEST_VOICE_RADIO_TECH D/RILJ ( 2760): [0017]& RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE D/SipBroadcastReceiver( 2760): SIP VOIP not supported: android.net.sip.SIP_SERVICE_UP D/RILJ ( 2760): NOTE: mReqWaiting is NOT 0 but13 at TIMEOUT, reset! There still msg waitng for response D/RILJ ( 2760): WAKE_LOCK_TIMEOUT mRequestList=13 D/RILJ ( 2760): 0: [5] RADIO_POWER D/RILJ ( 2760): 1: [6] BASEBAND_VERSION D/RILJ ( 2760): 2: [7] GET_IMEI D/RILJ ( 2760): 3: [8] GET_IMEISV D/RILJ ( 2760): 4: [9] GET_SIM_STATUS D/RILJ ( 2760): 5: [10] OPERATOR D/RILJ ( 2760): 6: [11] DATA_REGISTRATION_STATE D/RILJ ( 2760): 7: [12] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 8: [13] QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): 9: [14] GET_SIM_STATUS D/RILJ ( 2760): 10: [15] GET_CURRENT_CALLS D/RILJ ( 2760): 11: [16] RIL_REQUEST_VOICE_RADIO_TECH D/RILJ ( 2760): 12: [17] RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE D/use-Rlog/RLOG-AT( 2281): AT& #QSS: 2 D/use-Rlog/RLOG-AT( 2281): AT& +CREG: 2 D/RILJ ( 2760): [UNSL]& UNSOL_RESPONSE_VOICE_NETWORK_STATE_CHANGED D/RILJ ( 2760): [0018]& OPERATOR D/RILJ ( 2760): [0019]& DATA_REGISTRATION_STATE D/RILJ ( 2760): [0020]& VOICE_REGISTRATION_STATE D/RILJ ( 2760): [0021]& QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): NOTE: mReqWaiting is NOT 0 but4 at TIMEOUT, reset! There still msg waitng for response D/RILJ ( 2760): WAKE_LOCK_TIMEOUT mRequestList=17 D/RILJ ( 2760): 0: [5] RADIO_POWER D/RILJ ( 2760): 1: [6] BASEBAND_VERSION D/RILJ ( 2760): 2: [7] GET_IMEI D/RILJ ( 2760): 3: [8] GET_IMEISV D/RILJ ( 2760): 4: [9] GET_SIM_STATUS D/RILJ ( 2760): 5: [10] OPERATOR D/RILJ ( 2760): 6: [11] DATA_REGISTRATION_STATE D/RILJ ( 2760): 7: [12] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 8: [13] QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): 9: [14] GET_SIM_STATUS D/RILJ ( 2760): 10: [15] GET_CURRENT_CALLS D/RILJ ( 2760): 11: [16] RIL_REQUEST_VOICE_RADIO_TECH D/RILJ ( 2760): 12: [17] RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE D/RILJ ( 2760): 13: [18] OPERATOR D/RILJ ( 2760): 14: [19] DATA_REGISTRATION_STATE D/RILJ ( 2760): 15: [20] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 16: [21] QUERY_NETWORK_SELECTION_MODE D/use-Rlog/RLOG-AT( 2281): AT& AT+CPIN? D/use-Rlog/RLOG-AT( 2281): AT& +CPIN: READY D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT#PSNT=1 D/RILJ ( 2760): [UNSL]& UNSOL_RESPONSE_SIM_STATUS_CHANGED D/UiccController( 2760): Received EVENT_ICC_STATUS_CHANGED, calling getIccCardStatus D/RILJ ( 2760): [UNSL]& UNSOL_RESPONSE_RADIO_STATE_CHANGED RADIO_ON D/RILJ ( 2760): [0022]& GET_SIM_STATUS D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT+CSMS=1 D/use-Rlog/RLOG-AT( 2281): AT& +CSMS: 1,1,1 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT+CNMI=2,2,2,1,1 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: BASEBAND_VERSION D/use-Rlog/RLOG-AT( 2281): AT& AT+GMR D/RILJ ( 2760): [0005]& RADIO_POWER D/use-Rlog/RLOG-AT( 2281): AT& 12.00.025 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: GET_IMEI D/use-Rlog/RLOG-AT( 2281): AT& AT+CGSN D/RILJ ( 2760): [0006]& BASEBAND_VERSION 12.00.025 D/GSMPhone( 2760): Baseband version: 12.00.025 D/use-Rlog/RLOG-AT( 2281): AT& 590 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: GET_IMEISV D/use-Rlog/RLOG-RIL( 2281): onRequest: GET_SIM_STATUS D/RILJ ( 2760): [0007]& GET_IMEI D/RilRequest( 2760): [0008]& GET_IMEISV error: com.android.internal.telephony.CommandException: REQUEST_NOT_SUPPORTED D/use-Rlog/RLOG-AT( 2281): AT& +CGREG: 0 D/RILJ ( 2760): [UNSL]& UNSOL_RESPONSE_VOICE_NETWORK_STATE_CHANGED D/RILJ ( 2760): [0023]& OPERATOR D/RILJ ( 2760): [0024]& DATA_REGISTRATION_STATE D/RILJ ( 2760): [0025]& VOICE_REGISTRATION_STATE D/RILJ ( 2760): [0026]& QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): NOTE: mReqWaiting is NOT 0 but4 at TIMEOUT, reset! There still msg waitng for response D/RILJ ( 2760): WAKE_LOCK_TIMEOUT mRequestList=18 D/RILJ ( 2760): 0: [9] GET_SIM_STATUS D/RILJ ( 2760): 1: [10] OPERATOR D/RILJ ( 2760): 2: [11] DATA_REGISTRATION_STATE D/RILJ ( 2760): 3: [12] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 4: [13] QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): 5: [14] GET_SIM_STATUS D/RILJ ( 2760): 6: [15] GET_CURRENT_CALLS D/RILJ ( 2760): 7: [16] RIL_REQUEST_VOICE_RADIO_TECH D/RILJ ( 2760): 8: [17] RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE D/RILJ ( 2760): 9: [18] OPERATOR D/RILJ ( 2760): 10: [19] DATA_REGISTRATION_STATE D/RILJ ( 2760): 11: [20] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 12: [21] QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): 13: [22] GET_SIM_STATUS D/RILJ ( 2760): 14: [23] OPERATOR D/RILJ ( 2760): 15: [24] DATA_REGISTRATION_STATE D/RILJ ( 2760): 16: [25] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 17: [26] QUERY_NETWORK_SELECTION_MODE D/use-Rlog/RLOG-AT( 2281): AT& AT+CPIN? D/use-Rlog/RLOG-AT( 2281): AT& +CPIN: READY D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: OPERATOR D/use-Rlog/RLOG-AT( 2281): AT& AT+COPS=3,0;+COPS?;+COPS=3,0;+COPS?;+COPS=3,2;+COPS? D/RILJ ( 2760): [0009]& GET_SIM_STATUS IccCardState {CARDSTATE_PRESENT,PINSTATE_UNKNOWN,num_apps=1,gsm_id=0{APPTYPE_SIM,APPSTATE_RE ADY},cmda_id=8,ims_id=8} D/UiccController( 2760): Received EVENT_GET_ICC_STATUS_DONE D/UiccCard( 2760): Creating D/UiccCard( 2760): 1 applications D/UiccCardApplication( 2760): Creating UiccApp: {APPTYPE_SIM,APPSTATE_READY} W/VoiceMailConstants( 2760): Can't open /system/etc/voicemail-conf.xml W/SpnOverride( 2760): Can not open /system/etc/spn-conf.xml D/SIMRecords( 2760): [SIMRecords] SIMRecords: onRadioOffOrNotAvailable set 'gsm.sim.operator.numeric' to operator=null D/UiccCardApplication( 2760): Notifying 1 registrant: READY D/use-Rlog/RLOG-AT( 2281): AT& +COPS: 0 D/use-Rlog/RLOG-AT( 2281): AT& +COPS: 0 D/use-Rlog/RLOG-AT( 2281): AT& +COPS: 0 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: DATA_REGISTRATION_STATE D/use-Rlog/RLOG-AT( 2281): AT& AT#PSNT? D/RILJ ( 2760): [0010]& OPERATOR {null, , null} D/SIMRecords( 2760): [SIMRecords] getOperatorNumeric: IMSI == null D/SIMRecords( 2760): [SIMRecords] SIMRecords X ctor this=SimRecords: mDestroyed=false mContext=com.android.phone.PhoneGlobals@41b6ab08 mCi=com.android.internal.telephony.RIL@41b6ecc8 mFh=Handler (com.android.internal.telephony.uicc.SIMFileHandler) {41bda0e0} mParentApp=com.android.internal.telephony.uicc.UiccCardApplication@41bd8ff8 recordsLoadedRegistrants=android.os.RegistrantList@41bdc8d8 mImsiReadyRegistrants=android.os.RegistrantList@41bdc900 mRecordsEventsRegistrants=android.os.RegistrantList@41bdc928 mNewSmsRegistrants=android.os.RegistrantList@41bdc950 mNetworkSelectionModeAutomaticRegistrants=android.os.RegistrantList@41bdc978 recordsToLoad=0 adnCache=Handler (com.android.internal.telephony.uicc.AdnRecordCache) {41bdca78} recordsRequested=false iccid=null msisdn=null msisdnTag=null voiceMailNum=null voiceMailTag=null newVoiceMailNum=null newVoiceMailTag=null isVoiceMailFixed=false countVoiceMessages=0 mImsi=null mncLength=-1 mailboxIndex=0 spn=null mVmConfigcom.android.internal.telephony.uicc.VoiceMailConstants@41bdd228 mSpnOverride=mSpnOverride callForwardingEnabled=false spnState=null mCphsInfo=null mCspPlmnEnabled=true efMWIS=null efCPHS_MWI=null mEfCff=null mEfCfis=null getOperatorNumeric=null D/RILJ ( 2760): [0027]& QUERY_FACILITY_LOCK [FD 7 null] D/RILJ ( 2760): [0028]& QUERY_FACILITY_LOCK [SC 7 null] D/UiccCardApplication( 2760): Notifying 1 registrant: READY D/CAT ( 2760): CatService: Running CAT service. STK app installed:false D/CAT ( 2760): CatService: NEW sInstance E/UiccCard( 2760): App index 8 is invalid since there are no applications E/UiccCard( 2760): App index 8 is invalid since there are no applications D/UiccCard( 2760): update: radioState=RADIO_ON mLastRadioState=RADIO_UNAVAILABLE D/UiccController( 2760): Notifying IccChangedRegistrants D/SIMRecords( 2760): [SIMRecords] fetchSimRecords 0 D/RILJ ( 2760): [0029]& getIMSI: GET_IMSI aid: null D/RILJ ( 2760): [0030]& iccIO: SIM_IO 0xc0 0x2fe2 path: 3F00,0,0,15 aid: null D/RILJ ( 2760): [0031]& iccIO: SIM_IO 0xc0 0x6f40 path: 3F007F10,0,0,15 aid: null D/RILJ ( 2760): [0032]& iccIO: SIM_IO 0xc0 0x6fc9 path: 3F007F20,0,0,15 aid: null D/RILJ ( 2760): [0033]& iccIO: SIM_IO 0xc0 0x6fad path: 3F007F20,0,0,15 aid: null D/RILJ ( 2760): [0034]& iccIO: SIM_IO 0xc0 0x6fca path: 3F007F20,0,0,15 aid: null D/RILJ ( 2760): [0035]& iccIO: SIM_IO 0xc0 0x6f11 path: 3F007F20,0,0,15 aid: null D/RILJ ( 2760): [0036]& iccIO: SIM_IO 0xc0 0x6fcb path: 3F007F20,0,0,15 aid: null D/RILJ ( 2760): [0037]& iccIO: SIM_IO 0xc0 0x6f13 path: 3F007F20,0,0,15 aid: null D/RILJ ( 2760): [0038]& iccIO: SIM_IO 0xc0 0x6f46 path: 3F007F20,0,0,15 aid: null D/RILJ ( 2760): [0039]& iccIO: SIM_IO 0xc0 0x6fcd path: 3F007F20,0,0,15 aid: null D/RILJ ( 2760): [0040]& iccIO: SIM_IO 0xc0 0x6fc5 path: 3F007F20,0,0,15 aid: null D/use-Rlog/RLOG-AT( 2281): AT& #PSNT: 1,3 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT+CGREG? D/RILJ ( 2760): [0041]& iccIO: SIM_IO 0xc0 0x6f38 path: 3F007F20,0,0,15 aid: null D/RILJ ( 2760): [0042]& iccIO: SIM_IO 0xc0 0x6f16 path: 3F007F20,0,0,15 aid: null D/RILJ ( 2760): [0043]& iccIO: SIM_IO 0xc0 0x6f15 path: 3F007F20,0,0,15 aid: null D/RILJ ( 2760): [0044]& iccIO: SIM_IO 0xc0 0x6f3e path: 3F007F20,0,0,15 aid: null D/SIMRecords( 2760): [SIMRecords] fetchSimRecords 16 requested: true D/CAT ( 2760): CatService: SIM ready. Reporting STK service running now... D/RILJ ( 2760): [0045]& RIL_REQUEST_REPORT_STK_SERVICE_IS_RUNNING D/GSMPhone( 2760): [GSMPhone] New Uicc application found D/GsmSST ( 2760): [GsmSST] New card found D/UiccCardApplication( 2760): Notifying 1 registrant: READY D/DCT ( 2760): handleMessage msg={ what=270369 when=-16ms obj=android.os.AsyncResult@41be8590 } D/DCT ( 2760): New records found D/IccCardProxy( 2760): Icc changed. Reregestering. D/UiccCardApplication( 2760): Notifying 1 registrant: READY D/IccCardProxy( 2760): Broadcasting intent ACTION_SIM_STATE_CHANGED READY reason null D/RILJ ( 2760): setCurrentPreferredNetworkType: 0 D/RILJ ( 2760): [0046]& REQUEST_SET_PREFERRED_NETWORK_TYPE : 0 D/RILJ ( 2760): [0047]& SET_NETWORK_SELECTION_AUTOMATIC D/RILJ ( 2760): [0048]& OPERATOR D/use-Rlog/RLOG-AT( 2281): AT& +CGREG: 2,0 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT#CEERNET D/RILJ ( 2760): [0049]& DATA_REGISTRATION_STATE D/RILJ ( 2760): [0050]& VOICE_REGISTRATION_STATE D/RILJ ( 2760): [0051]& QUERY_NETWORK_SELECTION_MODE D/use-Rlog/RLOG-AT( 2281): AT& #CEERNET: 0 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: VOICE_REGISTRATION_STATE D/use-Rlog/RLOG-AT( 2281): AT& AT#PSNT? D/RILJ ( 2760): [0011]& DATA_REGISTRATION_STATE {0, null, null, 9, 0, 1} D/use-Rlog/RLOG-AT( 2281): AT& #PSNT: 1,3 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT+CREG? D/use-Rlog/RLOG-AT( 2281): AT& +CREG: 2,2 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT#CEERNET D/use-Rlog/RLOG-AT( 2281): AT& #CEERNET: 0 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: QUERY_NETWORK_SELECTION_MODE D/use-Rlog/RLOG-AT( 2281): AT& AT+COPS? D/RILJ ( 2760): [0012]& VOICE_REGISTRATION_STATE {2, null, null, 9, null, null, null, null, null, null, null, null, null, 0, null} D/use-Rlog/RLOG-AT( 2281): AT& +COPS: 0 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: GET_SIM_STATUS D/RILJ ( 2760): [0013]& QUERY_NETWORK_SELECTION_MODE {0} D/RILJ ( 2760): NOTE: mReqWaiting is NOT 0 but22 at TIMEOUT, reset! There still msg waitng for response D/RILJ ( 2760): WAKE_LOCK_TIMEOUT mRequestList=38 D/RILJ ( 2760): 0: [14] GET_SIM_STATUS D/RILJ ( 2760): 1: [15] GET_CURRENT_CALLS D/RILJ ( 2760): 2: [16] RIL_REQUEST_VOICE_RADIO_TECH D/RILJ ( 2760): 3: [17] RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE D/RILJ ( 2760): 4: [18] OPERATOR D/RILJ ( 2760): 5: [19] DATA_REGISTRATION_STATE D/RILJ ( 2760): 6: [20] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 7: [21] QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): 8: [22] GET_SIM_STATUS D/RILJ ( 2760): 9: [23] OPERATOR D/RILJ ( 2760): 10: [24] DATA_REGISTRATION_STATE D/RILJ ( 2760): 11: [25] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 12: [26] QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): 13: [27] QUERY_FACILITY_LOCK D/RILJ ( 2760): 14: [28] QUERY_FACILITY_LOCK D/RILJ ( 2760): 15: [29] GET_IMSI D/RILJ ( 2760): 16: [30] SIM_IO D/RILJ ( 2760): 17: [31] SIM_IO D/RILJ ( 2760): 18: [32] SIM_IO D/RILJ ( 2760): 19: [33] SIM_IO D/RILJ ( 2760): 20: [34] SIM_IO D/RILJ ( 2760): 21: [35] SIM_IO D/RILJ ( 2760): 22: [36] SIM_IO D/RILJ ( 2760): 23: [37] SIM_IO D/RILJ ( 2760): 24: [38] SIM_IO D/RILJ ( 2760): 25: [39] SIM_IO D/RILJ ( 2760): 26: [40] SIM_IO D/RILJ ( 2760): 27: [41] SIM_IO D/RILJ ( 2760): 28: [42] SIM_IO D/RILJ ( 2760): 29: [43] SIM_IO D/RILJ ( 2760): 30: [44] SIM_IO D/RILJ ( 2760): 31: [45] RIL_REQUEST_REPORT_STK_SERVICE_IS_RUNNING D/RILJ ( 2760): 32: [46] REQUEST_SET_PREFERRED_NETWORK_TYPE D/RILJ ( 2760): 33: [47] SET_NETWORK_SELECTION_AUTOMATIC D/RILJ ( 2760): 34: [48] OPERATOR D/RILJ ( 2760): 35: [49] DATA_REGISTRATION_STATE D/RILJ ( 2760): 36: [50] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 37: [51] QUERY_NETWORK_SELECTION_MODE D/use-Rlog/RLOG-AT( 2281): AT& +CREG: 1,&A53F&,& D/use-Rlog/RLOG-AT( 2281): AT& #PSNT: 3 D/RILJ ( 2760): [UNSL]& UNSOL_RESPONSE_VOICE_NETWORK_STATE_CHANGED D/RILJ ( 2760): [UNSL]& UNSOL_RESPONSE_VOICE_NETWORK_STATE_CHANGED D/RILJ ( 2760): [0052]& OPERATOR D/RILJ ( 2760): [0053]& DATA_REGISTRATION_STATE D/RILJ ( 2760): [0054]& VOICE_REGISTRATION_STATE D/RILJ ( 2760): [0055]& QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): [0056]& OPERATOR D/RILJ ( 2760): [0057]& DATA_REGISTRATION_STATE D/RILJ ( 2760): [0058]& VOICE_REGISTRATION_STATE D/RILJ ( 2760): [0059]& QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): NOTE: mReqWaiting is NOT 0 but8 at TIMEOUT, reset! There still msg waitng for response D/RILJ ( 2760): WAKE_LOCK_TIMEOUT mRequestList=46 D/RILJ ( 2760): 0: [14] GET_SIM_STATUS D/RILJ ( 2760): 1: [15] GET_CURRENT_CALLS D/RILJ ( 2760): 2: [16] RIL_REQUEST_VOICE_RADIO_TECH D/RILJ ( 2760): 3: [17] RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE D/RILJ ( 2760): 4: [18] OPERATOR D/RILJ ( 2760): 5: [19] DATA_REGISTRATION_STATE D/RILJ ( 2760): 6: [20] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 7: [21] QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): 8: [22] GET_SIM_STATUS D/RILJ ( 2760): 9: [23] OPERATOR D/RILJ ( 2760): 10: [24] DATA_REGISTRATION_STATE D/RILJ ( 2760): 11: [25] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 12: [26] QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): 13: [27] QUERY_FACILITY_LOCK D/RILJ ( 2760): 14: [28] QUERY_FACILITY_LOCK D/RILJ ( 2760): 15: [29] GET_IMSI D/RILJ ( 2760): 16: [30] SIM_IO D/RILJ ( 2760): 17: [31] SIM_IO D/RILJ ( 2760): 18: [32] SIM_IO D/RILJ ( 2760): 19: [33] SIM_IO D/RILJ ( 2760): 20: [34] SIM_IO D/RILJ ( 2760): 21: [35] SIM_IO D/RILJ ( 2760): 22: [36] SIM_IO D/RILJ ( 2760): 23: [37] SIM_IO D/RILJ ( 2760): 24: [38] SIM_IO D/RILJ ( 2760): 25: [39] SIM_IO D/RILJ ( 2760): 26: [40] SIM_IO D/RILJ ( 2760): 27: [41] SIM_IO D/RILJ ( 2760): 28: [42] SIM_IO D/RILJ ( 2760): 29: [43] SIM_IO D/RILJ ( 2760): 30: [44] SIM_IO D/RILJ ( 2760): 31: [45] RIL_REQUEST_REPORT_STK_SERVICE_IS_RUNNING D/RILJ ( 2760): 32: [46] REQUEST_SET_PREFERRED_NETWORK_TYPE D/RILJ ( 2760): 33: [47] SET_NETWORK_SELECTION_AUTOMATIC D/RILJ ( 2760): 34: [48] OPERATOR D/RILJ ( 2760): 35: [49] DATA_REGISTRATION_STATE D/RILJ ( 2760): 36: [50] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 37: [51] QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): 38: [52] OPERATOR D/RILJ ( 2760): 39: [53] DATA_REGISTRATION_STATE D/RILJ ( 2760): 40: [54] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 41: [55] QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): 42: [56] OPERATOR D/RILJ ( 2760): 43: [57] DATA_REGISTRATION_STATE D/RILJ ( 2760): 44: [58] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 45: [59] QUERY_NETWORK_SELECTION_MODE D/use-Rlog/RLOG-AT( 2281): AT& +CGREG: 1,&A53F&,&,&02& D/RILJ ( 2760): [UNSL]& UNSOL_RESPONSE_VOICE_NETWORK_STATE_CHANGED D/RILJ ( 2760): [0060]& OPERATOR D/RILJ ( 2760): [0061]& DATA_REGISTRATION_STATE D/RILJ ( 2760): [0062]& VOICE_REGISTRATION_STATE D/RILJ ( 2760): [0063]& QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): NOTE: mReqWaiting is NOT 0 but4 at TIMEOUT, reset! There still msg waitng for response D/RILJ ( 2760): WAKE_LOCK_TIMEOUT mRequestList=50 D/RILJ ( 2760): 0: [14] GET_SIM_STATUS D/RILJ ( 2760): 1: [15] GET_CURRENT_CALLS D/RILJ ( 2760): 2: [16] RIL_REQUEST_VOICE_RADIO_TECH D/RILJ ( 2760): 3: [17] RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE D/RILJ ( 2760): 4: [18] OPERATOR D/RILJ ( 2760): 5: [19] DATA_REGISTRATION_STATE D/RILJ ( 2760): 6: [20] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 7: [21] QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): 8: [22] GET_SIM_STATUS D/RILJ ( 2760): 9: [23] OPERATOR D/RILJ ( 2760): 10: [24] DATA_REGISTRATION_STATE D/RILJ ( 2760): 11: [25] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 12: [26] QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): 13: [27] QUERY_FACILITY_LOCK D/RILJ ( 2760): 14: [28] QUERY_FACILITY_LOCK D/RILJ ( 2760): 15: [29] GET_IMSI D/RILJ ( 2760): 16: [30] SIM_IO D/RILJ ( 2760): 17: [31] SIM_IO D/RILJ ( 2760): 18: [32] SIM_IO D/RILJ ( 2760): 19: [33] SIM_IO D/RILJ ( 2760): 20: [34] SIM_IO D/RILJ ( 2760): 21: [35] SIM_IO D/RILJ ( 2760): 22: [36] SIM_IO D/RILJ ( 2760): 23: [37] SIM_IO D/RILJ ( 2760): 24: [38] SIM_IO D/RILJ ( 2760): 25: [39] SIM_IO D/RILJ ( 2760): 26: [40] SIM_IO D/RILJ ( 2760): 27: [41] SIM_IO D/RILJ ( 2760): 28: [42] SIM_IO D/RILJ ( 2760): 29: [43] SIM_IO D/RILJ ( 2760): 30: [44] SIM_IO D/RILJ ( 2760): 31: [45] RIL_REQUEST_REPORT_STK_SERVICE_IS_RUNNING D/RILJ ( 2760): 32: [46] REQUEST_SET_PREFERRED_NETWORK_TYPE D/RILJ ( 2760): 33: [47] SET_NETWORK_SELECTION_AUTOMATIC D/RILJ ( 2760): 34: [48] OPERATOR D/RILJ ( 2760): 35: [49] DATA_REGISTRATION_STATE D/RILJ ( 2760): 36: [50] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 37: [51] QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): 38: [52] OPERATOR D/RILJ ( 2760): 39: [53] DATA_REGISTRATION_STATE D/RILJ ( 2760): 40: [54] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 41: [55] QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): 42: [56] OPERATOR D/RILJ ( 2760): 43: [57] DATA_REGISTRATION_STATE D/RILJ ( 2760): 44: [58] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 45: [59] QUERY_NETWORK_SELECTION_MODE D/RILJ ( 2760): 46: [60] OPERATOR D/RILJ ( 2760): 47: [61] DATA_REGISTRATION_STATE D/RILJ ( 2760): 48: [62] VOICE_REGISTRATION_STATE D/RILJ ( 2760): 49: [63] QUERY_NETWORK_SELECTION_MODE D/use-Rlog/RLOG-AT( 2281): AT& AT+CPIN? D/use-Rlog/RLOG-AT( 2281): AT& +CPIN: READY D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: GET_CURRENT_CALLS D/use-Rlog/RLOG-AT( 2281): AT& AT+CLCC D/RILJ ( 2760): [0014]& GET_SIM_STATUS IccCardState {CARDSTATE_PRESENT,PINSTATE_UNKNOWN,num_apps=1,gsm_id=0{APPTYPE_SIM,APPSTATE_RE ADY},cmda_id=8,ims_id=8} D/UiccController( 2760): Received EVENT_GET_ICC_STATUS_DONE D/UiccCard( 2760): 1 applications D/UiccCardApplication( 2760): APPTYPE_SIM update. New {APPTYPE_SIM,APPSTATE_READY} D/CAT ( 2760): CatService: Return current sInstance E/UiccCard( 2760): App index 8 is invalid since there are no applications E/UiccCard( 2760): App index 8 is invalid since there are no applications D/UiccCard( 2760): update: radioState=RADIO_ON mLastRadioState=RADIO_ON D/UiccController( 2760): Notifying IccChangedRegistrants D/DCT ( 2760): handleMessage msg={ what=270369 when=0 obj=android.os.AsyncResult@41b52978 } D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: OPERATOR D/use-Rlog/RLOG-AT( 2281): AT& AT+COPS=3,0;+COPS?;+COPS=3,0;+COPS?;+COPS=3,2;+COPS? D/RILJ ( 2760): [0015]& GET_CURRENT_CALLS D/RILJ ( 2760): [0016]& RIL_REQUEST_VOICE_RADIO_TECH {3} D/RILJ ( 2760): [0017]& RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE {0} D/PhoneProxy( 2760): [PhoneProxy] Ignoring voice radio technology changed message. newVoiceRadioTech = 3 Active Phone = GSM D/CdmaSSM ( 2760): CDMA_SUBSCRIPTION_SOURCE event = 2 D/CdmaSSM ( 2760): Subscription Source Changed : 1 && 0 D/TelephonyManager( 2760): getLteOnCdmaMode=0 curVal=-1 product_type='' lteOnCdmaProductType='' D/IccCardProxy( 2760): updateQuietMode: 3GPP subscription -& newQuietMode=false D/IccCardProxy( 2760): updateQuietMode: QuietMode is false (app_type=1 isLteOnCdmaMode=false cdmaSource=-1) D/use-Rlog/RLOG-AT( 2281): AT& +COPS: 0,0,&CHN-UNICOM&,2 D/use-Rlog/RLOG-AT( 2281): AT& +COPS: 0,0,&CHN-UNICOM&,2 D/use-Rlog/RLOG-AT( 2281): AT& +COPS: 0,2,&46001&,2 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: DATA_REGISTRATION_STATE D/use-Rlog/RLOG-AT( 2281): AT& AT#PSNT? D/RILJ ( 2760): [0018]& OPERATOR {CHN-UNICOM, , 46001} D/use-Rlog/RLOG-AT( 2281): AT& #PSNT: 1,3 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT+CGREG? D/use-Rlog/RLOG-AT( 2281): AT& +CGREG: 2,1,&A53F&,&,&02& D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: VOICE_REGISTRATION_STATE D/use-Rlog/RLOG-AT( 2281): AT& AT#PSNT? D/RILJ ( 2760): [0019]& DATA_REGISTRATION_STATE {1, a53f, , 0, 1} D/use-Rlog/RLOG-AT( 2281): AT& #PSNT: 1,3 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-AT( 2281): AT& AT+CREG? D/use-Rlog/RLOG-AT( 2281): AT& +CREG: 2,1,&A53F&,& D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: QUERY_NETWORK_SELECTION_MODE D/use-Rlog/RLOG-AT( 2281): AT& AT+COPS? D/RILJ ( 2760): [0020]& VOICE_REGISTRATION_STATE {1, a53f, , null, null, null, null, null, null, null, null, null, 0, null} D/use-Rlog/RLOG-AT( 2281): AT& +COPS: 0,2,&46001&,2 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: GET_SIM_STATUS D/RILJ ( 2760): [0021]& QUERY_NETWORK_SELECTION_MODE {0} D/use-Rlog/RLOG-AT( 2281): AT& AT+CPIN? D/use-Rlog/RLOG-AT( 2281): AT& +CPIN: READY D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: OPERATOR D/use-Rlog/RLOG-AT( 2281): AT& AT+COPS=3,0;+COPS?;+COPS=3,0;+COPS?;+COPS=3,2;+COPS? D/RILJ ( 2760): [0022]& GET_SIM_STATUS IccCardState {CARDSTATE_PRESENT,PINSTATE_UNKNOWN,num_apps=1,gsm_id=0{APPTYPE_SIM,APPSTATE_RE ADY},cmda_id=8,ims_id=8} D/UiccController( 2760): Received EVENT_GET_ICC_STATUS_DONE D/UiccCard( 2760): 1 applications D/UiccCardApplication( 2760): APPTYPE_SIM update. New {APPTYPE_SIM,APPSTATE_READY} D/CAT ( 2760): CatService: Return current sInstance E/UiccCard( 2760): App index 8 is invalid since there are no applications E/UiccCard( 2760): App index 8 is invalid since there are no applications D/UiccCard( 2760): update: radioState=RADIO_ON mLastRadioState=RADIO_ON D/UiccController( 2760): Notifying IccChangedRegistrants D/DCT ( 2760): handleMessage msg={ what=270369 when=0 obj=android.os.AsyncResult@41bbc910 } D/use-Rlog/RLOG-AT( 2281): AT& +COPS: 0,0,&CHN-UNICOM&,2 D/use-Rlog/RLOG-AT( 2281): AT& +COPS: 0,0,&CHN-UNICOM&,2 D/use-Rlog/RLOG-AT( 2281): AT& +COPS: 0,2,&46001&,2 D/use-Rlog/RLOG-AT( 2281): AT& OK D/use-Rlog/RLOG-RIL( 2281): onRequest: DATA_REGISTRATION_STATE D/use-Rlog/RLOG-AT( 2281): AT& AT#PSNT? D/RILJ ( 2760): [0023]& OPERATOR {CHN-UNICOM, , 46001} D

我要回帖

更多关于 战地3 kernel32.dll 的文章

 

随机推荐