1. Trang chủ
  2. » Kỹ Thuật - Công Nghệ

msp430g2xx2 ta 14

1 86 0

Đang tải... (xem toàn văn)

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 1
Dung lượng 1,6 KB

Các công cụ chuyển đổi và chỉnh sửa cho tài liệu này

Nội dung

Timer_A is configured // for up/down mode with CCR0 defining period, TA0 also output on P1.1.. No CPU or software // resources required.. Normal operating mode is LPM3.. Dang // Texas In

Trang 1

//****************************************************************************** // MSP430G2xx2 Demo - Timer_A, Toggle P1.1/TA0, Up/Down Mode, 32kHz ACLK

//

// Description: Toggle P1.1 using hardware TA0 output Timer_A is configured // for up/down mode with CCR0 defining period, TA0 also output on P1.1 In // this example, CCR0 is loaded with 5 and TA0 will toggle P1.1 at TACLK/2*5 // Thus the output frequency on P1.1 will be the TACLK/20 No CPU or software // resources required Normal operating mode is LPM3

// ACLK = TACLK = 32kHz, MCLK = default DCO

// As coded with TACLK = ACLK, P1.1 output frequency = 32768/20 = 1.6384kHz // //* External watch crystal installed on XIN XOUT is required for ACLK *// //

// MSP430G2xx2

//

-// /|\|

XIN|-// | | | 32 kHz

// |RST

XOUT|-// | |

// | P1.1/TA0| > ACLK/20

//

// D Dang

// Texas Instruments Inc

// December 2010

// Built with CCS Version 4.2.0 and IAR Embedded Workbench Version: 5.10

//******************************************************************************

#include <msp430g2452.h>

void main(void)

{

WDTCTL = WDTPW + WDTHOLD; // Stop WDT

P1DIR |= 0x02; // P1.1 output

P1SEL |= 0x02; // P1.1 option select

CCTL0 = OUTMOD_4; // CCR0 toggle mode

CCR0 = 5;

TACTL = TASSEL_1 + MC_3; // ACLK, up-downmode

_BIS_SR(LPM3_bits); // Enter LPM3

}

Ngày đăng: 26/12/2017, 07:30

TÀI LIỆU CÙNG NGƯỜI DÙNG

  • Đang cập nhật ...

TÀI LIỆU LIÊN QUAN

w