代码搜索:协作通信

找到约 10,000 项符合「协作通信」的源代码

代码结果 10,000
www.eeworm.com/read/262863/11387713

htm s06-03.htm

扩频通信-第六讲 跳频系统(3)
www.eeworm.com/read/407865/11409926

htm send_info_win.htm

伴江行办公自动化系统通信工具
www.eeworm.com/read/157772/11665187

htm send_info_win.htm

伴江行办公自动化系统通信工具
www.eeworm.com/read/260934/11685938

htm mpi411.htm

第四章: 集合通信
www.eeworm.com/read/260934/11685964

htm mpi49.htm

第四章: 集合通信
www.eeworm.com/read/346011/11775240

cpp zougaigai.cpp

/* 说明: 加入处理拥塞的方法 */ #include #include #include #include #include #define N 100 // 总节点数 #define R 0.5 // 最大通信距离 #define MAX 4 // 希望的
www.eeworm.com/read/346011/11775277

cpp zou_org.cpp

/* 说明: 不考虑节点拥塞状况 */ #include #include #include #include #include #define N 100 // 总节点数 #define R 0.5 // 最大通信距离 #define MAX 4 // 希望的
www.eeworm.com/read/258945/11830535

cpp huffman.cpp

/*=============================== 程序名:霍夫曼编码 作者:何震 研通信0704班 07120075 注意:没有考虑汉字宽字符,所以请以全英文文件进行测试 如有问题请联系:07120075@bjtu.edu.cn ================================*/ #include #include
www.eeworm.com/read/258339/11868995

h ds18b20.h

#define uchar unsigned char #define uint unsigned int sbit DQ =P2^6; //定义通信端口 uchar disp[6]; //待显示的数据,高3位整数部分,低1位小数部分 //延时函数 void delay(unsigned int i) { while(i--); } //初始
www.eeworm.com/read/343303/11958485

c ds18b20.c

#include "reg52.h" sbit DQ =P3^3; //定义通信端口 //延时函数 void delay(unsigned int i) { while(i--); } //初始化函数 Init_DS18B20() { unsigned char x=0; DQ = 1; //DQ复位 delay(8); /