Sign in

username:

password:



Not a member?

Search compdsp



Search tips

comp.dsp by Keywords

Adaptive Filter | ADPCM | ADSP | ADSP-2181 | Aliasing | AMR | Anti-Aliasing | ARMA | Autocorrelation | AutoCovariance | Beamforming | Bessel | Blackfin | Butterworth | C6713 | CCS | Chebyshev | CIC Filter | Circular Convolution | Code Composer Studio | Comb Filter | Compression | Convolution | Cross Correlation | DCT | Decimation | Deconvolution | Demodulation | DM642 | DSP Boards | DSP/BIOS | DTMF | Echo Cancellation | Equalization | Equalizer | ETSI | EZLITE (Ez-kit Lite) | FFT | FFTW | FIR Filter | Fixed Point | FSK | G.711 | G.723 | G.729 | Gaussian Noise | Goertzel | GPIO | Hilbert Transform | IFFT | IIR Filter | Interpolation | Invariance | JTAG | Kalman | Laplace Transform | Levinson | LPC | McBSP | MIPS | Modulation | MPEG | Multirate | Notch Filter | Nyquist | OFDM | Oversampling | Pink Noise | Pitch | PLL | Polyphase | QAM | QDMA | Quantization | Quantizer | Radar | Random Noise | Reed Solomon | Remez | Resampling | RTDX | Sampling | Sharc | TI C6711 | Undersampling | Viterbi | Wavelets | White Noise | Wiener Filter | Windowing | XDS510PP | Z Transform


Discussion Groups

Free Online Books

See Also

Embedded SystemsFPGAElectronics

Discussion Groups | Comp.DSP | ADSP-2181 reading 16 bit Data lines from EZ kit lite

There are 2 messages in this thread.

You are currently looking at messages 0 to 2.


ADSP-2181 reading 16 bit Data lines from EZ kit lite - Girish - 2004-09-10 05:09:00

Hello all,

Is there any mechanism to read the data on the data pins of ADSP-2181
EZ
kit lite (D0-D23)(or atleast 16 bits) like how we can read using
programmable flags ?(Which can be
made either input or output ports).

In Programmable flags we can do like this

AX0=0xff; //configure programmable flags for o/p
dm(Prog_Flag_Comp_Sel_Ctrl)=AX0;

AY1=0x61; //o/p 61 will appear on PF lines
dm(Prog_Flag_Data)= AY1;

With PF registers only 8 bit data is possible to o/p to outside
world!!!

Is there any method so tht i put my 16 bit data and directly read it
from EZ kit expansion connectors ?

In the same way is it possible to read from D0-D23 lines ?
Wheather Data tht has been put is persistant ?

If not so wheather we have to make what all conditions  we need to
maintain
?
RD(bar) or WR(BAR)  et.c

IS so how to do tht ?

So tht the o/p is made available to outside world.



Bye
Girish
______________________________
New DSP Code Snippets Section now Live.   Learn more about the reward program for contributors here.

Re: ADSP-2181 reading 16 bit Data lines from EZ kit lite - Tim Wescott - 2004-09-10 10:09:00



Girish wrote:

> Hello all,
> 
> Is there any mechanism to read the data on the data pins of ADSP-2181
> EZ
> kit lite (D0-D23)(or atleast 16 bits) like how we can read using
> programmable flags ?(Which can be
> made either input or output ports).
> 
> In Programmable flags we can do like this
> 
> AX0=0xff; //configure programmable flags for o/p
> dm(Prog_Flag_Comp_Sel_Ctrl)=AX0;
> 
> AY1=0x61; //o/p 61 will appear on PF lines
> dm(Prog_Flag_Data)= AY1;
> 
> With PF registers only 8 bit data is possible to o/p to outside
> world!!!
> 
> Is there any method so tht i put my 16 bit data and directly read it
> from EZ kit expansion connectors ?
> 
> In the same way is it possible to read from D0-D23 lines ?
> Wheather Data tht has been put is persistant ?
> 
> If not so wheather we have to make what all conditions  we need to
> maintain
> ?
> RD(bar) or WR(BAR)  et.c
> 
> IS so how to do tht ?
> 
> So tht the o/p is made available to outside world.
> 
> 
> 
> Bye
> Girish

The data bus on the ADSP-2181 is designed to directly interface to 
memory and other memory-mapped peripherals, and acts like any other 
microprocessor bus: the chip strobes data in on the trailing edge of the 
~WR line, and it strobes data onto the bus on the leading edge of the 
~RD line.

You need external hardware to build an I/O port onto this bus.  You 
should find a text or a web page on basic microprocessor circuits -- 
that will have a description of how to interface to your pins.

-- 

Tim Wescott
Wescott Design Services
http://www.wescottdesign.com
______________________________
New DSP Code Snippets Section now Live.   Learn more about the reward program for contributors here.