代码搜索:3G通信
找到约 10,000 项符合「3G通信」的源代码
代码结果 10,000
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); /
www.eeworm.com/read/342460/12019239
c to_pc.c
#include
#define uchar unsigned char
#define uint unsigned int
uchar rebyte=0;
idata uchar chint; //通信定义
bit flag_232C;
bit flag_COM;
bit cf;//校验标志位
bdata ab;
sbit abit0=ab^0;sb
www.eeworm.com/read/153549/12028537
txt vb程序.txt
//---------------------------------------SComm控件的常用属性和方法-----------------------------
Commport;设置或返回串口号。
SettingS:以字符串的形式设置或返回串口通信参数。
Portopen:设置或返回串口状态。
InputMode:设置或返回接收数据的类型。
Inputlen:设置或返回
www.eeworm.com/read/254741/12121292
frm mainfrm.frm
VERSION 5.00
Object = "{648A5603-2C6E-101B-82B6-000000000014}#1.1#0"; "MSCOMM32.OCX"
Begin VB.Form Form1
BackColor = &H00FFFF80&
Caption = "调试FX-30MR 通信"
ClientHeight
www.eeworm.com/read/250944/12374528
h uart.h
#ifndef _UART_h_
#define _UART_h_
#include"common.h"
#define fosc 8000000 // 8MHz
#define baud 4800 //通信 波特率
void Uart_Init(void); //8位数据 +1位STOP位,9600 baud
void Uart_put