代码搜索:Test
找到约 10,000 项符合「Test」的源代码
代码结果 10,000
www.eeworm.com/read/378254/9239132
dsp test.dsp
# Microsoft Developer Studio Project File - Name="test" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Cons
www.eeworm.com/read/378251/9239369
txt test.txt
初始化步骤:
串行口波特率
确定定时器1的工作方式-TMOD
计算定时器1的处始值-TH1/TL1;
启动定时器1-TR1;
确定串行口的控制-SCON;
中断控制-IE;
应用:波特率为9600bps、8位数据位、1位停止位、无奇偶检验位,从键盘接收的字符可以从串口发出去,从串口接收的字符可以在LCD上显示。
www.eeworm.com/read/181707/9240458
dsw test.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "test"=".\test.dsp"
www.eeworm.com/read/181707/9240459
ncb test.ncb
www.eeworm.com/read/181707/9240461
opt test.opt
www.eeworm.com/read/181707/9240464
plg test.plg
Build Log
--------------------Configuration: test - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\redin\LO
www.eeworm.com/read/181707/9240467
dsp test.dsp
# Microsoft Developer Studio Project File - Name="test" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Cons
www.eeworm.com/read/181707/9240469
c test.c
/************************************************/
/* 程序名称: 递归下降语法分析器 */
/* 实验题目: 识别下列表达式 */
/* E->E+T|T */
/* T->T*F|F */
/* F->(E)|i */
/*********************************************