fix block comment (/**/) within another (#269)

This commit is contained in:
Bruno Bousquet 2019-10-21 22:55:17 -04:00 committed by Josh Stewart
parent f1521b65d8
commit 55cfb60251
1 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ ISR(ADC_vect)
byte nChannel;
int result = ADCL | (ADCH << 8);
/*ADCSRA = 0x6E; */ // ADC disabled by clearing bit 7(ADEN)
//ADCSRA = 0x6E; - ADC disabled by clearing bit 7(ADEN)
//BIT_CLEAR(ADCSRA, ADIE);
nChannel = ADMUX & 0x07;
@ -102,7 +102,7 @@ ISR(ADC_vect)
AnChannel[nChannel-1] = result;
//BIT_SET(ADCSRA, ADIE);
/*ADCSRA = 0xEE; */ // ADC Interrupt Flag enabled
//ADCSRA = 0xEE; - ADC Interrupt Flag enabled
}
*/
ISR(ADC_vect)