Zitat Zitat von ATmega8, pp.195
In Free Running mode, the ADC is constantly sampling and updating the ADC Data Register. Free Running mode is selected by writing the ADFR bit in ADCSRA to one. The first conversion must be started by writing a logical one to the ADSC bit in ADCSRA. In this mode the ADC will perform successive conversions independently of whether the ADC Interrupt Flag, ADIF is cleared or not.
Aber das macht wohl nicht ganz das, was du willst...

Besser ist wohl single shot. in main (Prinzip):
  1. ADC-Port wählen
  2. Konvertierung starten (single shot)
  3. Wert wegwerfen
  4. ADC-IRQ-Flag resetten
  5. ADC-IRQ erlauben
  6. sei()
  7. Konvertierung starten (single shot)
  8. Hauptschleife


In der ADC-ISR:
  1. ADC-Wert sichern
  2. ADC-Port wählen
  3. ADC starten (single shot)


In deinem Fall hast du 3 ADC-Werte, die zu sichern sind.

::EDIT::

Nochwas: Der ADC sollte nich über 200kHz getaktet sein.