全部博文(60)
发布时间:2016-04-17 15:45:58
1. set_bit/clear_bitset_bit(nr,addr)将addr的第nr位置1clear_bit(nr,addr)test_and_set_bit(nr,addr)将addr的第nr位置1,并返回原始addr第nr位的值test_and_clear_bit(nr,addr)在内核中有好几处实现,不过大同小异,我们看两种:include/asm-generic/bitops/atomic.hstat.........【阅读全文】
发布时间:2016-04-16 20:56:14
C应用程序:----------------------------------------第一种方法: 下载交叉工具链:https://sourcery.mentor.com/GNUToolchain/release2323下载之后是个bin文件,chmod 777,然后运行,你发现运行不成功,它会提示你怎么改.之后再运行就成功了,是个图形界面的安装程序.安装完之后,把环境变量设置好.........【阅读全文】
发布时间:2016-04-16 20:49:52
参考:http://www.cnblogs.com/innost/archive/2011/01/09/1931456.htmlFramework层Binder的位置:#ls frameworks/native/libs/binder/Android.mk IInterface.cpp IPermissionController.cpp MemoryDealer.cpp PermissionCache.cppBinde.........【阅读全文】
发布时间:2016-04-16 20:41:48
NPN三极管工作时是集电极接高电压,发射极接低电压,基极输入电压升高时趋向导通,基极输入电压降低时趋向截止;而PNP三极管工作时则是集电极接低电压,发射极接高电压,基极输入电压升高时趋向截止,基极输入电压降低时趋向导通。即NPN和PNP主要就是电流方向和电压正负不同。在电路中为什么会用MOSFET而不用三极管.........【阅读全文】
发布时间:2016-04-16 20:35:36
HFP: The time between the end of the horizontal active time and the start of the horizontal sync pulse is called the Horizontal Front Porch.HBP: The period of time between the end of the Horizontal Sync pulse and the start o.........【阅读全文】