Log的抓取:
a、手机软件抓取log:高通平台下,eng版本会有QTI logkit(手机APK)抓取log的工具(user版本使用小瓢虫log tool),录制完log后,在电脑cmd界面下敲入如下命令,把log报存在本地:adb pull /storage/emulated/0/Android/data/com.qualcomm.qti.logkit/files/logdata C:\Users\W010003522\Desktop
b、如果要抓取lk log,或不能出现开机界面,可以用串口线抓取UART log。连接上串口后(设置波特率为115200),可以在XSHELL终端打印出串口信息,也可以保存到本地。
c、使用adb命令抓取:adb shell dmesg -w | findstr "...",在Windows cmd下输入即可,dmesg -w 表示可以实时抓取log。
d、logcat -b all(kernel) | grep -E 'Paul|kpdpwr|mIsScreenOn' //-E表示使用正则表达式处理‘’内的内容,logcat可以抓取到上层的log。对于User版本也只能使用logcat。或者直接adb logcat -b all (kernel) > C:\Users\W010003522\Desktop\logcat1.txt(建立文本文档,桌面直接拉进来)
adb 扩展:TP调试技巧,adb shell input
是用来向设备发送模拟操作的命令,可以adb shell input –help查看详细信息。示例:adb shell input keyevent "KEYCODE_POWER" && adb shell input swipe 360 900 360 300 && adb shell input swipe 200 720 600 720(实现power key,上滑,左滑的操作)
Lcd录屏操作:adb shell screenrecord --time-limit 10 /sdcard/demo.mp4
(10表示录制10s)
e、代码部分镜像更新
使用fastboot 模式进行更新。
开机状态下直接进入fastboot模式:adb reboot bootloader
fastboot oem enable-unlock-once 对user版本解锁
fastboot flash modem Y:\ NON-HLOS.bin 和下面的adsp同步使用验证sensor。
fastboot flash dsp Y:\adspso.bin 对adsp进行单编后可以直接放在手机上验证
fastboot flash vendor Y:\vendor.img 更新vendor镜像。
fastboot flash boot X:\boot.img 更新kernel生成的镜像文件
fastboot flash aboot X:\ emmc_appsboot.mbn 更新lk生成的镜像文件
fastboot reboot 在fastboot 模式下重启
user版本开不了机进入adb的方式:
fastboot oem enable-unlock-once
fastboot flash userdata userdata.img(把手机内相应的版本的userdata.img拷贝到相应的目录下)
fastboot oem enable-debug-once
fastboot continue