This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

LPC2378 trying to sample 80 Mhz

Hi,

I am trying to sample an 80 Mhz video signal from an ADC. Obviously, my 12 Mhz LPC can't handle this. Is there a way to slow it down to take a full frame at a time, and ignore the ones it can't grab.

My only other option is a Xilinx chip to buffer the data, and allow the LPC to fetch it from Xilinx as fast as it can.

Parents
  • The only diigital way to slow down a video signal is by sampling it fast enough and then replay the samples at a lower speed. Obviously a solution that manages to sample at the required speed may be able to continue to record if it just have a fast enough (and large enough) memory medium to deliver the samples to.

    Analog slowdown is very problematic at these frequencies, since 80MHz is way faster than the bandwidth of a normal VHS video, and higher-bandwidth analog video solutions gets very, very expensive.

    What is the video signal you want to digitize, and what do you want to do with the digitized info? A normal flat monitor with VGA connector has to sample the analog data at a very high sample rate. There are a number of high-speed ADC available specifically for that kind of signals, but to be able to store the sampled data, you need dedicated high-bandwidth memory. Yuor average microcontroller can not pick upp data at that speed.

Reply
  • The only diigital way to slow down a video signal is by sampling it fast enough and then replay the samples at a lower speed. Obviously a solution that manages to sample at the required speed may be able to continue to record if it just have a fast enough (and large enough) memory medium to deliver the samples to.

    Analog slowdown is very problematic at these frequencies, since 80MHz is way faster than the bandwidth of a normal VHS video, and higher-bandwidth analog video solutions gets very, very expensive.

    What is the video signal you want to digitize, and what do you want to do with the digitized info? A normal flat monitor with VGA connector has to sample the analog data at a very high sample rate. There are a number of high-speed ADC available specifically for that kind of signals, but to be able to store the sampled data, you need dedicated high-bandwidth memory. Yuor average microcontroller can not pick upp data at that speed.

Children