代码搜索:AD测试
找到约 10,000 项符合「AD测试」的源代码
代码结果 10,000
www.eeworm.com/read/319358/13453088
m51 ad.m51
BL51 BANKED LINKER/LOCATER V4.13 05/25/2007 13:54:27 PAGE 1
BL51 BANKED LINKER/LOCATER V4.13, INVOKED BY:
C:\KEIL\C51\BIN\BL51.EXE main.o
www.eeworm.com/read/319358/13453090
bak ad_opt.bak
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
DaveTm { 0,0,0,0,0,0,0,
www.eeworm.com/read/319306/13456106
res ad9852.res
www.eeworm.com/read/319306/13456109
dof ad9852.dof
[Compiler]
A=1
B=0
C=1
D=1
E=0
F=0
G=1
H=1
I=1
J=1
K=0
L=1
M=0
N=1
O=1
P=1
Q=0
R=0
S=0
T=0
U=0
V=1
W=0
X=1
Y=1
Z=1
ShowHints=1
ShowWarnings=1
UnitAliases=WinTypes=Windows;
www.eeworm.com/read/319306/13456111
cfg ad9852.cfg
-$A+
-$B-
-$C+
-$D+
-$E-
-$F-
-$G+
-$H+
-$I+
-$J+
-$K-
-$L+
-$M-
-$N+
-$O+
-$P+
-$Q-
-$R-
-$S-
-$T-
-$U-
-$V+
-$W-
-$X+
-$YD
-$Z1
-cg
-AWinTypes=Windows;WinProcs=Windows;Dbi
www.eeworm.com/read/319306/13456112
exe ad9852.exe
www.eeworm.com/read/319306/13456113
dpr ad9852.dpr
program ad9852;
uses
Forms,
main in 'main.pas' {Form_main};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm_main, Form_main);
Application.Run;
end.
www.eeworm.com/read/319278/13456533
c ad_interrupt.c
/*------------------------------------------------------------------------------
AD_Interrupt.C: MSC 1210 A/D Conversion for 1 input signals (-2.5V ... +2.5V)
Inputs pairs AIN0-AI
www.eeworm.com/read/319278/13456541
opt ad_interrupt.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {
www.eeworm.com/read/319039/13464010
c soft_ad.c
/*软件A/D所能实现的精度有限,测量电压范围是2-15V,
而且速度低(约1KHz),但仅用一个电容和一个电阻的诱惑
力,我想大虾您会笑纳的。用于某些场合是有用的。
原理是利用470K电阻对1uF电容充电,利用P0.0口作为检测电压,
当电压低于1/3 VCC时,P0.0读入的I/O电平为0,当充电电压超过
1/3 VCC时,P0.0读入的I/O电平为1。通过测量此过程所用的时间, ...