📄 fet140_wdt02.s43
字号:
#include "msp430x14x.h"
;******************************************************************************
; MSP-FET430P140 Demo - WDT Toggle P1.0 Interval overflow ISR, 32kHz ACLK
;
; Description; Toggle P1.0 using software timed by WDT ISR. Toggle rate is
; exactly 250ms based on 32kHz ACLK WDT clock source. In this example the
; WDT is configured to divide 32768 watch-crystal(2^15) by 2^13 with an ISR
; triggered @ 4Hz.
; ACLK = LFXT1 = 32768, MCLK = SMCLK = DCO ~ 800kHz
; //*External watch crystal installed on XIN XOUT is required for ACLK*//
;
; MSP430F149
; -----------------
; /|\| XIN|-
; | | | 32k
; --|RST XOUT|-
; | |
; | P1.0|-->LED
;
; M.Buccini
; Texas Instruments, Inc
; February 2002
;******************************************************************************
;-----------------------------------------------------------------------------
ORG 01100h ; Program Start
;-----------------------------------------------------------------------------
RESET mov.w #0A00h,SP ; Initialize 'F149 stackpointer
SetupWDT mov.w #WDT_ADLY_250,&WDTCTL ; WDT 250ms, ACLK, interval timer
bis.b #WDTIE,&IE1 ; Enable WDT interrupt
SetupP1 bis.b #001h,&P1DIR ; P1.0 output
eint ; Enable interrupts
;
Mainloop bis.w #LPM3,SR ; Remain in LPM3
nop ; Required only for C-spy
;
;-----------------------------------------------------------------------------
WDT_ISR; Toggle P1.0
;-----------------------------------------------------------------------------
xor.b #001h,&P1OUT ; Toggle P1.0
reti ;
;
;-----------------------------------------------------------------------------
; Interrupt Vectors Used MSP430x13x/14x
;-----------------------------------------------------------------------------
ORG 0FFFEh ; MSP430 RESET Vector
DW RESET ;
ORG 0FFF4h ; WDT Vector
DW WDT_ISR ;
END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -