-
VB.rar
使用VB的OPC客户访问的最简单程序,本程序为同步访问程序,需要异步的查找ASync-VB.rar-The use of VB
- 2022-04-01 20:27:21下载
- 积分:1
-
清华大学出版社 邵玉斌编写的《通信系统建模与仿真实例分析》一书的所有MATLAB和SIMULINK代码,我自己亲自总结出来的...
清华大学出版社 邵玉斌编写的《通信系统建模与仿真实例分析》一书的所有MATLAB和SIMULINK代码,我自己亲自总结出来的-Tsinghua University Press shaoyubin prepared " Communication System Modeling and Simulation Case Study," a book of all the MATLAB and SIMULINK code, I have summed up in person
- 2022-01-25 16:41:21下载
- 积分:1
-
Mscomm文件发送
Mscomm文件发送-Mscomm
- 2022-01-26 03:56:59下载
- 积分:1
-
gm2621的寄存器说明表及调试用到的gprobe
gm2621的寄存器说明表及调试用到的gprobe-gm2621 register and gProbe file
- 2022-01-31 13:25:11下载
- 积分:1
-
WCDMA for UMTS HSPA Evolution and LTE
WCDMA在UMTS-HSPA演进和LTE中的应用
- 2022-01-23 10:57:35下载
- 积分:1
-
Configure the J2ME development environment for j2me cell phone software installa...
配置J2ME手机软件开发环境
j2me开发环境的安装和配置,方法和指南
视频教程-Configure the J2ME development environment for j2me cell phone software installation and configuration of development environment, methods and guidelines for video tutorials
- 2022-08-26 12:17:50下载
- 积分:1
-
移动开发编程技术文档共享,很文件的技术资料
移动开发编程技术文档共享,很文件的技术资料-move
- 2022-03-20 14:43:37下载
- 积分:1
-
Chinese RFC documents, without translation, the right to study very helpful!
中文RFC文件,无需翻译,对学习很有帮助!
- 2022-02-04 01:21:48下载
- 积分:1
-
关于arinc429协议,阐述了航空标准接口429协议的规则和数据传输的规则...
关于arinc429协议,阐述了航空标准接口429协议的规则和数据传输的规则 -On ARINC429 agreement on standard interface 429 aviation agreement rules and the rules of data transmission
- 2022-09-30 09:45:03下载
- 积分:1
-
VC++ 封装了队列类 /// /// /// ///// //this a example for using Queue /////////////////...
VC++ 封装了队列类 /// /// /// ///// //this a example for using Queue ///////////////////////////////////////// #include "Queue.h" //define queue data struct struct QueueData { char data[20] int nId } //define queue typedef TQueue TMyQueue //put data into queue { QueueData data memset(&data, 0, sizeof(data)) strcpy(data.data, "hello!") data.nId = 0 m_pMyQueue.TryPut(data) } //try put data into queue { QueueData data memset(&data, 0, sizeof(data)) strcpy(data.data, "hello!") data.nId = 0 if(m_pMyQueue.TryPut(data) != 0) { MessageBox("put queue error") } else { MessageBox("put queue success") } } //get data from queue { QueueData data memset(&data, 0, sizeof(data)) m_pMyQueue.Get(data) MessageBox(data.data) } //try get data from queue { QueueData data memset(&data, 0, sizeof(data)) m_pMyQueue.TryGet(data) MessageBox(data.data) }-cohort of VC Packaging category /////////////////////////////////////////// this is a example for using Queue ///////
- 2023-07-24 17:35:03下载
- 积分:1