代码搜索:实时接收
找到约 10,000 项符合「实时接收」的源代码
代码结果 10,000
www.eeworm.com/read/326556/13135734
ini test.ini
signal void ky_1()
{
SIN = 0xf0; //串口接收到数据0xf0,注意它是不需要时间的
twatch(4090); //等待4090个机器周期
SIN = 0xf1;
twatch(4090);
SIN = 0xf0;
twatch(4090);
SIN = 0xf0;
www.eeworm.com/read/138628/13227687
h barber.h
#include
#include
#include
#include
#define MAX_MESSAGES 5
#define MAX_MESSAGE_LENGTH 20
MSG_Q_ID msgCustomer;
/*定义一个消息结构体,用于向消息队列发送和从消息队列接收顾客
www.eeworm.com/read/138628/13227690
h hear.h
#include
#include
#include
#include
#define MAX_MESSAGES 5
#define MAX_MESSAGE_LENGTH 20
MSG_Q_ID msgCustomer;
/*定义一个消息结构体,用于向消息队列发送和从消息队列接收顾客
www.eeworm.com/read/138628/13227692
h hear1.h
#include
#include
#include
#include
#define MAX_MESSAGES 5
#define MAX_MESSAGE_LENGTH 20
MSG_Q_ID msgCustomer;
/*定义一个消息结构体,用于向消息队列发送和从消息队列接收顾客
www.eeworm.com/read/324404/13264363
asv rx_combine.asv
function [symbol_sequence,bit_sequence]=rx_combine(rx,channel,use_relay,mrc_rx);
%在接收端合并两路信号,并判决出发送信号序列
global signal;
global relay;
values2analyse=rx.signal2analyse;
switch rx.combining_
www.eeworm.com/read/324404/13264472
m rx_combine.m
function [symbol_sequence,bit_sequence]=rx_combine(rx,channel,use_relay,mrc_rx);
%在接收端合并两路信号,并判决出发送信号序列
global signal;
global relay;
values2analyse=rx.signal2analyse;
switch rx.combining_
www.eeworm.com/read/318458/13478557
c 9-2.c
#include
#include
void main(void)
{
char xdata * XROM;
char a;
int Aa = 0xFB1C;
long Ba = 0x893B7832;
float Ca = 3.4534;
SCON = 0x50; //串口方式1,允许接收
TMOD = 0x20
www.eeworm.com/read/315428/13543001
h uart.h
/*串口初始化函数*/
void uart_init0(void);
/*数据发送,查询方式*/
void uart_transmit0(unsigned char i);
/*数据接收,等待查询方式*/
unsigned char uart_receive0(void);
/*串口初始化函数*/
void uart_init1(void);
/*数据发送,查询方式
www.eeworm.com/read/315428/13543230
h uart.h
/*串口初始化函数*/
void uart_init0(void);
/*数据发送,查询方式*/
void uart_transmit0(unsigned char i);
/*数据接收,等待查询方式*/
unsigned char uart_receive0(void);
/*串口初始化函数*/
void uart_init1(void);
/*数据发送,查询方式
www.eeworm.com/read/315172/13549553
asm temperature.asm
;----------------------------------
; 温度检测实例
;功能:从温度传感器DS18B20读写,然后将接收到的数据
; 直接显示到两个数码管上
;-----------------------------------
; 这是关于DS18B20的读写程序,数据脚P2.2,晶振11.0592m ...