摘要: http://blog.csdn.net/ky_heart/article/details/52664396 阅读全文
posted @ 2017-05-04 15:13 smile带着你 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 6 Modes of Operation 工作模式 After initializing the 33771 enters one of three basic modes. In Normal mode the device is in full operation performing the 阅读全文
posted @ 2017-04-13 17:12 smile带着你 阅读(3628) 评论(0) 推荐(0) 编辑
摘要: FPC:Filter and Prescaler Cell 21.3.4 Input/Output Line Sharing Block (IOLS) 输入/输出线共享块The I/O Line Sharing Block allows the 56 inputs and 112 outputs o 阅读全文
posted @ 2017-04-13 17:08 smile带着你 阅读(504) 评论(0) 推荐(0) 编辑
摘要: CCP21.pdf 1 1 Introduction 1.1 1.1 ASAP The ASAP task force (Arbeitskreis zur Standardisierung von Applikationssystemen; Englishtranslation: Standardi 阅读全文
posted @ 2017-03-24 10:20 smile带着你 阅读(205) 评论(0) 推荐(0) 编辑
摘要: LDHX #0x0180:将0x180加载到HX寄存器中 TXS:将X寄存器的值给SP中 BSR *-113:SP=SP-2,PC=PC-113,在SP(17f)处存放PC(197f的下一个PC所运行的值)的值 即:PC=1981存放在17f,17e,sp=sp-2,pc=197f-113=190e 阅读全文
posted @ 2017-03-21 10:07 smile带着你 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 4 using namespace std; 5 6 int main() 7 { 8 int *a = (int*)malloc(4); 9 a[0] = 4; 10 int *b = a; 11 12 free(b);//释放了b,a也就释放了 13 return 0; 1... 阅读全文
posted @ 2017-03-15 15:00 smile带着你 阅读(872) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 using namespace std; 3 4 class Base 5 { 6 private: 7 int i; 8 protected: 9 int j; 10 public: 11 int k; 12 }; 13 class Child:public Base//对public继承 14 { 15 publi... 阅读全文
posted @ 2017-03-15 14:34 smile带着你 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 using namespace std; 3 4 class Base 5 { 6 public: 7 Base() 8 { 9 cout << "base" << endl; 10 } //Base的构造函数 11 virtual ~Base() //Base的析构函数 ... 阅读全文
posted @ 2017-03-15 09:45 smile带着你 阅读(865) 评论(0) 推荐(0) 编辑
摘要: 1 // sd.h : main header file for the SD application 2 // 3 4 #if !defined(AFX_SD_H__DB621B01_7480_4661_A977_D2FC564CCA3C__INCLUDED_) 5 #define AFX_SD_H__DB621B01_7480_4661_A977_D2FC564CCA3C__IN... 阅读全文
posted @ 2017-03-14 23:49 smile带着你 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 1:在调用OnNewDocument之后会在内部调用Serialize 2:在调用OnPenNewDoucment之后会在内部调用Serialize 阅读全文
posted @ 2017-03-14 17:30 smile带着你 阅读(431) 评论(0) 推荐(0) 编辑