代码搜索:串行端口
找到约 10,000 项符合「串行端口」的源代码
代码结果 10,000
www.eeworm.com/read/275009/10839830
txt 目录.txt
目 录
序
前言
第一部分 Linux网络管理员指南
第1章 网络基础 3
1.1 UUCP网络 3
1.2 TCP/IP网络 5
1.2.1 TCP/IP网络入门 5
1.2.2 以太网 6
1.2.3 其他类型的硬件 7
1.2.4 网际协议 8
1.2.5 串行线路网际协议 9
www.eeworm.com/read/418085/10965215
plg serialadcpro.plg
礦ision2 Build Log
Project:
L:\著作\51单片机实用程序设计典型实例\书稿和光盘\第9章 基于TLC549的串行AD转换\proc\SerialADCPro.uv2
Project File Date: 12/05/2005
Output:
www.eeworm.com/read/128091/6959826
asm daima29.asm
;主程序
ORG 0000H
AJMP START
ORG 30H
START: MOV SP,#6FH
MOV 65H,#0
MOV 64H,#1
MOV 63H,#2
MOV 62H,#3
MOV 61H,#4
MOV 60H,#5
LCALL DISP
SJMP $
DISP: MOV SCON,#00H ;初始化串行口方式0
M
www.eeworm.com/read/453338/7422334
asm adisplay_s.asm
;ADISPLAY_S.ASM 串行口显示子程序
;功能: DP-51板显示测试子程序
;说明: 显示从DBUF0指定单元开始的5个数据
;定义变量
DBUF0 DATA 40H ;显示缓冲区首址
DBUF1 DATA 41H
DBUF2 DATA 42H
D
www.eeworm.com/read/296527/8097573
plg serialadcpro.plg
礦ision2 Build Log
Project:
L:\著作\51单片机实用程序设计典型实例\书稿和光盘\第9章 基于TLC549的串行AD转换\proc\SerialADCPro.uv2
Project File Date: 12/05/2005
Output:
www.eeworm.com/read/196313/8099967
plg serialadcpro.plg
礦ision2 Build Log
Project:
L:\著作\51单片机实用程序设计典型实例\书稿和光盘\第9章 基于TLC549的串行AD转换\proc\SerialADCPro.uv2
Project File Date: 12/05/2005
Output:
www.eeworm.com/read/246528/12720706
txt vbcom3.txt
Private Sub Form_Load()
MSComm1.CommPort = 1 '使用串行口1
MSComm1.Settings = "4800,N,8,1" '波特率4800,无校验,8个数据位,1个停止位。
MSComm1.InputLen = 1 '当使用MSComm1.Input时,每次从接收缓冲区取一个字节。
TestTi
www.eeworm.com/read/323663/13327914
plg cx03.plg
礦ision2 Build Log
Project:
F:\程序\51单片机经典实例篇\第12章 串行通讯\12.5 发送到电脑的一封信\CX03.uv2
Project File Date: 01/07/2007
Output:
www.eeworm.com/read/304476/13792861
c text1.c
#include
#include
Uart_Init();
sbit P10 = 0x90;
xdata int nCounter=0;
main()
{ Uart_Init();/* 串行口初始化 */
TMOD=0x21; /* 定时器0工作在方式1 */
TH0=0x3C; /* 计数初值写入TH0 */
TL0=0xAF; /
www.eeworm.com/read/304476/13793441
txt 中断程序框架.txt
ORG 0000H
LJMP START
ORG 0003H ;外部中断0
LJMP INT0_ISR
ORG 000BH ;定时器中断0
LJMP TIMER0 ;
ORG 0013H ;?
LJMP INT1_ISR ;外部中断1
ORG 001BH ;
LJMP TIMER1 ;定时器中断1
ORG 0023H ;串行口中断
LJMP