...{
// Place your code here
TCNT0=0xf0;
}
interrupt [ADC_INT] void adc_isr(void)
{
uint adc_data;
// Read the AD conversion result
adc_data=ADCW;
// Place your code here
switch (ucChannelN)
{
case 0:
if (uiLastADValue[0]!=adc_data)
...