10 2013 档案

摘要: 阅读全文
posted @ 2013-10-31 08:22 IAmAProgrammer 编辑
摘要:/* 读取stm32的unique id 与 flash size*//* func: unsigned int Read_UniqueID_Byte(unsigned char offset) desc: This function is used to read the unique ID in flash. parameter offset is the byte offset ,the max is 96/8= 12. return: the return value is indicated part of the unique ID.*/unsigned cha... 阅读全文
posted @ 2013-10-24 20:46 IAmAProgrammer 编辑
摘要:◆Lover 情人(不是:爱人)◆Sporting house 妓院(不是:体育室)◆Dead president 美钞(不是:死了的总统)◆Service station 加油站(不是:服务站)◆Rest room 厕所(不是:休息室)◆Busboy 餐馆勤杂工(不是:公汽售票员)◆Dry goo... 阅读全文
posted @ 2013-10-24 19:41 IAmAProgrammer 编辑
摘要:tid_t tid = get_struc_id ( "foo_type" ) ; struc_t * sptr = get_struc ( tid ); if ( sptr == NULL ) { tid = add_struc ( BADNODE, "foo_type" ) ; sptr = get_struc ( tid ); if ( sptr == NULL ) return; add_struc_member ( sptr, "memb0", 0, dwrdflag(), NULL, 4 ); add_... 阅读全文
posted @ 2013-10-21 07:23 IAmAProgrammer 编辑
摘要:Virtual Treeview是一套Delphi下优秀的VCL控件,代码质量高,使用灵活、功能强大、性能非常好,可以用于表达Treeview和表格类数据。它的代码现在托管在google code上。Virtual Treeview是一个“纯VCL”控件,这意味着它不是基于任何系统控件,而是重新编写的。正如它的名字已经表明,这个控件与其他这类控件相比,使用了一个不同的树管理模式。它不知道它所管理的数据是什么东西(除了它的大小),甚至没有一个节点的标题。一切都获取于通过应用程序的事件(或通过派生覆盖方法)。Virtual Treeview是经过精心设计和彻底的测试。这个控件证明了它的概念以及在许 阅读全文
posted @ 2013-10-11 19:49 IAmAProgrammer 编辑
摘要:http://msdn.microsoft.com/zh-cn/library/vstudio/hf9hbf87.aspx Carson 31.95 05/01/2001 MSPress WA 在 XML 文档结构中,此图中的每个圆圈表示一个节点(称为XmlNode对象)。XmlNode对象是 DOM 树中的基本对象。XmlDocument类(扩展XmlNode)支持用于对整个文档执行操作(例如,将文档加载到内存中或将 XML 保存到文件中)的方法。此外,XmlDocument提供了查... 阅读全文
posted @ 2013-10-07 13:24 IAmAProgrammer 编辑
摘要:Using TXMLDocumentThe starting point for working with an XML document is theXml.XMLDoc.TXMLDocumentcomponent.The following steps describe how to use TXMLDocument to work directly with an XML document:Add aTXMLDocumentcomponent to your form or data module.TXMLDocumentappears on the Internet category 阅读全文
posted @ 2013-10-04 23:24 IAmAProgrammer 编辑
摘要:http://www.simdesign.nl/xml.htmlThis software component contains a small-footprint Object Pascal (Delphi) XML implementation that allows to read and write XML documents. You basically only need one unit and you can simply add it to the "uses" clause.You can use this software to read XML do 阅读全文
posted @ 2013-10-04 15:35 IAmAProgrammer 编辑
摘要:http://delphi.wikia.com/wiki/CompilerVersion_ConstantThe CompilerVersion constant identifies the internal version number of the Delphi compiler.It is defined in the System unit and may be referenced either in code just as any other constant:if CompilerVersion = 20 then sCompilerName:= 'Delphi 20 阅读全文
posted @ 2013-10-03 11:41 IAmAProgrammer 编辑
摘要:{ TFileStream create mode } fmCreate = $FF00; { Create a file with the given name. If a file with the given name exists, open the file in write mode. } fmExclusive = $0004; { when used with FileCreate, atomically creates the file only if it doesn't exist, fails otherwise } fmOpe... 阅读全文
posted @ 2013-10-03 10:44 IAmAProgrammer 编辑
摘要:_.svd --> ARM Ltd. ARM ARMCM3xxx ARMCM3 1.2 ARM 32-bit Cortex-M3 Microcontroller based de... 阅读全文
posted @ 2013-10-03 09:42 IAmAProgrammer 编辑
摘要:http://www.keil.com/pack/doc/cmsis/svd/html/group__schema__1__1__gr.html ... 阅读全文
posted @ 2013-10-03 09:21 IAmAProgrammer 编辑
摘要:http://www.keil.com/pack/doc/cmsis/svd/html/modules.htmlSVD File Schema LevelsDevice Level Peripherals Level Registers Level Fields Level Enumerated Values LevelCMSIS-SVD Schema File Ver. 1.0http://www.keil.com/pack/doc/cmsis/svd/html/group__schema__gr.htmlCMSIS-SVD Schema File Ver. ... 阅读全文
posted @ 2013-10-03 00:36 IAmAProgrammer 编辑
摘要:CMSIS 到底是什么?先来看看ARM公司对CMSIS的定义:ARM® Cortex™ 微控制器软件接口标准 (CMSIS) 是 Cortex-M 处理器系列的与供应商无关的硬件抽象层。CMSIS 可实现与处理器和外设之间的一致且简单的软件接口,从而简化软件的重用,缩短微控制器开发人员新手的学习过程,并缩短新设备的上市时间。软件的创建是嵌入式产品行业的一个主要成本因素。通过跨所有 Cortex-M 芯片供应商产品将软件接口标准化(尤其是在创建新项目或将现有软件迁移到新设备时),可以大大降低成本。我们知道,不同厂家,比如FSL,ST,Energy Micro等不同厂家的内核都是使用Co 阅读全文
posted @ 2013-10-02 21:45 IAmAProgrammer 编辑
摘要:Git的文件主要处于三种状态,分别是staged,modified,committed。Git文件流转有三个区域,分别是工作区域、索引区域、本地数据区域。要修改对一个文件进行操作,首先要看下这个文件的状态。工作目录下面的所有文件都不外乎这两种状态:已跟踪或未跟踪。已跟踪的文件是指本来就被纳入版本控制管理的文件,在上次快照中有它们的记录,工作一段时间后,它们的状态可能是未更新,已修改或者已放入暂存区。而所有其他文件都属于未跟踪文件。它们既没有上次更新时的快照,也不在当前的暂存区域。初次克隆某个仓库时,工作目录中的所有文件都属于已跟踪文件,且状态为未修改。下面的这张表充分说明了不同状态间的切换。针 阅读全文
posted @ 2013-10-01 18:55 IAmAProgrammer 编辑
摘要:http://www.cnblogs.com/lwme/archive/2012/12/25/configuring-git-server-and-client-on-windows.html]选择Git服务器部署策略找了一圈,发现如下方法来架设Git服务器:Bonobo Git Server:http://www.chodounsky.net/bonobo-git-server/需要IIS6+/.net 4/asp.net MVC 3,官方提供了比较详细的安装说明,但据说问题不少WebGit.NET:https://github.com/otac0n/WebGitNet/wiki/Getti 阅读全文
posted @ 2013-10-01 17:06 IAmAProgrammer 编辑

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