; MSP430F20xx Demo - LFXT1 Oscillator Fault Detection ; ; Description: System runs normally in LPM3 with WDT timer clocked by ; 32kHz ACLK with a 1x4 second interrupt.. P1.0 is normally
Trang 1; MSP430F20xx Demo - LFXT1 Oscillator Fault Detection
;
; Description: System runs normally in LPM3 with WDT timer clocked by
; 32kHz ACLK with a 1x4 second interrupt P1.0 is normally pulsed every
; second inside WDT interrupt If an LFXT1 oscillator fault occurs,
; NMI is requested forcing exit from LPM3 P1.0 is toggled rapidly by software
; as long as LFXT1 oscillator fault is present Assumed only LFXT1 as NMI
; source - code does not check for other NMI sources
; ACLK = LFXT1 = 32768, MCLK = SMCLK = Default DCO
;
; //*External watch crystal on XIN XOUT is required for ACLK*//
;
;
; MSP430F20xx
;
-; /|\|
XIN|-; | | | 32kHz
; |RST
XOUT|-; | |
; | P1.0| >LED;
;
; M Buccini / L Westlund
; Texas Instruments Inc
; October 2005
; Built with IAR Embedded Workbench Version: 3.40A
;*******************************************************************************
#include "msp430x20x3.h"
ORG 0F800h ; Program Reset
; -RESET mov.w #0280h,SP ; Initialize stackpointer
StopWDT mov.w #WDT_ADLY_1000,&WDTCTL ; WDT 1s interval timer
bis.b #WDTIE,&IE1 ; Enable WDT interrupt
SetupP1 mov.b #0FFh,&P1DIR ; All P1.x outputs
clr.b &P1OUT ; All P1.x reset
SetupP2 mov.b #0FFh,&P2DIR ; All P2.x outputs
clr.b &P2OUT ; All P2.x reset
; An immedate Osc Fault will occur next
bis.b #OFIE,&IE1 ; Enable osc fault interrupt
;
Mainloop xor.b #001h,&P1OUT ; Toggle P1.0
bis.w #LPM3+GIE,SR ; Enter LPM3, enable interrupts jmp Mainloop ;
;
; -NMI_ISR; Only osc fault enabled, R15 used temporarily and not saved
; Assumed LFXT1 is only source for NMI interrupt
; -CheckOsc bic.b #OFIFG,&IFG1 ; Clear OSC fault flag
xor.b #001h,&P1OUT ; Toggle P1.0
mov.w #03FFFh,R15 ; R15 = Delay
CheckOsc1 dec.w R15 ; Time for flag to set
jnz CheckOsc1 ;
bit.b #OFIFG,&IFG1 ; OSC fault flag set?
jnz CheckOsc ; OSC Fault, clear flag again
bis.b #OFIE,&IE1 ; re-enable osc fault interrupt reti ; return from interrupt
;
; -WDT_ISR; Exit LPM3 on reti
bic.w #LPM3,0(SP) ;
reti ;
Trang 2;
; -; Interrupt Vectors
ORG 0FFF4h ; WDT Vector
DW WDT_ISR ;
ORG 0FFFCh ; NMI vector
DW NMI_ISR ;
ORG 0FFFEh ; MSP430 RESET Vector
DW RESET ;
END