如何使MID中的G-Sensor起效果

简介: /kernel$ make  menuconfig 进入如下界面 进入 然后选择:Input device support--> 再选择handle gsensor,compass,gyroscope,lsensor psensor e...

/kernel$ make  menuconfig

进入如下界面



进入

然后选择:Input device support-->



再选择handle gsensor,compass,gyroscope,lsensor psensor etc -->



继续选择g_sensor device support-->



由于机器的固件和驱动不同,我选择的是于机器匹配的 gsensor mac6255



配置好后 一步一步的退出  最后选择yes 保存刚才的配置


之后退回到/kernel目录下  输入命令

$ make kernel.img –j4

重新进行编译

生成的固件在sdk_root/kernel/kernel.img


将生产的kernel.img 拖到 RKTools\RK292xDevelopTool\rockdev\Image下


然后点击RKTools\RK292xDevelopTool\rockdev 下的mkupdate.bat批处理文件

在该目录下生成一个新的update.img文件




之后重新捎入到MID平板电脑中

使用RKBatchTool.exe

在目录中找到update.img文件进行刷机




之后连接平板电脑  点击升级 即可完成刷机






相关文章
|
9月前
error C2040: ‘n‘ : ‘int [1000]‘ differs in levels of indirection from ‘int ‘
error C2040: ‘n‘ : ‘int [1000]‘ differs in levels of indirection from ‘int ‘
82 0
|
算法
LeetCode 363. Max Sum of Rect No Larger Than K
给定一个非空二维矩阵 matrix 和一个整数 k,找到这个矩阵内部不大于 k 的最大矩形和。
76 0
LeetCode 363. Max Sum of Rect No Larger Than K
|
Android开发
|
SQL
MID() 函数
MID() 函数
75 1
Low Elements--AT
题目描述 Given is a permutation P1,…,PN of 1,…,N. Find the number of integers i (1≤i≤N) that satisfy the following condition: ·For any integer j (1≤j≤i), Pi≤Pj. Constraints ·1≤N≤2×105 ·P1,…,PN is a permutation of 1,…,N. ·All values in input are integers.
81 0
|
人工智能
Rem of Sum is Num——UPC
题目描述 Given are a sequence of N positive integers A1,A2,…,AN, and a positive integer K. Find the number of non-empty contiguous subsequences in A such that the remainder when dividing the sum of its elements by K is equal to the number of its elements.
91 0