fet140_ta01.s43
来自「基于IAR Workbench for MSP430 的汇编语言例程」· S43 代码 · 共 52 行
S43
52 行
;******************************************************************************
; MSP-FET430P140 Demo - Timer_A Toggle P1.0, CCR0 Contmode ISR, DCO SMCLK
;
; Description; Toggle P1.0 using using software and TA_0 ISR. Toggle rate is
; set at 50000 DCO/SMCLK cycles. Default DCO frequency used for TACLK.
; Durring the TA_0 ISR P0.1 is toggled and 50000 clock cycles are added to
; CCR0. TA_0 ISR is triggered exactly 50000 cycles. CPU is normally off and
; used only durring TA_ISR.
; ACLK = n/a, MCLK = SMCLK = TACLK = default DCO ~ 800k
;
; MSP430F149
; -----------------
; /|\| XIN|-
; | | |
; --|RST XOUT|-
; | |
; | P1.0|-->LED
;
; M.Buccini
; Texas Instruments, Inc
; January 2004
;******************************************************************************
#include "msp430x14x.h"
;------------------------------------------------------------------------------
ORG 01100h ; Program Start
;------------------------------------------------------------------------------
RESET mov.w #0A00h,SP ; Initialize 'F1x9 stackpointer
StopWDT mov.w #WDTPW+WDTHOLD,&WDTCTL ; Stop WDT
SetupP1 bis.b #001h,&P1DIR ; P1.0 output
SetupC0 mov.w #CCIE,&CCTL0 ; CCR0 interrupt enabled
mov.w #50000,&CCR0 ;
SetupTA mov.w #TASSEL_2+MC_2,&TACTL ; SMCLK, contmode
;
Mainloop bis.w #CPUOFF+GIE,SR ; CPU off, interrupts enabled
nop ; Required for debugger
;
;------------------------------------------------------------------------------
TA0_ISR; Toggle P1.0
;------------------------------------------------------------------------------
xor.b #001h,&P1OUT ; Toggle P1.0
add.w #50000,&CCR0 ; Add Offset to CCR0
reti ;
;
;------------------------------------------------------------------------------
; Interrupt Vectors Used MSP430x13x/14x/15x/16x
;------------------------------------------------------------------------------
ORG 0FFFEh ; MSP430 RESET Vector
DW RESET ;
ORG 0FFECh ; Timer_A0 Vector
DW TA0_ISR ;
END
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?