<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_smart_qiang</title><subtitle type="text">我的嵌入式之路</subtitle><id>http://feed.cnblogs.com/blog/u/51449/rss</id><updated>2009-06-18T13:58:05Z</updated><author><name>陈广强</name><uri>http://www.cnblogs.com/smart_qiang/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/smart_qiang/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/51449/rss"/><entry><id>http://www.cnblogs.com/smart_qiang/archive/2009/06/18/1506180.html</id><title type="text">0阻值电阻的作用</title><summary type="text">*模拟地和数字地单点接地* 　　只要是地，最终都要接到一起，然后入大地。如果不接在一起就是"浮地"，存在压差，容易积累电荷，造成静电。地是参考0电位，所有电压都是参考地得出的，地的标准要一致，故各种地应短接在一起。人们认为大地能够吸收所有电荷，始终维持稳定，是最终的地参考点。虽然有些板子没有接大地，但发电厂是接大地的，板子上的电源最终还是会返回发电厂入地。如果把模拟地和数字地大面积直接相连，会导致...</summary><published>2009-06-18T13:58:00Z</published><updated>2009-06-18T13:58:00Z</updated><author><name>陈广强</name><uri>http://www.cnblogs.com/smart_qiang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/smart_qiang/archive/2009/06/18/1506180.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/smart_qiang/archive/2009/06/18/1506180.html"/></entry><entry><id>http://www.cnblogs.com/smart_qiang/archive/2009/05/31/1493002.html</id><title type="text">ADS下C语言的入口方式和ROM镜像文件的生成(转）</title><summary type="text">这部分介绍下ADS下如何生成可以运行的ROM镜像文件，我们知道当程序下载到flash中运行的时候，对于RW、ZI数据就存在着两个环境，一个load环境，一个是exec环境，有时候由于速度的需要RO数据也要重新加载，那么对RO数据也是有两个环境。编译器产生ROM镜像文件时候，这三块数据的存放依次为RO、RW、ZI，并且地址空间时连续的。但是到了运行的时候，RW数据必须被拷贝到SDRAM（SRAM）中...</summary><published>2009-05-31T08:11:00Z</published><updated>2009-05-31T08:11:00Z</updated><author><name>陈广强</name><uri>http://www.cnblogs.com/smart_qiang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/31/1493002.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/31/1493002.html"/></entry><entry><id>http://www.cnblogs.com/smart_qiang/archive/2009/05/27/1490718.html</id><title type="text">S3C2440时钟详细描述(转）</title><summary type="text">S3C2440 CPU默认的工作主频为12MHz或16.9344MHz，这里使用最多的是12M。使用PLL电路可以产生更高的主频供CPU及外围器件使用。  S3C2440有两个PLL：MPLL和UPLL，UPLL专用与USB设备。MPLL用于CPU及其他外围器件。 通过MPLL会产生三个部分的时钟频率：FCLK、HCLK、PLCK。FCLK用于CPU核，HCLK用于AHB总线的设备(比如SDRAM...</summary><published>2009-05-27T03:44:00Z</published><updated>2009-05-27T03:44:00Z</updated><author><name>陈广强</name><uri>http://www.cnblogs.com/smart_qiang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/27/1490718.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/27/1490718.html"/></entry><entry><id>http://www.cnblogs.com/smart_qiang/archive/2009/05/26/1489339.html</id><title type="text">模拟电路常识篇</title><summary type="text">1、在一个大的电容上还并联一个小电容的原因 因为大电容由于容量大，所以体积一般也比较大，且通常使用多层卷绕的方式制作（动手拆过铝电解电容应该会很有体会，没拆过的也可以拿几种不同的电容拆来看看，不过要注意安全，别弄伤手），这就导致了大电容的分布电感比较大（也叫等效串联电感，英文简称ESL）。大家知道，电感对高频信号的阻抗是很大的，所以，大电容的高频性能不好。而一些小容量电容则刚刚相反，由于容量小，因...</summary><published>2009-05-26T01:43:00Z</published><updated>2009-05-26T01:43:00Z</updated><author><name>陈广强</name><uri>http://www.cnblogs.com/smart_qiang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/26/1489339.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/26/1489339.html"/></entry><entry><id>http://www.cnblogs.com/smart_qiang/archive/2009/05/09/1453176.html</id><title type="text">C++ 的引用 指针和引用的区别 </title><summary type="text">引用（reference）是c++的初学者比较容易迷惑的概念。下面我们比较详细地讨论引用。 一、引用的概念引用引入了对象的一个同义词。定义引用的表示方法与定义指针相似，只是用&amp;amp;代替了*。例如： Point pt1(10,10);Point &amp;amp;pt2=pt1; 定义了pt2为pt1的引用。通过这样的定义，pt1和pt2表示同一对象。需要特别强调的是引用并不产生对象的副本，仅仅是对象的...</summary><published>2009-05-09T06:33:00Z</published><updated>2009-05-09T06:33:00Z</updated><author><name>陈广强</name><uri>http://www.cnblogs.com/smart_qiang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/09/1453176.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/09/1453176.html"/></entry><entry><id>http://www.cnblogs.com/smart_qiang/archive/2009/05/03/1447998.html</id><title type="text">Visual C++ MFC 简明教程--第四部分：消息映射 （转）</title><summary type="text"/><published>2009-05-02T16:51:00Z</published><updated>2009-05-02T16:51:00Z</updated><author><name>陈广强</name><uri>http://www.cnblogs.com/smart_qiang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/03/1447998.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/03/1447998.html"/></entry><entry><id>http://www.cnblogs.com/smart_qiang/archive/2009/05/03/1447997.html</id><title type="text">Visual C++ MFC 简明教程--第三部分：MFC样式（转）</title><summary type="text"/><published>2009-05-02T16:50:00Z</published><updated>2009-05-02T16:50:00Z</updated><author><name>陈广强</name><uri>http://www.cnblogs.com/smart_qiang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/03/1447997.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/03/1447997.html"/></entry><entry><id>http://www.cnblogs.com/smart_qiang/archive/2009/05/03/1447996.html</id><title type="text">Visual C++ MFC 简明教程--第二部分：一个简单的MFC （转）</title><summary type="text"/><published>2009-05-02T16:49:00Z</published><updated>2009-05-02T16:49:00Z</updated><author><name>陈广强</name><uri>http://www.cnblogs.com/smart_qiang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/03/1447996.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/03/1447996.html"/></entry><entry><id>http://www.cnblogs.com/smart_qiang/archive/2009/05/03/1447995.html</id><title type="text">Visual C++ MFC 简明教程--第一部分：MFC导论(转）</title><summary type="text"/><published>2009-05-02T16:48:00Z</published><updated>2009-05-02T16:48:00Z</updated><author><name>陈广强</name><uri>http://www.cnblogs.com/smart_qiang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/03/1447995.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/03/1447995.html"/></entry><entry><id>http://www.cnblogs.com/smart_qiang/archive/2009/05/02/1447852.html</id><title type="text">CComboBox控件详解 转</title><summary type="text"/><published>2009-05-02T09:41:00Z</published><updated>2009-05-02T09:41:00Z</updated><author><name>陈广强</name><uri>http://www.cnblogs.com/smart_qiang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/02/1447852.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/smart_qiang/archive/2009/05/02/1447852.html"/></entry></feed>
