代码搜索:40G通信
找到约 10,000 项符合「40G通信」的源代码
代码结果 10,000
www.eeworm.com/read/247337/12664280
cs submit.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace JeasonZhao.Sms.SGIP.Command
{
///
/// 在SP和SMG的通信中,SP用Submit命令向SMG提交MT短消息,发送到用户的手机中。SMG接收到Submit命令
www.eeworm.com/read/141581/12997163
c ipcfun.c
/***************************************
*文件名:ipcfun.c
*描 述:进程间通信通用函数
*编 写:LHZ
*时 间:2004-05-10
*函 数:
-----消息函数-----------
msg_creat 创建消息队列
msg_open 打开消息队列
msg_remove 删除消息队列
ms
www.eeworm.com/read/326792/13115762
c ds18b20c语言.c
//晶振11.0592
#include"reg51.h"
sbit DQ =P1^4; //定义通信端口
//延时函数
void delay(unsigned int i)
{
while(i--);
}
//初始化函数
Init_DS18B20(void)
{
unsigned char x=0;
DQ = 1; //DQ复位
del
www.eeworm.com/read/319684/13446476
c sci.c
/* 2812A板:
使用直连的串口通信电缆;
启动串口调试助手.exe;
PC机发送一个"."为结束标志
*/
#include "DSP281x_Device.h"
#include "DSP281x_Examples.h"
// Prototype statements for functions found within this file.
void scia_
www.eeworm.com/read/319611/13448254
_h protocol._h
/*
*
* 文件名 : protocol.c
*
* 程序描述:有关CC1100之间通信过程的相关定义
*
* author : 陈思
*
*/
#ifndef PROTOCOL_H
#define PROTOCOL_H
#include "cc1100.h"
// 设置GDO2 为外部中断0,用来检测数据
www.eeworm.com/read/319611/13448270
h protocol.h
/*
*
* 文件名 : protocol.c
*
* 程序描述:有关CC1100之间通信过程的相关定义
*
* author : 陈思
*
*/
#ifndef PROTOCOL_H
#define PROTOCOL_H
#include "cc1100.h"
// 设置GDO2 为外部中断0,用来检测数据
www.eeworm.com/read/317445/13504731
java chatmulticliserver.java
import java.io.*;
import java.net.*;
public class ChatMultiCliServer
//类MultiCliServer是多客户的服务器端程序,该程序通过线程实现多客户通信机制
{
static int clientnumber = 0;
//整型变量clientnumber表示客户端的个数
pub
www.eeworm.com/read/317185/13507949
c i2c.c
/***********************************************************************/
/* 文件名 :I2C.c
/* 芯片 :Atmel AT89C51
/* 作者 :Ericson
/* 日期 :2007.11.15
/* 功能描述:本文件为I2C串行通信协议提供支持,通过AT89C51的P00和P01
www.eeworm.com/read/315241/13548109
asm com.asm
;----------------------------------
; 单片机与PC通信实例
;功能:从PC机串口端接收13个字节的数据,然后将接收到的数据加上
; "Serial Port OK!"的后缀后,发送给PC作为应答
;-----------------------------------
ORG 0000H
JMP STAR ...