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

msp430g2xx1 p1 02

1 111 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,65 KB

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

Nội dung

LPM4 current can be measured // with the LED removed, all unused P1.x/P2.x configured as output or inputs // pulled high or low, and ensure the P1.4 interrupt input does not float.

Trang 1

//****************************************************************************** // MSP430G2xx1 Demo - Software Port Interrupt Service on P1.4 from LPM4

//

// Description: A hi/low transition on P1.4 will trigger P1_ISR which,

// toggles P1.0 Normal mode is LPM4 ~ 0.1uA LPM4 current can be measured // with the LED removed, all unused P1.x/P2.x configured as output or inputs // pulled high or low, and ensure the P1.4 interrupt input does not float // ACLK = n/a, MCLK = SMCLK = default DCO

//

// MSP430G2xx1

//

-// /|\|

XIN|-// | | |

// |RST

XOUT|-// /|\ | |

// o |P1.4 P1.0| >LED

// \|/

//

// D Dang

// Texas Instruments, Inc

// October 2010

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

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

#include <msp430g2231.h>

void main(void)

{

WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer

P1DIR |= 0x01; // Set P1.0 to output direction P1IE |= 0x10; // P1.4 interrupt enabled

P1IES |= 0x10; // P1.4 Hi/lo edge

P1IFG &= ~0x10; // P1.4 IFG cleared

_BIS_SR(LPM4_bits + GIE); // Enter LPM4 w/interrupt

}

// Port 1 interrupt service routine

#pragma vector=PORT1_VECTOR

interrupt void Port_1(void)

{

P1OUT ^= 0x01; // P1.0 = toggle

P1IFG &= ~0x10; // P1.4 IFG cleared

}

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

TỪ KHÓA LIÊN QUAN

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

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

TÀI LIỆU LIÊN QUAN

w