代码搜索:SPECIFICATION
找到约 8,023 项符合「SPECIFICATION」的源代码
代码结果 8,023
www.eeworm.com/read/392898/8319847
h desc.h
unsigned char DEV_DESC[]=
{ 18, /*Device Descriptor length*/
1, /*Decriptor type*/
0x00, /*0x0001 is Specification Version (BCD)即符合USB1.0标准*/
0x01,
0x00, /*Device class*/
0x00, /*Device s
www.eeworm.com/read/203024/15367740
h desc.h
unsigned char DEV_DESC[]=
{ 18, /*Device Descriptor length*/
1, /*Decriptor type*/
0x00, /*0x0001 is Specification Version (BCD)即符合USB1.0标准*/
0x01,
0x00, /*Device class*/
0x00, /*Device s
www.eeworm.com/read/125819/6021095
mk spec.mk
# Port specification for the mcs51 port running with uCsim
#
# model small
# path to uCsim
S51A = $(SDCC_DIR)/sim/ucsim/s51.src/s51
S51B = $(SDCC_DIR)/bin/s51
S51 = $(shell if [ -f $(S51A) ]; then e
www.eeworm.com/read/178760/5313701
mk spec.mk
# Port specification for the mcs51 port running with uCsim
#
# model small
# path to uCsim
S51A = $(top_builddir)sim/ucsim/s51.src/s51
S51B = $(top_builddir)bin/s51
S51 = $(shell if [ -f $(S51A) ];
www.eeworm.com/read/442179/1764937
xtp xml.xtp
Resin's XML and XSL support follows the W3C specification.
XML
Resin's XML parser uses the JAXP API.
www.eeworm.com/read/125819/6021090
mk spec.mk
# Port specification for the ds390 port running with uCsim
# path to uCsim
S51A = $(SDCC_DIR)/sim/ucsim/s51.src/s51
S51B = $(SDCC_DIR)/bin/s51
S51 = $(shell if [ -f $(S51A) ]; then echo $(S51A); els
www.eeworm.com/read/178760/5313693
mk spec.mk
# Port specification for the ds390 port running with uCsim
# path to uCsim
S51A = $(top_builddir)sim/ucsim/s51.src/s51
S51B = $(top_builddir)bin/s51
S51 = $(shell if [ -f $(S51A) ]; then echo $(S51A
www.eeworm.com/read/205972/15302813
m fir1.m
%Program:利用矩形窗设计FIR高通滤波器
%filter specification
Wp=0.6*pi;Ws=0.4*pi;Ap=1;As=45;
%determine the length of the filter
N=ceil(1.8*pi/(Wp-Ws));
N=mod(N+1,2)+N;
M=N-1;
fprintf('滤波器的阶数 M=%.0f\n',M
www.eeworm.com/read/205972/15302814
m fir3.m
%Program:利用hamming窗设计FIR高通滤波器
%filter specification
Wp=0.6*pi;Ws=0.4*pi;Ap=1;As=45;
%determine the length of the filter
N=ceil(7*pi/(Wp-Ws));
N=mod(N+1,2)+N;
M=N-1;
fprintf('滤波器的阶数 M=%.0f\n',
www.eeworm.com/read/205972/15302821
m fir2.m
%Program:利用hanning窗设计FIR高通滤波器
%filter specification
Wp=0.6*pi;Ws=0.4*pi;Ap=1;As=45;
%determine the length of the filter
N=ceil(6.2*pi/(Wp-Ws));
N=mod(N+1,2)+N;
M=N-1;
fprintf('滤波器的阶数 M=%.0f\n'