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 | McBSP versus GPIO

There are 3 messages in this thread.

You are currently looking at messages 0 to 3.


McBSP versus GPIO - sciencequest - 2007-02-05 07:33:00

hello all
            a newbie here
I was looking for some information on GPIO and McBSP
Can some one explain me difference/similarities/general concepts...some
pointer will be good too

Thanks
SQ



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

Re: McBSP versus GPIO - Brad Griffis - 2007-02-05 08:31:00



sciencequest wrote:
> hello all
>             a newbie here
> I was looking for some information on GPIO and McBSP
> Can some one explain me difference/similarities/general concepts...some
> pointer will be good too
> 
> Thanks
> SQ
> 
> 
> 

GPIO = General Purpose I/O
McBSP = Multi-channel Buffered Serial Port

GPIO would be used for things such as turning an LED on/off or perhaps 
enabling/disabling some other device.  In general it is good for things 
that have on/off states.

The McBSP is for doing communication.  It could be used to talk to an 
A/D and/or D/A.  You could also use it as a chip-to-chip connection to 
send data back and forth between two devices.  It has a clock, 
frame-sync, and data line for both transmit and receive.

Sometimes people will use GPIO to do communications.  This is often 
called "bit banging" because you need to do a whole bunch of writes to 
the GPIO to mimic things like clocks, etc.  Generally "bit banging" is 
done in order to save money by squeezing into a cheaper part that 
doesn't have all the interfaces you need.
______________________________
New DSP Code Snippets Section now Live.   Learn more about the reward program for contributors here.

Re: McBSP versus GPIO - JudePr. - 2007-02-07 01:22:00

You could find much details of McBSP in Peripherals Guide at
www.ti.com
Alternatively, TMS320C6000 DSP Multichannel Buffered Serial Port
( McBSP) Reference Guide (Rev. G) would also help.

- Jude

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