ezinterruptbar命令怎么用,下下来全是英文 求人截图交。追...

<i itemprop="interactionCount" content="UserDownloads:
安装后,您可能在通知栏看到不明来源的广告信息,影响您的使用体验。
EZ留言 截图
EZ留言 历史版本
EZ留言 使用技巧
EZ留言 应用内最新内容
5467 万人安装
63 万人安装
45 万人安装
814 万人安装
702 万人安装
392 万人安装
417 万人安装
794 万人安装
407 万人安装
247 万人安装
6.1 亿人安装
6.4 亿人安装
2.6 亿人安装
6.3 亿人安装
9336 万人安装
4.7 亿人安装
5.8 亿人安装
8901 万人安装
2.4 亿人安装
2.4 亿人安装
我们的产品
豌豆实验室
帮助与支持
24小时客服电话
除非特别注明,应用程序由第三方市场提供,豌豆荚仅根据你的指令提供搜索结果链接,与出处无关,详情请参阅
扫一扫安装豌豆荚安卓客户端USB2.0学习笔记连载(五):EZ-USB重要寄存器的配置
来源:博客园
本篇博客主要讲解EZ-USB一些重要寄存器的配置,首先对于本篇博客所讲的内容,读者应该到官网上去下载相关的手册,其中包括《EZ-USB Technical Reference Manual》,《Dvk Users Guide》,《CY7C68013A中英文数据手册》,此外还应去Cypress官网下载一个应用笔记,如下图所示:&#13;
上面资料中《EZ-USB Technical Reference Manual》包含了需要配置的寄存器信息和一些配置信息,比较重要。《CY7C68013A中英文数据手册》讲解了CY7C68013的一些电气特性以及一些参数信息比较重要。《Dvk Users Guide》介绍了官网提供的例程如何调试以及硬件如何被PC机识别等关键信息,比较重要。《AN61345》介绍了FPGA和FX2LP使用Slave FIFO模式下的配置和调试信息,比较重要。&#13;有了上述手册之后,我们首先打开《AN61345》里面所讲的内容,这篇笔记里面介绍了使用USB CY7C68013的slave FIFO模式应该如何去配置。&#13;&#13;
上图是典型的FX2LP和FPGA的通信示意图,对于GPIF接口而言,是让FX2LP芯片作为主设备,提供给外部设备所需要的驱动信号,而Slave FIFO模式是FX2LP作为从设备,负责数据的传输,而外部设备是主设备,负责传感器的驱动以及数据的产生。所以我们采用的方案架构是Slave FIFO模式,让FPGA作为主设备。&#13;&#13;&#13;
上面两个图是FPGA 和FX2LP芯片进行通信所需要的信号,之前笔者以及提及过了,这里不再赘述。&#13;
对于USB的传输方式,主要包括中断(interrupt),块传输(bulk),同步(Isochronous),控制(control),其中bulk传输比较重要,比较常用,所以必须要掌握。&#13;&#13;&#13; &#13;
打开 《Dvk Users Guide》后,在12页给出了USB 主函数框架的示意图,如上图所示。首先上电之后,初始化各状态变量,然后对各变量进行初始化赋值。再使能中断。&#13;
那么对于上电复位之后,需要初始化一些寄存器,在《AN61345》中的第8页已经给出了一些提示。&#13;&#13;&#13;&#13;
关于相关寄存器的具体说明,可以查看手册《EZ-USB Technical Reference Manual》。所有寄存器的配置也是完成CY7C68013内部结构所需要的配置,如下图所示。&#13;&#13; 1.8051内核工作寄存器 CPUCS(page338)&#13;
CPUCS = 0x12;
//48MHZ CLKOUT ENALBE,时钟不反向,CLKOUT PIN驱动,有时钟输出;&#13;2.IFCLK引脚的相关配置 IFCONFIG(page339)&#13;
IFCONFIG =0x03; //选择为外部时钟,且时钟频率为30MHz,且为同步slaveFIFO模式,输入IFCLK(5~48MHz)()。&#13;3.FIFO深度控制及数量和方向选择 EPXFG深度配置(page352)&#13;
选择FIFO的数量以及FIFO的深度为512,位宽为8位;由于笔者设计的板卡中只用到了FIFO2,也就是EP2,深度为512 ,位宽为8位。其他FIFO暂时用不到。&#13;EP2CFG = 0xE0;
// disabled... &#13;EP4CFG = 0x60;
// disabled... &#13;EP6CFG = 0x60;
// disabled...
&#13;EP8CFG = 0x60;
// disabled...&#13;4.FIFO位宽设置 EPXFIFOCFG深度配置(page353)&#13;RAW,Gray 模式的数据位输出为8bit。&#13;EP2FIFOCFG = 0x08;
// autoin, 8 Bit Wide&#13;5.USB终端输出方式选择EP1IN/OUTCFG终端配置(page350)&#13;在设置USB的传输方式,选择默认值bulk传输方式。&#13;EP1OUTCFG = 0xA0;
// default values&#13;EP1INCFG = 0xA0;
// default values&#13;6.芯片版本控制 REVCTL(page348)&#13;采用系统默认的值。&#13;REVCTL = 0x03; //Cypress highly recommends setting both bits to 1&#13;7.FIFO输出状态控制 PINFLAGAB/CD(page342)&#13;PINFLAGSAB = 0x00;&#13;PINFLAGSCD = 0x00;&#13;由外部的FIFOADR[1:0]来决定使用哪一个FIFO。&#13;8.FIFO复位 FIFORESET(page342)&#13;手册上面的要求如下图所示:&#13;//复位FIFO,先复位端点,再清空端点&#13;延时;&#13;FIFORESET = 0x80;// activate NAK-ALL to avoid race conditions&#13;延时;&#13;FIFORESET = 0x02;// reset, FIFO 2&#13;延时;&#13;FIFORESET = 0x04;// reset, FIFO 4&#13;延时;&#13;FIFORESET = 0x06;// reset, FIFO 6&#13;延时;&#13;
FIFORESET = 0x08;// reset, FIFO 8&#13;延时;&#13;FIFORESET = 0x00;// deactivate NAK-AL&#13;延时;&#13;9.FIFO引脚极性判断 FIFOPINPOLAR(page346)&#13;&#13;&#13;
在硬件设计中,将SLRD直接拉高处理;PKEND也直接拉高,不做包处理;&#13;
FIFOPINPOLAR = 0x04; //BIT[5:0] = {PKTEND, SLOE, SLRD, SLWR, EMPTY, FULL}&#13;
//Set SLWR High V PKTEND,SLOE,SLRD EMPTY, FULL Low Active&#13;10.引脚复用可选IO功能 PORTACFG(page382)&#13;&#13; &#13; 其中在A区的引脚复用了片选SLCS信号,所以要将其设置为1;&#13;PORTACFG |= 0x40; //IFCOG[1:0] = 11(Slave FIFO Mode), Set PORTACFG[6] to USE PA7-SLCS&#13;11.特殊功能寄存器 自动指针设置AUTOPTRSETUP (page332)&#13;&#13; &#13;//Set Autopointer, enable dual autopointer AUTOPTRSETUP |= 0x01;
&#13;12.设置自动报传 EPXAUTOINLENH/L&#13;//设置为Autoin时的自动传输包大小&#13;EP2AUTOINLENH = 0x02; // EZ-USB automatically commits data in 512-byte chunks&#13;//
EP2AUTOINLENH = 0x04; // EZ-USB automatically commits data in 1024-byte chunks&#13;EP2AUTOINLENL = 0x00;&#13; &#13;
笔者设计的USB部分如上图所示,由于FPGA引脚有限,采用8bit数据总线传输,USB部分只做写入功能,所以预留USB_WR引脚,同步时钟USB_IFCLK,SLRD,PKEND直接拉高,SLCS拉低,FIFOADR[1:0] = 00,选择FIFO中的EP2,增加USB触发信号引脚,作为FPGA写入使能信号,增加CMOS_VSYNC帧同步信号,作为CMOS视频的同步信号。
免责声明:本站部分内容、图片、文字、视频等来自于互联网,仅供大家学习与交流。相关内容如涉嫌侵犯您的知识产权或其他合法权益,请向本站发送有效通知,我们会及时处理。反馈邮箱&&&&。
学生服务号
在线咨询,奖学金返现,名师点评,等你来互动您所在位置: &
&nbsp&&nbsp&nbsp&&nbsp
WINCE系统下基于预测策略电源管理技术应用研究.pdf61页
本文档一共被下载:
次 ,您可全文免费在线阅读后下载本文档。
文档加载中...广告还剩秒
需要金币:200 &&
优秀硕士毕业论文,完美PDF格式,可在线免费浏览全文和下载,支持复制编辑,可为大学生本专业本院系本科专科大专和研究生学士硕士相关类学生提供毕业论文范文范例指导,也可为要代写发表职称论文提供参考!!!
你可能关注的文档:
··········
··········
重庆邮电大学硕士学位论文
论文题目 叟丛£壁壅绫工基土亟麴墓整 垫鎏篁墨蕉a逝塞
墅£丛壁星璺叟垒盥塾Q兰塑丛£壁基Y璺鲤虫 堡垒墨壁垒Q坠里丝立i£!iQ坠墅£垒!壁gi皇璺
硕士研究生 .至
指导教师 塑丝明耋噬 学科专业 盐笠扭垫盔
论文提交日期2Q!至生垒旦旦论文答辩日期2012年歹月“日
论文评阅人
答辩委员会主席 盈逸塑壹耋 2012年f月日 独创性声明 本人声明所呈交的学位论文是本人在导师指导下进行的研究工作及取得的研
究成果。据我所知,除了文中特别加以标注和致谢的地方外,论文中不包含其他
人已经发表或撰写过的研究成果,也不包含为获得重废邮壹太堂或其他教育
机构的学位或证书而使用过的材料。与我一同工作的同志对本研究所做的任何贡
献均已在论文中作了明确的说明并表示谢意。 学位论文作者签名: 签字日期:乒。、1,年f月V孓日 学位论文版权使用授权书 本学位论文作者完全了解
重麽邮电太堂
有关保留、使用学位论文的规
定,有权保留并向国家有关部门或机构送交论文的复印件和磁盘,允许论文被查
阅和借阅。本人授权
重庆由E电太堂 可以将学位论文的全部或部分内容编入
有关数据库进行检索,可以采用影印、缩印或扫描等复制手段保存、汇编学位论
文。 保密的学位论文在解密后适用本授权书 学位论文作者签名: 导师签名: 孙继胡 签字日期:》口I- 签字日期:汐f≯年f月以日
重庆邮电大学硕士论文 摘要 摘要 计算机技术的发展造就了信息化技术革命,如今的信息化革命不仅仅局限在
以微型计算机为核心终端的互联网范围,其部分核心转向嵌入式技术。伴随着智
能化、高性能微型芯片在更多电子电
正在加载中,请稍后...||||||||||||||||||
查看: 59879|回复: 365
在线时间2726 小时经验值4716 最后登录注册时间帖子阅读权限120UID56798
导师, 积分 4716, 距离下一级还需 1384 积分
TA的每日心情开心 22:49签到天数: 1 天[LV.1]初来乍到
G币2161 最后登录注册时间
本帖最后由 anxbb 于
10:28 编辑
最近XDA上有几种内核比较火,更新也比较频繁,我大体上每种内核一一测试过一两天,虽不能说保***能测出BUG来,但至少一两天的正常使用下来对各种内核有了大概的评价。因为新版的更新很快,时间有限,最新的版本不可能做到随更随测,还请大家自行测试。
英文水平有限,我翻译的跟你自己GOOGLE翻译的也差不了多少,英文的介绍大概看看,看不懂也没关系,具体看使用的效果。
关于内核最新的评测请关注微博如有问题请留言,论坛可能不会及时更新,留言会在第一时间回复。:
NSTOOLS 可以控制BLD,BLN,BLE,Deep Idle,Live OC,Touch Wake
[KERNEL][08 DEC] GLaDOS V1.12 (新增)
本内核是有DXA大神Ezekeel制作,目前流行内核中很多代码都是他编写lazy,live OC,BlX,Touch Wake,BLD,Deep Idle等等……
Features:Based on stock Android kernel 2.3.7 GWK74
CPUfreq governor 'lazy'
Live OC version 1
Custom Voltage version 1
Battery Life eXtender (BLX) version 1
Power saving state DEEP IDLE version 2
Touch Wake version 1
Backlight Dimmer (BLD) version 3
Backlight Notification (BLN) version 9
Brain 文明用语 Scheduler (BFS) version 0.357
SLQB memory allocator
Voodoo Color version 2
Voodoo Sound version 10
GLaDOS-V1.10
Added DRAM scaling to Live OC.
Flash memory I/O tweaks.
Added Tiny Preemptive RCU.
Updated the optimized CRC32 algorithm.
Removed CFQ I/O scheduler.
GLaDOS-V1.9
Added OC frequency states 1.4GHz and 1.2GHz.
GLaDOS-V1.8
Fixed the problem of the touchkey backlight lighting up when touched while the screen is off.
Increased display frequency to 72Hz necessary to achieve 65fps.
GLaDOS-V1.7
Fixed the increased battery drain while in SLEEP when DEEP IDLE is enabled.
Fixed the problem on the NS4G of DEEP IDLE not being used while 4G is enabled.
GLaDOS-V1.6
Disabled most logging and debugging kernel config options.
Included logger and TUN as modules.
During installation the cache partition, Dalvik-cache and modules, init.d scripts and bootsounds from previously installed kernels are cleaned.
Removed '98touchscreen' init.d script.
Aperture bootanimation and -sound courtesy of Euphorie ().
GLaDOS-V1.5
Fixed problems with setting voltages and min/max frequency with SetCPU.
Fixed problems with the vibrator and DEEP IDLE.
Improved stability of wireless connection.
GLaDOS-V1.4
Updated to latest toolchain arm-
Optimized compiler flags
Added optimized RWSEM
Fixed BLD bug for i9023 of the touchkey backlights not getting re-activated on touch
Changed to advanced TCP congestion scheduler VENO
GLaDOS-V1.3
Improvements to JHash.
Improvements to CRC32.
Fix memory leak in CPUfreq stats module.
Removed PMEM. I do see any improvement regarding the available RAM, but removing unused code is never a bad idea.
GLaDOS-V1.2
Fixed 'Screen v1 gamma hack' not working for Voodoo Color.
GLaDOS-V1.1
Fixed BLN problems for i9023.
GLaDOS-V1.0
Initial release.
安装GLaDOS内核会在/etc / init.d/(Netarchy内核相同),创建三个脚本'98touchscreen“,'99nexusinit”和“placeholde”。如果您切换到另一个内核,您应该删除这些文件。此外,当安装GLaDOS确保删除其他以前的内核已经安装的脚本。
03:54 上传
点击文件名下载附件
19:23 上传
点击文件名下载附件
19:23 上传
点击文件名下载附件
10:40 上传
点击文件名下载附件
10:40 上传
点击文件名下载附件
10:38 上传
点击文件名下载附件
10:38 上传
点击文件名下载附件
10:55 上传
点击文件名下载附件
10:55 上传
点击文件名下载附件
07:06 上传
点击文件名下载附件
07:06 上传
点击文件名下载附件
10:54 上传
点击文件名下载附件
10:54 上传
点击文件名下载附件
10:55 上传
点击文件名下载附件
10:54 上传
点击文件名下载附件
08:55 上传
点击文件名下载附件
08:56 上传
点击文件名下载附件
09:21 上传
点击文件名下载附件
09:22 上传
点击文件名下载附件
20:00 上传
点击文件名下载附件
20:00 上传
点击文件名下载附件
10:23 上传
点击文件名下载附件
测评:充电限制96%,不能达到100%,加入了开机动画。经过几天长时间的使用,1.8非常稳定,快速,目前推荐使用。1.9版正在测试……
如果不想更改开机画面请删除内核包中system/media文件夹,然后刷入即可。
——————————————————————————————华丽的分割线————————————————————————————————
[KERNEL] Lucid Nexus, pre/post-2.3.3-voodoo-colors w/ BLN, Voodoo Sound & ext4 opt.
2.2更新列表:
-Removed Screen Dimmer
-Raised FPS to 65
-Raised SDcard read-ahead to 1024
-Bugfixes for BLD and Touch Wake
-Fixed BLD for i9023 bottom screen calibration
-Added Lazy Governor
-TUN supportLucid Blue 3.0: (pre-2.3.3 voodoo color drivers)
Stock 2.3.4-2.3.7 NS GSM:
flash in CWR
CM7.1+/Any Rom 2.3.4-2.3.7 NS+NS4G:
Lucid Yellow 3.0: (post-2.3.3 voodoo color drivers)
Stock 2.3.4-2.3.7 NS GSM:
flash in CWR
CM7.1+/Any Rom 2.3.4-2.3.7 NS+NS4G:
感谢YZ2365搬运
Lucid Blue 2.2: (pre-2.3.3 voodoo color drivers)
Stock 2.3.4-2.3.5 NS GSM:
flash in CWR
CM7.1+/Any Rom 2.3.4-2.3.5 NS+NS4G:
Lucid Yellow 2.2: (post-2.3.3 voodoo color drivers)
Stock 2.3.4-2.3.5 NS GSM:
flash in CWR
CM7.1+/Any Rom 2.3.4-2.3.5 NS+NS4G:
测评:配合MV10.13出现过一次无法唤醒的情况,省电做的没以前好。
——————————————————————————————华丽的分割线————————————————————————————————
[KERNEL][ACS]*Matr1x* with BLN and voodoo v11
v9.5 Added the Bluetooth bug fix for deep idle, a Wifi tweak from Franciscofranco, and a 65 fps display rate.
v10.0 Updated all of Ezekeel's mods and added a whole bunch of performance tweaks from Franciscofranco.
v10.5 Updated all of Ezekeel's mods and added his voltage control mod.
v11.0 Updated all of Ezekeel's mods and fixed some voltages for stability.
Matr1x-cfs_v8.5:
Matr1x-bfs_v8.5:
13:58 上传
点击文件名下载附件
13:58 上传
点击文件名下载附件
23:52 上传
点击文件名下载附件
23:52 上传
点击文件名下载附件
(365.69 KB)
15:14 上传
点击文件名下载附件
(366.4 KB)
15:14 上传
点击文件名下载附件
10:57 上传
点击文件名下载附件
10:57 上传
点击文件名下载附件
10:24 上传
点击文件名下载附件
10:24 上传
点击文件名下载附件
Matr1x v9.5今天更新的,经过反馈,重启严重。Matr1x v8.5曾经测试多天稳定,快速,耗电控制一般。
v10.0 作者更新Ezekeel's的代码,借鉴了franco内核的机制,先测试franco内核……先
——————————————————————————————华丽的分割线————————————————————————————————
[KERNEL] Apocalypse-Talon v3.2.1
更新:All the bug fixes for deep idle included.
Deep idle not active by default.
BLD, touch wake, screen dimmer fixes.
Added VR I/O scheduler and set it as default.
Tuned VR scheduler for better performance.
Battery can charged to 100%
BLX removed.
14:00 上传
点击文件名下载附件
测评:感谢8楼更新此内核+MIUI系统的测评。smartassV2调速器下,100~1100 运行稳定。LAZY下,开deepidle容易睡死。同样100~1000 smartassV2 没有 franco流畅度高。
——————————————————————————————华丽的分割线————————————————————————————————
[KERNEL][8 DEC] franco.Kernel
8th December
* Deep_idle code deleted, and re-added. Everything is exactly as Ezekeel has in his kernel, this might, or might not help with the data loss and whatever. If you still have problems please consider disabling deep_idle and see if it helps Deep idle代码清除并重新添加,和Ezekeel的内核一摸一样。如果仍有问题,请考虑禁用。
* Deep_idle is off by default - changeable with NStoolsDeep idle 默认是禁用,用NS工具箱开启。
* Calibrate.c reverted back to the .35 implementation
* Updated CRC32 library to the latest implementation directly from its creator
* Fsync disabling code deleted and re-implemented with a different implementation 一些其他的代码和库的更新……
4th December
Too many changes, so I'll be just brief and simple:
* CFS autogroup tweaks
* CFS optimizations
* Readahead values automatically calculated by the kernel for the optimal performance
* Several optimizations to lib files
* Added dm-cache ()
* More stability
* Much more...
25 November
* Fsyncs disabled - more IO speed, more battery (less IO operations)
* Compiled with the optimized Mjolnir toolchain
* Added 1,2ghz step
* New default colors for the SAMOLED screens
* Cgroup: speed up access to cgroupfs mounted entries in /proc/mounts
* One or two more minor tweaks and optimizations
23 November
* No more BFS code and BFS builds. I want to make sure this is stable enough. If you want BFS compile it yourself. I hope this fixes the data/gsm drops
* Minfree settings unlocked forever
* Readahead value bumped to 1024
* BLN/touchwake fix
17 November
* Patched up to the latest deep_idle version from Ezekeel
* SAMOLED colors tweaked, should be a lot better now
* Few stability updates and reverts to ensure everything is up and running without issues
* Interactive governor added again
* Interactive patched up with around 10/15 patches
* Minor tweaks and optimizations
13 November
* Based on the latest testing builds, which includes:
* Some defconfig options change for a more leaner kernel
* Delete two cflags to ensure maximum Hummingbird performance
* Internal sdcard remount bug fixed
* Minfree settings unlocked by users demand
* Deep_idle implementation changed (it's the same as last testing version)
* Added latest deep_idle patch that when the phone vibrates it uses the TOP=ON idle state
* Removed obsolete screen dimmer
* Updated BLN to latest v9
* Lazy governor changes based on morfics lazy changes
* Remove Big Kernel Lock tracing
* Some stability patches from the kernel mainline
8 November
* PMEM disabled as herring doesn't use it - this way we recover 12,5mb ram
* Ext4 special mounted on the source - more performance and don't need remounting init.d scripts
* Writeback settings now working correctly and are not overwritten by the ramdisk
* Minfree settings are now correctly set and are not overwritten by the ramdisk
* Thanks morfic for the lively discussions and ideas
6 November
* Latest deep_idle bugfix from Ezekeel
* Added Ezekeel's custom_voltage mod. For more info about it visit the respective thread. Yes it's compatible with SetCPU, maybe with Proton too, I didn't test it
* Added back BLD, touch wake and screen dimmer
* Improved CRC32 algorithm - it's used for many kernel functions
* CFS version: Cgroups: introduce timer slack subsystem - Provides a way of tasks grouping by timer slack value. This functionality is useful in mobile devices where certain background apps are attached to a cgroup and minimum wakeups are desired
3 November
* Latest deep idle bugfix from Ezekeel 修复deep idle到最新
* Offering two separated downloads, one CFS and another BFS. Don't ask me which one is better, try it and see, I'll be really mad if I get questions like that提供两种算法内核,BFS和CFS,别问哪种更好,自己测试。
* Idle_stats show 0 in every field - don't worry about that, it happens because of my cpu_idle 3.1 backport, but I assure you deep idle is working. Again I'm not answering questions like &WHY IS IDLE STATS 0?!?!? HALP PLZ&.Idle_stats 显示0也不用担心,deep idle是工作的。
* 'screenoff_maxfreq' is disabled by default. If you want that behavior write this in the terminal: echo 1 & /sys/devices/system/cpu/cpu0/cpufreq/lazy/screenoff_maxfreq
2 November
* Newest deep idle bugfix from Ezekeel
* Reverted back to CFS because stock users had mounting problems with the sdcard and some users had data/wifi drops and I don't want that
1 November
* First and entirely BFS kernel with the newest 0.413 version
* Optimized the tunable BFS parameters for extra interactivity and smoothness
* More debugging disabled - I'm pretty sure 99% of the debugging flags are now disabled
* All the latest bugfixes and implementations from Ezekeel, including live_oc up to 150, lazy maxfrequency_screenoff enabled by default and all the other small fixes to ensure maximum stability
* Small changes to the lowmemorykiller
* Added optimized RWSEM algorithm
* Added some minor improvements and tweaks
* Sorry devs that wanted logcat, it's still a module because I suspect I'll have to update this build again with some extra fixes from Ezekeel in a very near future thus not making much sense to release two kernels now, one with logcat on and other with it off because that takes time to compile. If you desperatly need logcat go to my .config and change CONFIG_ANDROID_LOGGER=m to CONFIG_ANDROID_LOGGER=y and recompile it
27 October
* Latest deep idle and live oc bugfix from Ezekeel - should fix that extra battery drain reported by some users
* Changed lowmemorykiller.c - minfree settings already incorporated in the file. Settings kanged from morfic's tweak file, thanks
* Add cleancache - driver to cache clean pages
* Fixed ext4 disk write performance regression
* Small power management fix to back off suspend if repeated attempts fail - avoid continually trying to suspend in situations in which a driver is repeatedly rejecting suspend or a pending wakeup interrupt is not handled, burning CPU in the continuous suspend attempts
* Lib file added for the users where BLN didn't work
* Logcat module added inside /system/modules. If you want to use logcat just load the module with insmod
24 October
* BLX added again by default and patched up to the latest fix from Ezekeel
* Deep idle patched up to the latest fix from Ezekeel
* Live OC added and patched up to the latest fix from Ezekeel. To overclock you need to do this in the terminal or in an init.d file: echo 110 & /sys/class/misc/liveoc/oc_value. The 110 value means that both cpu frequency and bus frequency will be increased by 10%. You can increase this value as much as you want, as long as you increase the voltages otherwise the device won't handle it, but that's obvious.
* Changed dirty_writeback values from morfic to increase smoothness
* Overclock frequencies removed. The device is fast enough with ,200 and 100 frequencies. If you want to overclock use Live OC, it's enough to make it fly
* Conservative governor tweaked - smooth as butter
* Removed a ton of debugging shit
* Deadline I/O scheduler made default - after much testing it seems to produce the best and more regular results
* Swappiness disabled
* For more information visit my github, this are the most important changes
21 October
* Latest Deep idle bugfix from Ezekeel
* sched: disable GENTLE_FAIR_SLEEPERS
* Remove few obsolete governors
* BLN fix for MIUI users - now it should be propely set and full working
* Just 3 more tweaks:
PM QoS: Correct pr_debug() misuse and improve parameter checks
mmc: core: put eMMC in sleep (cmd5) mode before suspend
vmscan: prevent background aging of anon page in no swap system
14:01 上传
点击文件名下载附件
10:54 上传
点击文件名下载附件
23:15 上传
点击文件名下载附件
23:54 上传
点击文件名下载附件
22:25 上传
点击文件名下载附件
10:23 上传
点击文件名下载附件
10:24 上传
点击文件名下载附件
21:20 上传
点击文件名下载附件
21:21 上传
点击文件名下载附件
18:58 上传
点击文件名下载附件
18:58 上传
点击文件名下载附件
17:57 上传
点击文件名下载附件
17:57 上传
点击文件名下载附件
23:10 上传
点击文件名下载附件
11:00 上传
点击文件名下载附件
10:59 上传
点击文件名下载附件
09:26 上传
点击文件名下载附件
12:00 上传
点击文件名下载附件
11:36 上传
点击文件名下载附件
12:33 上传
点击文件名下载附件
09:19 上传
点击文件名下载附件
21 October 快速,省电,smartassV2 100MHz~1100MHz 开deep idle没出现睡死,重启的现象。开lazy 100~1100 deep idle测试中,屏幕超时后,出现无法唤醒的情况,lazy调速器慎用!如果一天不玩什么大型游戏的话 100~800 也会很流畅,比较省电的。
24 October 目前正在测试中,作者修改了超频机制,用liveoc代替了传统的超频。超频方法:echo 110 & /sys/class/misc/liveoc/oc_value 110代表超频10%,最多超频20%。此方法重启后会恢复默认。
如果需要每次启动时自动修改 oc_value ,可以用 root explore 打开编辑 /etc/init.d/20userinit 文件,在文件最后一行添加:echo 110 & /sys/class/misc/liveoc/oc_value 修改后正常保存即可,这样每次重启后就可以自动修改了。(方法转自 波波E)
27 October 默认100~1000 lazy deep idle开启会出现睡死,smartassV2还没出现……
2 November 修复深度睡眠,采用CFS算法,解决WIFI掉线。实际测试不推荐,推荐1号以前的版本。
3 November bfs会出现WIFI显示连接但掉线的情况,正在测试CFS……
6 November bfs会出现WIFI,3G连接不上的问题,重启会好,但不知什么时候又连不上。CFS测试出现过一次接听电话后,解锁界面卡住不能解锁,锁上,开打依然没反应,反复4,5次,彻底无法唤醒,扣电池……
8 November BFS还是会出现网络问题,CFS测试正常,推荐CFS。13 November 经过反馈BFS网络问题依旧,推荐CFS,一天正常使用下来,13个小时,还有30%电量,感觉还不错了,也没出现什么BUG……待机耗电比glados要好很多
17 November BFS网络问题依旧,CFS各种卡死,重启,死机,苦逼的版本……
昨夜刷入23 早晨醒来,开屏卡住,死机,重启……不稳定的版本PASS,大家自行测试,目前推荐GlaDos CFS
——————————————————————————————华丽的分割线————————————————————————————————
[KERNEL] CM7SG - 11UV - DeadDeepLazy
What is the difference between CMLed and EzMod kernels?
CMLed uses CM7 LED Notification interface (Requires Nightly build 241 and up)
EzMod uses Ezkeel BLN/BLD/TouchWake/ScreenDimmer
Changelog:
CM7SG-11UV-DeadDeepLazy-EzMod/CMLed/NoLED-NKD-Boost_
- CMLED bug fix
- DeepIdle bugfixes
- Removed PMEM saved 12.5 meg of ram
- Couple of fixes here and there
- Ezmod kernel should be fixed now
- New NoLED kernel
CM7SG-11UV-DeadDeepLazy-EzMod/CMLed-NKD-Boost_
- Choice between CM7 LED and BLN/BLD kernel
- Ext4 Performance improvements
- DeepIdle Fixes
- Lazy Governor Fixes
- Added Ext4 Cleancache support
- Ondemand default values tweak
- other fixes and improvements
CM7SG-11UV-DeadDeepLazy-NKD-Boost_
- Decreace transistion latency
- Conservative governor tweaks
- 65 fps is back (apparently is was being an idiot
- Other tweaks with writeback and swappiness
- DeepIdle Patch #6
CM7SG-11UV-DeadDeepLazy-NKD-Boost_
- Added another overclock frequency: 1320Mhz with 220 bus speed
- Revert SpeedMod but disable kernel debug print the proper way (thx to fschaefer)
- Revert Screen Refresh rate at 65 Hz (unstable)
14:03 上传
点击文件名下载附件
19:12 上传
点击文件名下载附件
13:24 上传
点击文件名下载附件
13:24 上传
点击文件名下载附件
15:13 上传
点击文件名下载附件
15:14 上传
点击文件名下载附件
15:14 上传
点击文件名下载附件
基于CM7的内核制作的,这个是新版,上一个版本有重启现象,这个版本未测试。
用setcpu设置会死机……默认100~1100 不可超频降频 lazy
——————————————————————————————华丽的分割线————————————————————————————————
大家如果测试其中的内核有什么BUG,请回帖留下使用的ROM版本+内核版本,我会把反馈集中更新到测评中来,以便和大家一起寻找最完美的内核。
如果您觉得有用,请您评分,感谢支持!!!求评分,升本科~谢谢{:125_455:}{:125_455:}
14:04 上传
点击文件名下载附件
3.28 MB, 下载次数: 36
14:05 上传
点击文件名下载附件
2.65 MB, 下载次数: 36
14:05 上传
点击文件名下载附件
3.29 MB, 下载次数: 39
14:05 上传
点击文件名下载附件
2.66 MB, 下载次数: 43
<p id="rate_2594" onmouseover="showTip(this)" tip="!!!!&经验值 + 1
" class="mtn mbn">
<p id="rate_8491" onmouseover="showTip(this)" tip="很好很强大&经验值 + 1
" class="mtn mbn">
<p id="rate_88216" onmouseover="showTip(this)" tip="很好。收获很多&经验值 + 1
" class="mtn mbn">
<p id="rate_8339" onmouseover="showTip(this)" tip="好强大
希望楼主继续更新。。。 ...&经验值 + 1
" class="mtn mbn">
<p id="rate_3175" onmouseover="showTip(this)" tip="很棒,可惜看不懂英文&经验值 + 1
" class="mtn mbn">
<p id="rate_2285" onmouseover="showTip(this)" tip="终于找到内核结合帖了~&经验值 + 1
" class="mtn mbn">
<p id="rate_1288" onmouseover="showTip(this)" tip="真是相当给力啊&经验值 + 1
" class="mtn mbn">
<p id="rate_0442" onmouseover="showTip(this)" tip="太强大了&经验值 + 1
" class="mtn mbn">
<p id="rate_9488" onmouseover="showTip(this)" tip="泪流满面,顶楼主!&经验值 + 1
" class="mtn mbn">
<p id="rate_3631" onmouseover="showTip(this)" tip="绝世好文!&经验值 + 1
" class="mtn mbn">
<p id="rate_0376" onmouseover="showTip(this)" tip="感谢分享。。。&经验值 + 1
" class="mtn mbn">
<p id="rate_6742" onmouseover="showTip(this)" tip="未睇立即加分先得&经验值 + 1
" class="mtn mbn">
<p id="rate_5690" onmouseover="showTip(this)" tip="顶&经验值 + 1
" class="mtn mbn">
<p id="rate_4707" onmouseover="showTip(this)" tip="太厉害了!!&经验值 + 1
" class="mtn mbn">
<p id="rate_2585" onmouseover="showTip(this)" tip="很好很强大&经验值 + 1
" class="mtn mbn">
<p id="rate_8197" onmouseover="showTip(this)" tip="绝世好文!&经验值 + 1
" class="mtn mbn">
<p id="rate_3271" onmouseover="showTip(this)" tip="技术贴&经验值 + 1
" class="mtn mbn">
<p id="rate_3225" onmouseover="showTip(this)" tip="good&经验值 + 1
" class="mtn mbn">
<p id="rate_7776" onmouseover="showTip(this)" tip="有评测就好了。&经验值 + 1
" class="mtn mbn">
<p id="rate_9142" onmouseover="showTip(this)" tip="必须支持~~~~~~~&经验值 + 1
" class="mtn mbn">
<p id="rate_252" onmouseover="showTip(this)" tip="NICE!&经验值 + 1
" class="mtn mbn">
<p id="rate_0014" onmouseover="showTip(this)" tip="bucuo支持&经验值 + 1
" class="mtn mbn">
<p id="rate_5362" onmouseover="showTip(this)" tip="0000&经验值 + 1
" class="mtn mbn">
<p id="rate_7224" onmouseover="showTip(this)" tip="辛苦了&经验值 + 1
" class="mtn mbn">
<p id="rate_2158" onmouseover="showTip(this)" tip="机锋有你更精彩!&经验值 + 3
" class="mtn mbn">
<p id="rate_8779" onmouseover="showTip(this)" tip="nice!&经验值 + 1
" class="mtn mbn">
<p id="rate_4897" onmouseover="showTip(this)" tip="绝世好文!&经验值 + 1
" class="mtn mbn">
<p id="rate_348" onmouseover="showTip(this)" tip="持续关注中&经验值 + 1
" class="mtn mbn">
<p id="rate_5214" onmouseover="showTip(this)" tip="强帖&经验值 + 1
" class="mtn mbn">
<p id="rate_2053" onmouseover="showTip(this)" tip="好东西啊。。。&经验值 + 1
" class="mtn mbn">
<p id="rate_2038" onmouseover="showTip(this)" tip="LZ持之以恒!&经验值 + 1
" class="mtn mbn">
<p id="rate_1442" onmouseover="showTip(this)" tip="绝世好文!&经验值 + 1
" class="mtn mbn">
<p id="rate_5961" onmouseover="showTip(this)" tip="很好&经验值 + 1
" class="mtn mbn">
<p id="rate_2265" onmouseover="showTip(this)" tip="辛苦了 很有用&经验值 + 1
" class="mtn mbn">
<p id="rate_887" onmouseover="showTip(this)" tip="好贴!&经验值 + 1
" class="mtn mbn">
<p id="rate_83" onmouseover="showTip(this)" tip="感谢评测&经验值 + 1
" class="mtn mbn">
<p id="rate_2879" onmouseover="showTip(this)" tip="牛逼!&经验值 + 1
" class="mtn mbn">
<p id="rate_0607" onmouseover="showTip(this)" tip="机锋有你更精彩!&经验值 + 1
" class="mtn mbn">
<p id="rate_9309" onmouseover="showTip(this)" tip="评分 最光荣!&经验值 + 1
" class="mtn mbn">
<p id="rate_592" onmouseover="showTip(this)" tip="评分 最光荣!&经验值 + 1
" class="mtn mbn">
<p id="rate_5749" onmouseover="showTip(this)" tip="机锋有你更精彩!&经验值 + 1
" class="mtn mbn">
<p id="rate_3231" onmouseover="showTip(this)" tip="谢了~~~&经验值 + 1
" class="mtn mbn">
<p id="rate_5983" onmouseover="showTip(this)" tip="泪流满面,顶楼主!&经验值 + 1
" class="mtn mbn">
<p id="rate_813" onmouseover="showTip(this)" tip="赞一个&经验值 + 1
" class="mtn mbn">
<p id="rate_0365" onmouseover="showTip(this)" tip="fasdfasdf&经验值 + 1
" class="mtn mbn">
<p id="rate_447" onmouseover="showTip(this)" tip="很好&经验值 + 1
" class="mtn mbn">
<p id="rate_906" onmouseover="showTip(this)" tip="感谢测试分享!&经验值 + 1
" class="mtn mbn">
<p id="rate_6762" onmouseover="showTip(this)" tip="泪流满面,顶楼主!&经验值 + 1
" class="mtn mbn">
<p id="rate_7104" onmouseover="showTip(this)" tip="违规内容,请阅读论坛版规。&G币 + 1
经验值 + 1
" class="mtn mbn">
<p id="rate_6146" onmouseover="showTip(this)" tip="lz大好人&经验值 + 1
" class="mtn mbn">
<p id="rate_1835" onmouseover="showTip(this)" tip="lz好人,大家找内核就方便了,希望持续更新 ...&经验值 + 1
" class="mtn mbn">
<p id="rate_685" onmouseover="showTip(this)" tip="希望保持更新&经验值 + 1
" class="mtn mbn">
<p id="rate_578" onmouseover="showTip(this)" tip="Nice Review!&经验值 + 1
" class="mtn mbn">
<p id="rate_4349" onmouseover="showTip(this)" tip="机锋有你更精彩!&经验值 + 1
" class="mtn mbn">
<p id="rate_7947" onmouseover="showTip(this)" tip="支持!!!!!&经验值 + 1
" class="mtn mbn">
<p id="rate_9645" onmouseover="showTip(this)" tip="这个爽啊&经验值 + 1
" class="mtn mbn">
<p id="rate_313" onmouseover="showTip(this)" tip="支持了&经验值 + 1
" class="mtn mbn">
<p id="rate_271" onmouseover="showTip(this)" tip="挺好,不过还和Rom有关,比如氧气2.3.1+CM7 ...&经验值 + 1
" class="mtn mbn">
<p id="rate_1659" onmouseover="showTip(this)" tip="机锋有你更精彩!&经验值 + 1
" class="mtn mbn">
<p id="rate_543" onmouseover="showTip(this)" tip="希望楼主能坚持更新,做NS板的主内核帖!! ...&经验值 + 1
" class="mtn mbn">
<p id="rate_0221" onmouseover="showTip(this)" tip="支持&经验值 + 1
" class="mtn mbn">
<p id="rate_6240" onmouseover="showTip(this)" tip="franco.Kernel,用了好几天了,确实不错 ...&经验值 + 1
" class="mtn mbn">
<p id="rate_6081" onmouseover="showTip(this)" tip="机锋有你更精彩!&经验值 + 1
" class="mtn mbn">
<p id="rate_1417" onmouseover="showTip(this)" tip="支持楼主&经验值 + 1
" class="mtn mbn">
<p id="rate_2648" onmouseover="showTip(this)" tip="原创支持&G币 + 2
经验值 + 1
" class="mtn mbn">
<p id="rate_781" onmouseover="showTip(this)" tip=".&经验值 + 1
" class="mtn mbn">
<p id="rate_4772" onmouseover="showTip(this)" tip="~&经验值 + 1
" class="mtn mbn">
<p id="rate_51" onmouseover="showTip(this)" tip="很详细,不错~&经验值 + 1
" class="mtn mbn">
<p id="rate_7091" onmouseover="showTip(this)" tip="机锋有你更精彩!&经验值 + 1
" class="mtn mbn">
<p id="rate_6185" onmouseover="showTip(this)" tip="正在找内核呢。。。好贴&经验值 + 1
" class="mtn mbn">
<p id="rate_464" onmouseover="showTip(this)" tip="很好的帖子
则样也把内核集中起来了
希望 ...&经验值 + 1
" class="mtn mbn">
<p id="rate_5378" onmouseover="showTip(this)" tip="支持一下!&经验值 + 1
" class="mtn mbn">
<p id="rate_589" onmouseover="showTip(this)" tip="给新手看很好!&经验值 + 1
" class="mtn mbn">
机油有事微博留言:/u/
在线时间2726 小时经验值4716 最后登录注册时间帖子阅读权限120UID56798
导师, 积分 4716, 距离下一级还需 1384 积分
TA的每日心情开心 22:49签到天数: 1 天[LV.1]初来乍到
G币2161 最后登录注册时间
占楼更新~~~~~
机油有事微博留言:/u/
在线时间396 小时经验值281 最后登录注册时间帖子阅读权限50UID5920555
大学专科, 积分 281, 距离下一级还需 119 积分
该用户从未签到
G币91 最后登录注册时间
支持@@@@@@@@@@??????
在线时间1219 小时经验值2933 最后登录注册时间帖子阅读权限100UID4195759
博士, 积分 2933, 距离下一级还需 567 积分
TA的每日心情奋斗 15:18签到天数: 745 天[LV.9]以坛为家II
G币6669 最后登录注册时间
省不省电的,俺觉得稳定为先;)
在线时间3000 小时经验值4158 最后登录注册时间帖子阅读权限110UID172589
博士后, 积分 4158, 距离下一级还需 542 积分
TA的每日心情开心 16:40签到天数: 1 天[LV.1]初来乍到
G币2220 最后登录注册时间
新手们需要好好看看。。。。。
Twitter:@Old_Peng
新浪微博:/oldpeng
微信:oldpeng
Device:All Nexus
在线时间786 小时经验值6325 最后登录注册时间帖子阅读权限130UID2795378
副叫兽, 积分 6325, 距离下一级还需 1375 积分
该用户从未签到
G币9637 最后登录注册时间
[KERNEL] Apocalypse-Talon v3.2.1
直接睡死··
在线时间2726 小时经验值4716 最后登录注册时间帖子阅读权限120UID56798
导师, 积分 4716, 距离下一级还需 1384 积分
TA的每日心情开心 22:49签到天数: 1 天[LV.1]初来乍到
G币2161 最后登录注册时间
& &是之前的测试版还是正式版?什么rom
机油有事微博留言:/u/
在线时间2460 小时经验值2418 最后登录注册时间帖子阅读权限90UID644464
硕士, 积分 2418, 距离下一级还需 82 积分
该用户从未签到
G币2253 最后登录注册时间
本帖最后由 yz2365 于
14:59 编辑
& &Apocalypse-Talon v3.2.1这个内核我来说说吧
昨晚下载的&&刷上以后使用到现在,没有出现过重启现象,我用SETCPU设置成100-1100,smartvss v2(其他未更改,特备是不要去搞计划任务,这样反而更加耗电)
大看看电子书书1个小时(我是9020,设置成黑底白字应该很省电),网络连接持续保持(3G连接耗电量会比2G大得多),看空间,UC大概一个半小时,耳机听歌1个半小时使用情况如下
给出两张插上USB之前的截图
14:55 上传
14:55 上传
& && && && && &所以说这个内核还是很不错的
系统MIUI 1.10.21
<p id="rate_2585" onmouseover="showTip(this)" tip="不错&经验值 + 1
" class="mtn mbn">
[url=/u/?s=6uyXnP][/url]
在线时间2558 小时经验值4229 最后登录注册时间帖子阅读权限110UID2086185
博士后, 积分 4229, 距离下一级还需 471 积分
TA的每日心情怒 15:30签到天数: 2 天[LV.1]初来乍到
G币2066 最后登录注册时间
支持。。。。。。找内核中。。。。。
在线时间638 小时经验值632 最后登录注册时间帖子阅读权限60UID2464693
大学本科, 积分 632, 距离下一级还需 68 积分
该用户从未签到
G币595 最后登录注册时间
我要刷个好内核
浏览过的版块
Powered by}

我要回帖

更多关于 interrupt 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信