-
基于观看游戏C166 OSE操作系统
OSE操作系统下基于c166的推箱子游戏-OSE operating system based on the viewing games c166
- 2022-05-28 10:40:18下载
- 积分:1
-
for two serial data exchange, and at the same time detecting serial packet, seri...
用于两个串口数据交换,并同时检测串口报文,适用于串口数据诊断。-for two serial data exchange, and at the same time detecting serial packet, serial data applicable to the diagnosis.
- 2022-04-26 19:39:19下载
- 积分:1
-
移动通讯服务:ISUP协议的分析、应用。
移动通讯服务:ISUP协议的分析、应用。-Mobile communications services: ISUP protocol analysis, application.
- 2022-05-22 22:34:22下载
- 积分:1
-
introduces a general programmable interface based on the Universal Serial Bus
介绍了一种基于通用可编程接口的通用串行总线-高级技术配件解决方案,将普通硬盘转化为Usb Mass Storage.-introduces a general programmable interface based on the Universal Serial Bus-senior technical accessories solution that will drive into ordinary Usb Mass Storage.
- 2022-12-06 14:00:03下载
- 积分:1
-
对线性均衡、判决反馈均衡和最大似然序列估计均衡等三种方法的实现和误码率的分析。...
对线性均衡、判决反馈均衡和最大似然序列估计均衡等三种方法的实现和误码率的分析。-Of linear balanced, decision feedback equalizer and maximum likelihood sequence estimation of three methods such as balanced realization and BER analysis.
- 2022-01-30 14:13:59下载
- 积分:1
-
IOCP模型例子
IOCP全称I/O Completion Port,中文译为I/O完成端口。IOCP 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-03-03 21:40:38下载
- 积分:1
-
这是一个控制程序,用于学校英语听力室中老师与学生之间的交互教学。...
这是一个控制程序,用于学校英语听力室中老师与学生之间的交互教学。-This is a control procedure for the hearing room school English teachers and students between the interactive teaching.
- 2022-08-04 08:16:28下载
- 积分:1
-
使用tapi进行拨号并在两台机器间校对时间的程序
使用tapi进行拨号并在两台机器间校对时间的程序-Program which uses tapi to dial and checks time difference between two machines
- 2022-05-31 05:47:34下载
- 积分:1
-
时间同步协议实验库文件,无线传感器网络实验可用。
时间同步协议实验库文件,无线传感器网络实验可用。-Experimental protocol time synchronization library, wireless sensor networks can be used experiments.
- 2022-03-29 07:32:21下载
- 积分: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