//******************************************************************************
// MSP-FET430P140 Demo - ADC12, Repeated Sequence of Conversions
//
// Description: This example shows how to perform a repeated sequence of
// conversions using "repeat sequence-of-channels" mode. AVcc is used for the
// reference and repeated sequence of conversions is performed on Channels A0,
// A1, A2, and A3. Each conversion result is stored in ADC12MEM0, ADC12MEM1,
// ADC12MEM2, and ADC12MEM3 respectively. After each sequence, the 4 conversion
// results are moved to A0results[], A1results[], A2results[], and A3results[].
// Test by applying voltages to channels A0 - A3. Open a watch window in
// debugger and view the results. Set a breakpoint in the last line to see the
// array values change sequentially.
//
// Note that a sequence has no restrictions on which channels are converted.
// For example, a valid sequence could be A0, A3, A2, A4, A2, A1, A0, and A7.
// See the MSP430x1xx User's Guide for instructions on using the ADC12.
//
//
// MSP430F149
// -----------------
// | |
// Vin0 -->|P6.0/A0 |
// Vin1 -->|P6.1/A1 |
// Vin2 -->|P6.2/A2 |
// Vin3 -->|P6.3/A3 |
// | |
//
//
// M. Mitchell
// Texas Instruments Inc.
// Feb 2005
// Built with IAR Embedded Workbench Version: 3.21A
//******************************************************************************
#include <msp430x14x.h>
#define Num_of_Results 8
static unsigned int A0results[Num_of_Results]; // These need to be global in
static unsigned int A1results[Num_of_Results]; // this example. Otherwise, the
static unsigned int A2results[Num_of_Results]; // compiler removes them because
static unsigned int A3results[Num_of_Results]; // they are not used
void main(void)
{
WDTCTL = WDTPW+WDTHOLD; // Stop watchdog timer
P6SEL = 0x0F; // Enable A/D channel inputs
ADC12CTL0 = ADC12ON+MSC+SHT0_8; // Turn on ADC12, extend sampling time
// to avoid overflow of results
ADC12CTL1 = SHP+CONSEQ_3; // Use sampling timer, repeated sequence
ADC12MCTL0 = INCH_0; // ref+=AVcc, channel = A0
ADC12MCTL1 = INCH_1; // ref+=AVcc, channel = A1
ADC12MCTL2 = INCH_2; // ref+=AVcc, channel = A2
ADC12MCTL3 = INCH_3+EOS; // ref+=AVcc, channel = A3, end seq.
ADC12IE = 0x08; // Enable ADC12IFG.3
ADC12CTL0 |= ENC; // Enable conversions
ADC12CTL0 |= ADC12SC; // Start conversion
_BIS_SR(LPM0_bits + GIE); // Enter LPM0, Enable interrupts
}
#pragma vector=ADC_VECTOR
__interrupt void ADC12ISR (void)
{
static unsigned int index = 0;
A0results[index] = ADC12MEM0; // Move A0 results, IFG is cleared
A1results[index] = ADC12MEM1; // Move A1 results, IFG is cleared
A2results[index] = ADC12MEM2; // Move A2 results, IFG is cleared
A3results[index] = ADC12MEM3; // Move A3 results, IFG is cleared
index = (index+1)%Num_of_Results; // Increment results index, modulo; Set Breakpoint here
}
MSP430F149单片机初学者常用到的程序代码ADC部分
需积分: 0 30 浏览量
更新于2023-12-14
收藏 12KB RAR 举报
MSP430F149单片机是德州仪器(TI)推出的一款低功耗、高性能的微控制器,特别适合于嵌入式控制应用。对于初学者来说,理解和掌握ADC(模拟数字转换器)部分的程序代码是至关重要的,因为ADC在许多实际项目中都扮演着将模拟信号转化为数字信号的关键角色。以下将详细讲解MSP430F149单片机的ADC功能及其编程要点。
ADC是模拟到数字转换器的简称,它允许单片机处理模拟世界的信号。在MSP430F149中,ADC模块通常为ADC12,具备12位分辨率,可以将输入的模拟电压转换成相应的12位二进制数字值。该芯片内置多个通道,每个通道可以连接到不同的模拟输入源。
在C语言编程时,我们需要配置ADC12的初始化参数,包括选择输入通道、设置采样保持时间、选择转换时钟源、配置中断等。例如,文件名中的“fet140_adc12_01.c”可能包含了初始化ADC12的基本步骤。
需要包含相关的头文件,如`<msp430f149.h>`,以获取正确的寄存器定义和宏。接着,初始化ADC12的配置,可能涉及以下步骤:
1. **选择通道**:通过设置`ADC12MCTLx`寄存器(x代表通道号)来指定输入信号和参考电压。例如,`ADC12MCTL0`用于配置通道0。
2. **设置采样和转换时钟**:通过`ADC12CTL0`寄存器,可以设定ADC12的采样时钟源(如ACLK或MCLK),以及采样和转换时钟分频系数。
3. **启动转换**:通常会用到`ADC12CTL1`寄存器来启动单次转换或者连续转换序列。`ADC12SC`位用于启动一次转换。
4. **中断配置**:如果需要在转换完成后触发中断,需设置`ADC12IE`寄存器中的中断使能位,并在主循环中处理中断服务程序。
5. **结果存储**:转换结果会被存储在`ADC12MEMx`寄存器中,x对应于所选通道。
在给定的文件列表中,可以看到不同编号的`.c`文件可能对应了ADC12的不同使用场景,比如不同的通道配置、转换模式或中断处理。通过学习这些示例代码,初学者可以逐步理解并熟练运用ADC12的各种功能。
例如,“fet140_adc12_06.c”可能涉及到多通道转换,而“fet140_adc12_09.c”可能包含中断处理的代码。每一份代码都是一个实践案例,通过分析和实践这些案例,初学者能够更好地掌握MSP430F149单片机的ADC应用。
在实际应用中,MSP430F149的ADC功能可以广泛应用于传感器数据采集、温度监测、电源管理等系统。结合C语言的编程技巧,可以灵活地设计出满足需求的程序,实现各种复杂的嵌入式系统功能。因此,深入理解和实践这些ADC程序代码对MSP430F149单片机的学习至关重要。
sushi668
- 粉丝: 0
- 资源: 8
最新资源
- 毕设和企业适用springboot社交平台类及交通运输管理平台源码+论文+视频.zip
- 毕设和企业适用springboot社交平台类及农场管理系统源码+论文+视频.zip
- 毕设和企业适用springboot社交平台类及跨平台销售系统源码+论文+视频.zip
- 毕设和企业适用springboot社区物业类及企业管理平台源码+论文+视频.zip
- 毕设和企业适用springboot社区物业类及企业创新研发平台源码+论文+视频.zip
- 毕设和企业适用springboot社区物业类及企业培训平台源码+论文+视频.zip
- 毕设和企业适用springboot社区物业类及汽车管理平台源码+论文+视频.zip
- 毕设和企业适用springboot社区物业类及全渠道电商平台源码+论文+视频.zip
- 毕设和企业适用springboot社区物业类及气象数据管理系统源码+论文+视频.zip
- 毕设和企业适用springboot社交平台类及流媒体内容推荐平台源码+论文+视频.zip
- 毕设和企业适用springboot社交平台类及企业财务管理系统源码+论文+视频.zip
- 毕设和企业适用springboot社交平台类及企业健康管理平台源码+论文+视频.zip
- 毕设和企业适用springboot社交平台类及企业协作平台源码+论文+视频.zip
- 毕设和企业适用springboot社区物业类及数据管理平台源码+论文+视频.zip
- 毕设和企业适用springboot社区物业类及数据存储平台源码+论文+视频.zip
- 毕设和企业适用springboot社区物业类及社会服务平台源码+论文+视频.zip