msp430 ADC12 怎样把内部参考电压设置成为2.5v,详细设置寄存器 谢谢

 我来答
bitlab9
推荐于2016-07-24
知道答主
回答量:8
采纳率:0%
帮助的人:6.9万
展开全部
一个MSP430F54x使用内部2.5V参考电压的例程:

//******************************************************************************
// MSP430F54x Demo - ADC12, Using the Internal Reference
//
// Description: This example shows how to use the internal reference of ADC12.
// It uses the internal 2.5V reference and performs a single conversion
// on channel A0. The conversion results are stored in ADC12MEM0. Test by
// applying a voltage to channel A0, then setting and running to a break point
// at the "__no_operation()" instruction. To view the conversion results,
// open an ADC12 register window in debugger and view the contents of ADC12MEM0
//
// MSP430F5438
// -----------------
// /|\| |
// | | |
// --|RST |
// | |
// Vin -->|P6.0/A0 |
// | |

//
// M Smertneck / W. Goh
// Texas Instruments Inc.
// September 2008
// Built with CCE Version: 3.2.2 and IAR Embedded Workbench Version: 4.11B
//******************************************************************************

#include "msp430x54x.h"

void main(void)
{
volatile unsigned int i;
WDTCTL = WDTPW+WDTHOLD; // Stop watchdog timer
P6SEL |= 0x01; // Enable A/D channel A0
ADC12CTL0 = ADC12ON+ADC12SHT0_0+ADC12REFON+ADC12REF2_5V;
// Turn on ADC12, Sampling time
// On Reference Generator and set to
// 2.5V
ADC12CTL1 = ADC12SHP; // Use sampling timer
ADC12MCTL0 = ADC12SREF_1; // Vr+=Vref+ and Vr-=AVss

for ( i=0; i<0x30; i++); // Delay for reference start-up

ADC12CTL0 |= ADC12ENC; // Enable conversions

while (1)
{
ADC12CTL0 |= ADC12SC; // Start conversion
while (!(ADC12IFG & BIT0));
__no_operation(); // SET BREAKPOINT HERE
}
}
可记呵a
2011-07-11 · TA获得超过376个赞
知道答主
回答量:44
采纳率:0%
帮助的人:57万
展开全部
ADC12CTL0 |= REFON + REF2_5V; //打开内部电压发生器 参考电压选择为2.5v
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式