代码搜索:Processors
找到约 2,733 项符合「Processors」的源代码
代码结果 2,733
www.eeworm.com/read/262892/11386784
cpp handler.cpp
/**
* Handler - Solution for no dynamic loading
*
* @author Jonathan Roewen
*/
#include "Handler.h"
#include "Match.h"
#include "Responder.h"
#include "TemplateProcessor.h"
#include "Br
www.eeworm.com/read/262892/11386844
cpp templateprocessor.cpp
/**
* TemplateProcessor - The big dude on campus
*
* @author Jonathan Roewen
*/
#include "TemplateProcessor.h"
#include "Responder.h"
#include "Handler.h"
#include
using name
www.eeworm.com/read/255528/12076758
asm pidint.asm
;******************************************************************************
;* This file contains PID functions with interrupt.
;********************************************************
www.eeworm.com/read/231148/14253179
txt _1.txt
Lecture 1--DSP芯片简介
(An Introduction to DSPs)
内容简介:
本讲主要介绍DSP芯片的发展历史和当前发展概况,介绍DSP芯片的体系结构和功能特点。
数字信号处理(Digital Signal Processing, DSP)是指为得到满足人们需要的信号形式而对数字化的信号进行处理的数学原理、方法和手段。数字信号处理已广泛应用于包括通 ...
www.eeworm.com/read/116795/14953766
dox uart2.dox
/** \defgroup uart2 uart2: Dual UART (serial port) Driver/Function Library for the Mega161 and Mega128
This library provides both buffered and unbuffered transmit and receive functions for AVR proc
www.eeworm.com/read/116795/14954437
dox ata.dox
/** \defgroup ata ata: IDE/ATA Interface Driver
(for IDE/ATA hard disks and CF Cards)
This library provides an interface from AVR processors to IDE/ATA hard disks.
www.eeworm.com/read/217158/14976348
m sunni.m
function sunni(maxp)
f1=0.10;
f2=0.05;
f3=0.01;
for p=1:maxp
s1(p)=s(f1, p);
s2(p)=s(f2, p);
s3(p)=s(f3, p);
end
ip=1:maxp;
plot(ip,s1,ip,s2,ip,s3);
legend('f=10%','f=5%','f=1%'
www.eeworm.com/read/217158/14976351
m gustafson.m
function amdahl(maxp)
f1=0.10;
f2=0.05;
f3=0.01;
for p=1:maxp
s1(p)=f1+(1-f1)*p;
s2(p)=f2+(1-f2)*p;
s3(p)=f3+(1-f3)*p;
end
ip=1:maxp;
plot(ip,s1,ip,s2,ip,s3);
legend('f=10%','f=
www.eeworm.com/read/217158/14976362
m isoeff.m
function isoeff
p1=1:1024;w1=p1/2;
p2=1:512;w2=p2.^(5/4) / 2.2;
p3=1:128;w3= 13 * (2.^(p3/20) - 1);
plot(p1,w1,p2,w2,p3,w3);
legend('Very good','Satisfactory','Poor');
xlabel('Number of processo
www.eeworm.com/read/217158/14976364
m amdahl.m
function amdahl(maxp)
f1=0.10;
f2=0.05;
f3=0.01;
for p=1:maxp
s1(p)=1/(f1+(1-f1)/p);
s2(p)=1/(f2+(1-f2)/p);
s3(p)=1/(f3+(1-f3)/p);
end
ip=1:maxp;
plot(ip,s1,ip,s2,ip,s3);
legend