X-Git-Url: http://www.average.org/gitweb/?p=sensor-light.git;a=blobdiff_plain;f=msp430%2Fmain.c;h=b3eb36f5028f3c93debc0d736c407c5ca91e7c87;hp=5d03cca04d33314f26f55b56db6791904824b907;hb=e4103ba7e965373201b1e22f193fe9d72304aa22;hpb=058ef70c8107e74aca0f3e3f7291fc8e75143e9c diff --git a/msp430/main.c b/msp430/main.c index 5d03cca..b3eb36f 100644 --- a/msp430/main.c +++ b/msp430/main.c @@ -4,6 +4,21 @@ static volatile unsigned int ADC_Result; static volatile unsigned int irq_events = 0; enum {ev_btn1 = 0, ev_btn2, ev_pir1, ev_pir2, ev_tmr, ev_adc, ev_MAX}; +#ifdef ADCSC /* Let us hope that this is a "new" model */ +# define BIT_RL BIT0 +# define BIT_GL BIT1 +# define PBTN(x) P2##x +# define BIT_BTN BIT3 +# define HAVE_BTN2 +# define BIT_BTN2 BIT7 +#else +# define BIT_RL BIT0 +# define BIT_GL BIT6 +# define PBTN(x) P1##x +# define BIT_BTN BIT3 +# define BIT_BTN2 0 +#endif + int main(void) { int Duty_Cycle = 1; @@ -13,55 +28,79 @@ int main(void) WDTCTL = WDTPW | WDTHOLD; // stop watchdog timer // Configure GPIO Out - P1DIR |= BIT0|BIT1|BIT2; // Set P1.0&1&2/LEDs to output direction - P1OUT &= ~(BIT0|BIT1); // P1.0&1 LEDs off - P1SEL1 |= BIT2; // P1.2 PWM out + P1DIR |= BIT_RL|BIT_GL|BIT7; // Set LEDs & PWM to output direction + P1OUT &= ~(BIT_RL|BIT_GL); // LEDs off +#ifdef P1SEL1 + P1SEL1 |= BIT7; // PWM out +#else + P1SEL |= BIT7; // PWM out +#endif // Configure GPIO In - P2DIR &= ~(BIT3|BIT7); // Buttons - P2OUT |= BIT3|BIT7; // Pull up - P2REN |= BIT3|BIT7; // Enable pull-up - P2IES |= BIT3|BIT7; // INT on Hi->Lo edge - P2IE |= BIT3|BIT7; // INT enable - - P2DIR &= ~(BIT2|BIT5); // PIR Sensors - P2OUT &= ~(BIT2|BIT5); // Pull down - P2REN |= BIT2|BIT5; // Enable pull-down - P2IES &= ~(BIT2|BIT5); // INT on Lo->Hi edge - P2IE |= BIT2|BIT5; // INT enable - P2IFG = 0; // ??? Needed? - - // Configure ADC A7 pin - SYSCFG2 |= ADCPCTL7; + PBTN(DIR) &= ~(BIT_BTN|BIT_BTN2); // Buttons + PBTN(OUT) |= BIT_BTN|BIT_BTN2; // Pull up + PBTN(REN) |= BIT_BTN|BIT_BTN2; // Enable pull-up + PBTN(IES) |= BIT_BTN|BIT_BTN2; // INT on Hi->Lo edge + PBTN(IE) |= BIT_BTN|BIT_BTN2; // INT enable + + P2DIR &= ~(BIT4|BIT5); // PIR Sensors + P2OUT &= ~(BIT4|BIT5); // Pull down + P2REN |= BIT4|BIT5; // Enable pull-down + P2IES &= ~(BIT4|BIT5); // INT on Lo->Hi edge + P2IE |= BIT4|BIT5; // INT enable // Configure ADC10 - ADCCTL0 |= ADCSHT_2 | ADCON; // ADCON, S&H=16 ADC clks - ADCCTL1 |= ADCSHP; // ADCCLK = MODOSC; sampling timer - ADCCTL2 |= ADCRES; // 10-bit conversion results - ADCMCTL0 |= ADCINCH_7; // A7 ADC input select; Vref=AVCC - ADCIE |= ADCIE0; // Enable ADC conv complete interrupt + +#ifdef ADCPCTL4 /* Newer model */ + SYSCFG2 |= ADCPCTL4|ADCPCTL5; // disconnect pin 4 and 5 from GPIO + ADCCTL0 |= ADCSHT_2 | ADCON; // ADCON, S&H=16 ADC clks + ADCCTL1 |= ADCSHP; // ADCCLK = MODOSC; sampling timer + ADCCTL2 |= ADCRES; // 10-bit conversion results + ADCMCTL0 |= ADCINCH_4; // A4 ADC input select; Vref=AVCC + ADCIE |= ADCIE0; // Enable ADC conv complete interrupt + // channel 5 is unused, reserved for measuring current +#else + ADC10CTL0 = ADC10SHT_2 + ADC10ON + ADC10IE; // ADCON, S&H=16 ADC clks + ADC10CTL1 = INCH_4; // A4 ADC input select + // channel 5 is unused, reserved for measuring current +#endif + + // Timer and ADC + +#ifndef TASSEL__SMCLK +# define TASSEL__SMCLK TASSEL_2 +#endif +#ifndef MC__UP +# define MC__UP MC_1 +#endif +#ifndef MC__CONTINUOUS +# define MC__CONTINUOUS MC_2 +#endif // Configure timer A0 for PWM - TA0CCR0 = 10000-1; // PWM Period - TA0CCTL2 = OUTMOD_7; // CCR2 reset/set - TA0CCR2 = 500; // CCR2 PWM duty cycle - TA0CTL = TASSEL__SMCLK | MC__UP | TACLR; // SMCLK, up mode, clear TAR + TA0CCR0 = 10000-1; // PWM Period + TA0CCTL2 = OUTMOD_7; // CCR2 reset/set + TA0CCR2 = 500; // CCR2 PWM duty cycle + TA0CTL = TASSEL__SMCLK | MC__UP | TACLR;// SMCLK, up mode, clear TAR //Configure timer A1 for counting time - TA1CTL |= TASSEL__SMCLK | MC__CONTINUOUS | TACLR | TAIE; // SMCLK, no divider, continuous mode + TA1CTL |= TASSEL__SMCLK | MC__CONTINUOUS | TACLR | TAIE; + // SMCLK, no divider, continuous mode, interrupt enable +#ifdef LOCKLPM5 // Disable the GPIO power-on default high-impedance mode to activate // previously configured port settings PM5CTL0 &= ~LOCKLPM5; +#endif while(1) { unsigned int events; - _disable_interrupt(); + _disable_interrupts(); events = irq_events; irq_events = 0; - _enable_interrupt(); + _enable_interrupts(); // Button 2 or PIR events initiate light measurement and tuns on green led if (events & (1< 10) { Time_Count = 0; - P1OUT ^= BIT0; + P1OUT ^= BIT_RL; // blink if (Time_Left) Time_Left--; else if (Duty_Cycle > 1) @@ -124,7 +169,7 @@ int main(void) __bis_SR_register(LPM0_bits | GIE); __no_operation(); } - retun 0; /* not reached */ + return 0; /* not reached */ } // TIMER interrupt routine @@ -140,24 +185,25 @@ void __attribute__ ((interrupt(TIMER1_A1_VECTOR))) Timer_A (void) switch(__even_in_range(TA1IV,TA1IV_TAIFG)) { case TA1IV_NONE: - break; // No interrupt + break; // No interrupt case TA1IV_TACCR1: - break; // CCR1 not used + break; // CCR1 not used case TA1IV_TACCR2: - break; // CCR2 not used + break; // CCR2 not used case TA1IV_TAIFG: irq_events |= 1< 1000) { - // Time_Count = 0; - // __bic_SR_register_on_exit(LPM0_bits); // Clear CPUOFF bit from LPM0 - //} } +#ifndef ADC_VECTOR +# define ADCMEM0 ADC10MEM +# define ADC_VECTOR ADC10_VECTOR +#endif + // ADC interrupt service routine #if defined(__TI_COMPILER_VERSION__) || defined(__IAR_SYSTEMS_ICC__) #pragma vector=ADC_VECTOR @@ -168,6 +214,7 @@ void __attribute__ ((interrupt(ADC_VECTOR))) ADC_ISR (void) #error Compiler not supported! #endif { +#ifdef ADCIV_NONE switch(__even_in_range(ADCIV,ADCIV_ADCIFG)) { case ADCIV_NONE: @@ -183,13 +230,16 @@ void __attribute__ ((interrupt(ADC_VECTOR))) ADC_ISR (void) case ADCIV_ADCINIFG: break; case ADCIV_ADCIFG: +#endif ADC_Result = ADCMEM0; irq_events |= 1<