vote up 4 vote down star
2

I have an atmega168 which runs on the internal 8Mhz clock. But I need it to be more accurate than the RC clock can be, so I have a 32768Hz crystal connected to XTAL1 and XTAL2. My plan was to have this crystal be the source of the timer/counter2 clock. I've tried setting the EXCLK bit to 1, but it does not seem to work.

According to the datasheet I should connect and external clock to those pins. If I set AS2 high, then I should connect a crystal Oscillator to those pins. What is the difference then, between a clock, a crystal oscillator and a crystal?

My problem is that I can't get the timer to run on the external crystal. Does anyone know how to get that to work, and maybe explain what I have done wrong?

flag

73% accept rate
to help you albeit: the crystal needs to be connected with condensers to ground, you do not specify that, so you might have forgotten that. I think www.avrfreaks.net might be a better place to search for help :) – lImbus Dec 30 '08 at 15:06
To whom it may concern: please reopen this question. The question is how to program a micro-controller for a certain hardware setup. – starblue Dec 30 '08 at 15:49
I agree. It's a special-function-register programming question – Jason S Dec 30 '08 at 16:00
Pins X1 and X2 are used to connect a crystal to the micro controller core so it will run at the specified frequency. To drive Timer2 from a external crystal you use the pins TOSC1 and TOSC2. By the way, crystal and crystal-osc. are the same here and the clock amplifiers are built into the chip. – Marcelo MD Apr 15 at 22:37

closed as not programming related by Adam Wright Dec 30 '08 at 14:52

2 Answers

vote up 2 vote down check

You need to set EXCLK to 0. Setting it to one is for an external crystal oszillator, but you only got an external crystal, so you need the amplifier part of the oscillator in the controller. Otherwise your setup seems correct (fuses to internal oscillator, AS2=1).

Disclaimer: I've not yet done it myself, I'm reading this from the data sheet.

  • Clock: The rectangular signal that comes out of the oscillator (or dividers etc.).

  • Crystal oscillator: The combination of a crystal and an amplifier which generates a clock signal. The amplifier may be in the micro-controller and you just add the crystal and some capacitors at XTAL1 and XTAL2, or you can buy a standalone crystal oscillator and connect its output to XTAL1.

  • Crystal: A piece of quartz which has a tendency to oscillate at a certain frequency when you put it into the feedback loop of an amplifier. On itself it is a passive component like a capacitor and does nothing.

link|flag
And if that does not work, then the oscillator in the AVR is broken? – Marius Jan 3 '09 at 22:18
vote up 0 vote down

Man im sorry i cant help you and this is not the best place for electronic questions... but i would try to get a hold of an oscilloscope and see whats happening in that pin(if your clock is really working), then i would try a slower crystal and if those didnt work i would go ask over any arduino forum, they use pretty similar chips on some of the boards...

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.