资源简介

基于430单片机的电压检测电路proteus仿真,用数码管显示电压值

资源截图

代码片段和文件信息

//**************************************************
//  Target     : MSP430 ComparatorA
//  Description: Simple Voltmeter 
//              (0.1 < Vsrc < 4.0)
//   
//  Copyright (c) Usachev M.  
//  February 2009
//  Built with IAR embedded Workbench Version: 4.11C
//   
//  Warning! vref contains empirical values.
//  If you change the schema or clock-source
//  or even “while(1) counter++;“ it would
//  calibrate these values again
//**************************************************

#include 
#include “intrinsics.h“

//              Voltage   = {0 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 end}
static const short vref[] = {0  20  43  68  99 132 175 232 303 -1};
unsigned short counter;

#define CHARGER P2OUT

#pragma vector=COMPARATORA_VE

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-05-03 12:14  vmeter\
     目录           0  2013-05-03 12:06  vmeter\Debug\
     文件       13919  2011-01-07 12:46  vmeter\Debug\Debug.cof
     文件        8202  2011-01-07 12:46  vmeter\lnk_msp430f1101.cmd
     文件       15871  2011-01-07 12:46  vmeter\main.cof
     文件        2083  2011-01-07 12:46  vmeter\main.cpp
     文件        1616  2011-01-07 12:46  vmeter\main.hex
     文件        1727  2011-01-07 12:46  vmeter\MSP430 Voltmeter.vsmp
     文件      160586  2011-01-07 12:46  vmeter\vmeter.DSN
     文件        1016  2013-05-03 12:06  vmeter\vmeter.PWI

评论

共有 条评论