mrengineer (03.05.2012 13:35, просмотров: 132) ответил rezident на Только после того, как вы уточните про какой именно модуль АЦП идет речь: ADC8, ADC10, ADC10A, ADC10B, ADC12, ADC12A, SD16, SD16_A, SD24, который из них?
rezident, спасибо Я уже нашел нужное. Привожу, вдруг кому еще нужно будет
//ADC ISR
ADC12CTL0 = ADC12SHT02 + ADC12ON; // Sampling time, ADC12 on
ADC12CTL1 = ADC12SHP; // Use sampling timer
ADC12IE = 0x01; / Enable interrupt
ADC12CTL0 |= ADC12ENC;
P2DIR &= ~(BIT5|BIT4|BIT2|BIT3); // P2.5, P2.4, P2.2 and P2.3 -> input direction
P2SEL |= (BIT5|BIT4|BIT2|BIT3); // P2.5, P2.4, P2.2 and P2.3 -> ADC12 function
_BIS_SR(GIE); // Global Interrupt enabled. Do this at the END of the initialization!
#pragma vector=ADC12_VECTOR
__interrupt void ADC12_ISR(void){
RED_LED_On;
}