05 2015 档案

摘要:A: 从栈地址开始,栈顶为AT91SAM7S64的16K片内RAM尽头0x00204000IRQ_STACK_SIZE = 3*8*4FIQ_STACK_SIZE = 0x004ABT_STACK_SIZE = 0x004UND_STACK_SIZE = 0x004SVC_STACK_SIZE = ... 阅读全文
posted @ 2015-05-29 17:04 IAmAProgrammer 编辑
摘要:SJA1000 控制信号的产生CAN总线通信控制芯片SJA1000 没有提供单独的地址线,而使用可以与Intel 和Motorola系列微控制器兼容的分时复用地址/ 数据线。在一个读写周期内,微控制器首先输出操作地址并使地址锁存信号ALE 有效,SJA1000 在ALE 信号的下降沿将操作地址锁在片... 阅读全文
posted @ 2015-05-29 17:02 IAmAProgrammer 编辑
摘要:指令表关键词Rm {, }寄存器移位方式,将寄存器的移位结果作为操作数而Rm值保持不变灵活的使用第二个操作数。移位和循环最合适作为第二操作数的一部分使用由大括号括起来的一些用逗号分割的寄存器列表。如:{ and }.查看程序状态寄存器域目录.加载或存储的寄存器列表,但不含程序计数器寄存器。包含CPS... 阅读全文
posted @ 2015-05-29 17:01 IAmAProgrammer 编辑
摘要:17.05.08 Added Audi RB8 random code direct change -> Now can adapt VIN based keys or keys what RANDOM code is known12.05.08 Added Audi RB8 key proce... 阅读全文
posted @ 2015-05-29 17:00 IAmAProgrammer 编辑
摘要:74系列TTL数字逻辑集成电路系国际上通用的标准电路。其品种共分为六大类即74xx(标准) 74LSxx(低功耗肖特基) 74Sxx(肖特基) 74ALSxx(先进低功耗肖特基) 74ASxx(先进肖特基) 74Fxx(高速)只要序列号相同,则逻辑功能完全相同。另外还出现了74系列高速CMOS电路,... 阅读全文
posted @ 2015-05-29 16:56 IAmAProgrammer 编辑
摘要:BOSCH RB88E0920 951GI found the answer by myself...... Here is what it's work for me. GREEN CONNECTOR PIN # 1 2 3 POSITIVE (+) PIN # 18 19 NEGATIVE (-... 阅读全文
posted @ 2015-05-29 16:53 IAmAProgrammer 编辑
摘要:体重(kg) 身高(cm) 年龄 男---女----男----女 出生 2.9-3.8 2.7-3.6 48.2-52.8 47.7-52.0 1月 3.6-5.0 3.4-4.5 52.1-57.0 51.... 阅读全文
posted @ 2015-05-29 16:52 IAmAProgrammer 编辑
摘要:我的孩子:也许你不认识我,但我知道关于你所有的事情 (诗篇139:1)我知道你什么时候坐下,什么时候站起来 (诗篇139:2)我熟知你所有的路 (诗篇139:3)甚至连你的头发我已经都数算过了 (马太福音10:29-31)因为你是照着我的样子被造出来的 (创世纪1:27)在我里面,你活动,生存,并且... 阅读全文
posted @ 2015-05-29 16:51 IAmAProgrammer 编辑
摘要:NAT是网络地址翻译就是把公网IP翻译成私有地址, 又叫端口映射或端口转发. 采用路由方式是指ADSL拥有一个动态或固定的公网IP,ADSL直接接在HUB或交换机上,所有的电脑共享上网。这时ADSL的外部地址只有一个,比如61.177.*.*。 而内部的IP是人为设置的,比如ADSL设为192.16... 阅读全文
posted @ 2015-05-29 16:49 IAmAProgrammer 编辑
摘要:#ifndef __MCP2515_H#define __MCP2515_H/*mcp2515.hThis file contains constants that are specific to the MCP2515.Version Date Description----... 阅读全文
posted @ 2015-05-29 16:48 IAmAProgrammer 编辑
摘要:NAS(Network Attached Storage:网络附属存储)按字面简单说就是连接在网络上,具备资料存储功能的装置,因此也称为"网络存储器"。它是一种专用数据存储服务器。它以数据为中心,将存储设备与服务器彻底分离,集中管理数据,从而释放带宽、提高性能、降低总拥有成本、保护投资。其成本远远低... 阅读全文
posted @ 2015-05-27 16:13 IAmAProgrammer 编辑
摘要:fpga中,一般外接的晶振是50Mhz,如果电路中一个模块需要25mhz时钟,那么进行一个2分频,这个是相当容易的,下面是一种方法,还有可以用一个二进制计数器实现。这里就不写代码了。easy.同样的原理 ,四分频也很容易。process(clk)--clk输入时钟;begin if(rst = '0') then --rst复位信号; clkout clk, rst ... 阅读全文
posted @ 2015-05-26 23:39 IAmAProgrammer 编辑
摘要:偶来扔个砖头先举例来说:16M的晶振,让它的输入信号输入4个脉冲的时候翻转一次,这个翻转的输出就是四分频拉。。用CPLD的VHDL语言来做的话:library ieee;use ieee.std_logic_1164.all;entity fp is port( clk :in ... 阅读全文
posted @ 2015-05-26 23:34 IAmAProgrammer 编辑
摘要:在数字电路中,常需要对较高频率的时钟进行分频操作,得到较低频率的时钟信号。我们知道,在硬件电路设计中时钟信号时非常重要的。 下面我们介绍分频器的VHDL描述,在源代码中完成对时钟信号CLK的2分频,4分频,8分频,16分频。LIBRARY IEEE;USE IEEE.STD_LOGIC_1164.A... 阅读全文
posted @ 2015-05-26 23:25 IAmAProgrammer 编辑
摘要:Although both BitTorrent Sync 2.0 FREE and PRO ensure high file transfer speed and ultimate security, PRO version provides you with a lot more functio... 阅读全文
posted @ 2015-05-21 22:22 IAmAProgrammer 编辑
摘要:Sync 2.0 supports boths new 2.0 folders and classic 1.4 folders, so when you upgrade your Sync it will leave existing folders as is.If we compare 2.0 ... 阅读全文
posted @ 2015-05-21 22:19 IAmAProgrammer 编辑
摘要:Lingoes软件自述Lingoes是一款功能强大、简明易用的多语言词典和文本翻译软件,支持多达80种语言互查互译,这些语言包括英、法、德、意、俄、中、日、韩、西、葡、阿拉伯语及更多...Lingoes拥有专业的语言翻译功能,包括词典查询、文本翻译、屏幕取词,划词和语音朗读功能,并提供了海量词典和百... 阅读全文
posted @ 2015-05-21 21:15 IAmAProgrammer 编辑
摘要:SyncTrayzor is a little tray utility forSyncthingon Windows.It hosts and wraps Syncthing, making it behave more like a native Windows applicationand l... 阅读全文
posted @ 2015-05-21 15:49 IAmAProgrammer 编辑
摘要:SyncThingWinAuto restart and minor bug fixesbloonesreleased thison 23 Dec 2014There is now an auto-restart syncthing option in the configuration scree... 阅读全文
posted @ 2015-05-21 15:04 IAmAProgrammer 编辑
摘要:SyncthingTraySyncthing wrapper for Windows. Includes a small interface to configure start on boot and puts syncthing into tray instead of the console ... 阅读全文
posted @ 2015-05-21 15:00 IAmAProgrammer 编辑
摘要:http://www.coretechnologies.com/products/AlwaysUp/Apps/RunSyncthingAsAWindowsService.htmlAutomatically start Syncthing in the background when your PC ... 阅读全文
posted @ 2015-05-21 14:47 IAmAProgrammer 编辑
摘要:Syncthing --an open-source file synchronization client/server applicationSyncthing是一个开源的云存储和同步服务工具,支持Mac OS X、Windows、Linux、FreeBSD和Solaris。Syncthing由... 阅读全文
posted @ 2015-05-21 13:03 IAmAProgrammer 编辑
摘要:DHT(Distributed Hash Table,分布式哈希表)类似Tracker的根据种子特征码返回种子信息的网络。DHT全称叫分布式哈希表(Distributed Hash Table),是一种分布式存储方法。在不需要服务器的情况下,每个客户端负责一个小范围的路由,并负责存储一小部分数据,从... 阅读全文
posted @ 2015-05-21 12:18 IAmAProgrammer 编辑
摘要:Sync version 1.4.111Installer for Windows:BTSync.exeBTSync_x64.exeInstaller for OSX:BTSync.dmgGzip archive for Linux:ARMPowerPCPowerPC Quoriqi386x64gl... 阅读全文
posted @ 2015-05-21 12:13 IAmAProgrammer 编辑
摘要:{=================================================================功 能:创建 桌面、发送到...、快速启动栏、开始菜单、程序菜单、右键菜单 快捷方式参 数:FileName : 快捷方式执行文件名Description : 快捷方式... 阅读全文
posted @ 2015-05-21 07:40 IAmAProgrammer 编辑
摘要:开启Win7快速启动栏许多网友一定记得在 Windows 7 之前的 Windows 系统都有个快速启动(quick launch)区域。比如 IE 浏览器、Windows Media Player 程序可以在里面快速启动。“快速启动”工具拦使用以下文件夹中的文件:%userprofile%\App... 阅读全文
posted @ 2015-05-21 07:29 IAmAProgrammer 编辑
摘要:普通的用户经常通过电子邮件、QQ传递等方式进行文件的分享,但是由于不同的网络环境有的时候可能会有不同的限制,所以我们就需要寻找其他的方式来替代。今天就为大家推荐两个既常用又与众不同的分享方式。中国论文网 http://www.xzbu.com/8/view-4463975.htm 一、网络硬盘快速... 阅读全文
posted @ 2015-05-20 16:06 IAmAProgrammer 编辑
摘要:mklink简介Linux 下有一个叫符号链接的东东,是 ln 这个链接命令,mklink 和 ln 的功能几乎一样。在xp系统下,junction命令要用微软开发的小程序 junction.exe实现,从http://live.sysinternals.com/可以下载。现在Windows Vis... 阅读全文
posted @ 2015-05-20 12:40 IAmAProgrammer 编辑
摘要:玩转WIN7的MKLINK引言:换了新电脑,终于再次使用上啦WIN7 ,经过一个周每天重装N次系统,... ... ... ...在xp系统下,junction命令要用微软开发的小程序 junction.exe实现,从http://live.sysinternals.com/可以下载。现在Windo... 阅读全文
posted @ 2015-05-20 12:37 IAmAProgrammer 编辑
摘要:「DropBox」可以说是目前世界上最流行的线上同步工具,非常简单的同步方式,流畅的档桉上传下载速度,让你可以轻易的在两台、三台电脑之间同步重要资料。而你要做的步骤只是在每一台电脑安装DropBox软体,设定DropBox专属同步资料夹,接着只要保持网路连线,任何新增、删除、修改的动作就会在所有电脑... 阅读全文
posted @ 2015-05-20 11:20 IAmAProgrammer 编辑
摘要:http://techsplurge.com/4926/android-awesome-15-tasker-profiles-tutorials/Yeah I know, there’s SetCPU app for under/over clocking CPU but it cannot be ... 阅读全文
posted @ 2015-05-19 23:29 IAmAProgrammer 编辑
摘要:Task / Shortcut WidgetsThe standard way of running a Tasker task is by attaching it to a profile which performs it when the profile becomes active. Ho... 阅读全文
posted @ 2015-05-19 23:22 IAmAProgrammer 编辑
摘要:When using Tasker, sometimes we want to do some automation on screen e.g. screen or button taps.At present, there are some ways can reach it.1."Input"... 阅读全文
posted @ 2015-05-19 23:17 IAmAProgrammer 编辑
摘要:I use something similar but thought I'd mention this 'bug' that can happen:when you INSERT '%wa_message' into 'data', bear in mind your typed message ... 阅读全文
posted @ 2015-05-19 22:15 IAmAProgrammer 编辑
摘要:http://technologyworkroom.blogspot.sg/2013/05/tasker-how-to-read-out-whatsapp.htmlTasker can read out incoming or stored WhatsApp Messages, I used Tas... 阅读全文
posted @ 2015-05-19 17:20 IAmAProgrammer 编辑
摘要:Android Tasker应用之自动查询并显示话费流量套餐信息虽然Android平台有非常多的流量监控软件,但最准确的流量数据还是掌握在运营商手里。有些朋友可能像我一样时不时地发短信查询流量信息,这个操作在智能手机上显得太不智能了,本文将用Tasker让这个操作变得智能化。1、功能需求每天早上闹钟... 阅读全文
posted @ 2015-05-19 17:10 IAmAProgrammer 编辑
摘要:WhatsApp & Tasker for Android – Read & Write messagesThe requirement for the automation is that, if I send a WhatsApp ‘wru’ message to the phone,it sh... 阅读全文
posted @ 2015-05-19 16:50 IAmAProgrammer 编辑
摘要:adb shell as root after device rootedonce device rooted, we must perform "su" before we get root permission in adb shell,this is not convenient in som... 阅读全文
posted @ 2015-05-19 16:11 IAmAProgrammer 编辑
摘要:aapt 是android assert packaging tool的缩写,具体如下:1. 列出apk包的内容aapt l[ist] [-v] [-a] file.{zip,jar,apk}-v 以table形式列出来-a 详细列出内容例如:aapt l ,这个命令就是查看apk内容2. 查看ap... 阅读全文
posted @ 2015-05-19 14:48 IAmAProgrammer 编辑
摘要:折腾了几天,被Android那点儿少得可怜的shell命令折磨的死去活来,终于下定了革命的决心。看一下怎么把渺小的toolbox替换成伟大的busybox吧。先大致描述一下Android系统中的shell程序部分。shell实现分为两部分:一、shell解释器和内置命令源码位于system/core... 阅读全文
posted @ 2015-05-19 13:03 IAmAProgrammer 编辑
摘要:We have to perform the following steps to edit your init.rc successfully:1. Download the BOOT (RamDisk) image from your Android device2. Ex... 阅读全文
posted @ 2015-05-19 12:04 IAmAProgrammer 编辑
摘要:Android devices have a couple of partitions to store different data.The common ones are the recovery, boot, system, data and cache partitions.Almost e... 阅读全文
posted @ 2015-05-19 11:35 IAmAProgrammer 编辑
摘要:http://blog.sina.com.cn/s/blog_5bce66f00100qq0p.htmlls:list(列出目录内容)cd:Change Directory(改变目录)su:switch user 切换用户rpm:redhat package manager 红帽子打包管理器pwd:... 阅读全文
posted @ 2015-05-19 09:25 IAmAProgrammer 编辑
摘要:功能说明:读取,转换并输出数据。语 法:dd [bs=][cbs=][conv=][count=][ibs=][if=][obs=][of=][seek=][skip=][–help][–version]补充说明:dd可从标准输入或文件读取数据,依指定的格式来转换数据,再输出到文件,设备或标准输出... 阅读全文
posted @ 2015-05-19 09:24 IAmAProgrammer 编辑
摘要:Most of the Android user are using their Android phone just for calls, SMS, browsing and basic apps,But form the development prospective, we should kn... 阅读全文
posted @ 2015-05-19 09:07 IAmAProgrammer 编辑
摘要:One can’t stress enough on the importance of backups and when it comes to tinkering with your Android phone, a backup of your system, recovery and boo... 阅读全文
posted @ 2015-05-19 08:23 IAmAProgrammer 编辑
摘要:ADB (Android Debug Bridge)Android 提供的一个通用的调试工具,借助这个工具,我们可以很好的调试开发的程序,adb.exe在你安装的android的sdk开发包tools(或platform-tools)目录下adb的全称为Android Debug Bridge 调试... 阅读全文
posted @ 2015-05-19 07:22 IAmAProgrammer 编辑
摘要:ecently discovered a neat new way to back up apps on my Android without having to use Titanium Backup, having to unlock bootloader or root the device ... 阅读全文
posted @ 2015-05-19 07:17 IAmAProgrammer 编辑
摘要:http://www.pocketables.com/2013/03/overview-of-pocketables-tasker-articles.htmlI write a lot about Tasker, and the problem is that the more articles t... 阅读全文
posted @ 2015-05-18 16:07 IAmAProgrammer 编辑
摘要:First you need 3 profiles to monitor the phone state:Event: Phone IdleVariable Clear %PhoningEvent: Phone OffhookVariable Set, %Phoning, 1Event: Phone... 阅读全文
posted @ 2015-05-18 06:55 IAmAProgrammer 编辑
摘要:If you are using proximity screen off pro or smart screen off, you may know how convenient it is to automate our lives via built-in proximity sensor.N... 阅读全文
posted @ 2015-05-18 01:34 IAmAProgrammer 编辑
摘要:We used to be told that tasker is only capable of detecting foreground application, if the app gets into background running, it would see it as exit.I... 阅读全文
posted @ 2015-05-18 01:19 IAmAProgrammer 编辑
摘要:To perform this mission, Tap the tab "tasks" of Tasker, create a task as below.Task: (ES FTP Toggle)Action 1: task-If, %ESFTP !~ On -------- here ... 阅读全文
posted @ 2015-05-18 00:44 IAmAProgrammer 编辑
摘要:in my previous entry, i posed an idea how to use the built-in proximity sensor to turn the screen off and locked. hereinafter i will show you how to u... 阅读全文
posted @ 2015-05-18 00:38 IAmAProgrammer 编辑
摘要:nowadays, the smartphone is getting bigger in size, eg. samsung galaxy note and note 2, sorta big in size, which you will have to use a leather protec... 阅读全文
posted @ 2015-05-18 00:36 IAmAProgrammer 编辑
摘要:If you usually like to use Poweramp or any other media player to enjoy the music with headset plugged, once you check the option “respond to headset b... 阅读全文
posted @ 2015-05-18 00:34 IAmAProgrammer 编辑
摘要:Tasker to auto record incoming or outgoing callmost of time, i was thinking of tasker can do the job like callrecorder? if yes, how to do?well, after ... 阅读全文
posted @ 2015-05-18 00:15 IAmAProgrammer 编辑
摘要:I happen to find that for GSM standard phone, call duration would be created into sql database only if the outgoing call is being answered, orafter ha... 阅读全文
posted @ 2015-05-18 00:12 IAmAProgrammer 编辑
摘要:http://webmail.dev411.com/t/gg/tasker/12bdddbsak/a-profile-to-detect-when-a-sms-has-been-sentA belated reply. My solution below [let Tasker know when ... 阅读全文
posted @ 2015-05-17 16:42 IAmAProgrammer 编辑
摘要:计算机系统里面的时间有两个,一个叫做系统时间,一个叫做本地时间。什么是系统时间?就是跟那个什么子午线的地方一致的时间,计算机如果运行正常的话,世界上所有的计算机的系统时间都应该是相同的。但是问题来了,我们有一个时区的概念,虽然所有的计算机的系统时间相同,但是他们的本地时间不一样,比如在那个子午线上的... 阅读全文
posted @ 2015-05-17 15:43 IAmAProgrammer 编辑
摘要:Unicode也是一种字符编码方法,不过它是由国际组织设计,可以容纳全世界所有语言文字的编码方案。Unicode的学名是"Universal Multiple-Octet Coded Character Set",简称为UCS。UCS可以看作是"Unicode Character Set"的缩写。U... 阅读全文
posted @ 2015-05-13 23:07 IAmAProgrammer 编辑
摘要:通过adb把apk安装到系统分区以谷歌拼音为例:GooglePinyin1.4.2.apk提取出so文件libjni_googlepinyinime_4.solibjni_googlepinyinime_latinime_4.sobat批处理脚本内容如下:path "D:\Program Files... 阅读全文
posted @ 2015-05-09 22:58 IAmAProgrammer 编辑
摘要:Run native executable in Android AppDemo†Here's demo application called "Run Native Exe" to:run local UNIX commandsrun native executable downloaded fr... 阅读全文
posted @ 2015-05-09 18:44 IAmAProgrammer 编辑
摘要:国内常用的开源代码开源中国http://git.oschina.net/ 支持git淘宝http://code.taobao.org/ 支持svn京东https://code.jd.com/ 支持git新浪http://sae.sina.com.cn/ 支持svnCSDNhttps://code.c... 阅读全文
posted @ 2015-05-06 09:49 IAmAProgrammer 编辑
摘要:要用网络调试Android需要设备已经获取root权限如果手机没有命令行工具,请先在手机端安装终端模拟器,然后在终端输入:$su #stop adbd ... 阅读全文
posted @ 2015-05-05 20:55 IAmAProgrammer 编辑
摘要:Here is My code snippet:Uri mUri = Uri.parse("smsto:+9876543210");Intent mIntent = new Intent(Intent.ACTION_SENDTO, mUri);mIntent.setPackage("com.what... 阅读全文
posted @ 2015-05-01 00:47 IAmAProgrammer 编辑

点击右上角即可分享
微信分享提示