Pin 9. Excellent choice. That's the same pin I use for TinyISP running on a 328 processor.
Thanks, but it just happened that way.
const byte CLOCKOUT = 9;
...
pinMode (CLOCKOUT, OUTPUT);
// set up Timer 1
TCCR1A = _BV (COM1A0); // toggle OC1A on Compare Match
TCCR1B = _BV(WGM12) | _BV(CS10); // CTC, no prescaling
OCR1A = 0; // output every cycle
It happened to be the output for Timer 1. So why shouldn't Timer 1 be working? I am.
Plus we may as well get 8 Mhz out of the thing.
How can I know if the problem comes from bad fuses or if the chip is really dead ?
Try my "fuse settings" calculator:
http://arduino.cc/forum/index.php?topic=105089