Show Posts
|
|
Pages: [1] 2 3 ... 11
|
|
2
|
Using Arduino / General Electronics / Re: SPI clock frequency when using ADC
|
on: May 16, 2013, 11:04:23 am
|
|
Thanks. I'm really just trying to figure out if it is possible to damage the IC by overclocking. Seems unlikely. The reason I might want to "take the chance" is that I can't accomplish my goals by limiting myself to 1MHz clock. I need more speed, and that's why I'd like to go faster, at the possible expense of some accuracy.
|
|
|
|
|
3
|
Using Arduino / General Electronics / SPI clock frequency when using ADC
|
on: May 16, 2013, 09:55:38 am
|
|
I'm using a Microchip MCP3201-C ADC (analog to digital converter) in an audio sampling circuit. The datasheet says that the maximum SPI clock frequency for communicating with the IC is 1.6MHz at 5V operating voltage. For my application, I'd like to communicate faster at 2MHz. I am wondering what the ramifications of exceeding the datasheet's clock frequency might be.
Can using a 2MHz SPI clock speed possibly damage the IC?
Or would exceeding the 1.6MHz speed simply cause the analog sampling to be less accurate? I can certainly understand that the datasheet's stated INL and DNL performance characteristics would not be guaranteed if I overclock the communication. But accuracy isn't necessarily critical for my application, and I can't hear any audio sampling quality difference between SPI speeds of 1MHz, 2MHz, or even 8MHz.
In short, if I'm satisfied with the performance, is there any danger that I can damage the IC by using a 2MHz SPI clock speed? Thanks for any insight anyone might have!
|
|
|
|
|
4
|
Using Arduino / Project Guidance / Re: Which Arduino to buy to use with HD video
|
on: November 28, 2012, 04:06:12 pm
|
I agree that if the requirement requires overlay onto an HD signal, then an Arduino isn't going to cut it. I designed the Video Experimenter shield for Arduino, but this only works for a composite video signal. It uses an LM1881 sync separator chip to detect the timing of the video signal, then in Arduino code you can overlay low-res monochrome pixels onto the video. It works well for many applications, but is decidedly low-tech! http://nootropicdesign.com/ve
|
|
|
|
|
11
|
Using Arduino / Displays / Re: 4 digit 7-segment counter with only 1 shift register
|
on: December 02, 2011, 04:45:15 pm
|
Actually, you should not source or sink more than 6mA per pin on a 74HC595 and not more than 70mA for the whole chip. It's not intended to drive LEDs. If you have all 7 segments on at 20mA, that's 140mA. I designed the Digit Shield to use a single 595 and a 74LS247 BCD to 7-segment driver to multiplex four 7-segment displays. Four of the 595 outputs control PNP transistors sourcing current to the common anode displays. The other 4 outputs drive the 4 inputs of the 74LS247 to set the value of the current digit. This approach only requires 3 Arduino pins, plus one more to control the decimal points. The shield uses pins 2,3,4,5. More info: http://nootropicdesign.com/digitshield/
|
|
|
|
|