首 页文档资料下载资料维修视频包年699元
请登录  |  免费注册
当前位置:精通维修下载 > 文档资料 > 家电技术 > 单元电路介绍 > 其它电路
AVR单片机AD(模数)转换范例
来源:本站整理  作者:佚名  2011-12-16 06:29:40



范例使用 WinAVR/GCC 20050214 版本开发本程序简单的示范了如何使用ATMEGA16的ADC模数转换器
普通的单端输入
差分输入及校准
基准电压的校准
查询方式
中断方式
数据格式的变换
出于简化程序考虑,各种数据没有对外输出,学习时建议使用JTAG ICE硬件仿真

 

3. 电路设计

为简化线路设计,使用了本网站的ATmega16功能小板。

在范例中 选用内部2.56V电压基准作Vref ,差分通道 10倍放大则 单端电压测量范围 02.56V, 分辨率2.5mV   差分电压测量范围 +/- 256mV 分辨率0.5mV   电流分辨率 = 50uA@10欧姆 电流采样电阻   电流分辨率 =500uA@ 1欧姆 电流采样电阻
程序中需要把实测的基准电压代入 常量Vref中,以获得更准确地结果             我手中的样片实测为 2.556V@Vcc=5.0V                                2.550V@Vcc=3.3V
本电路仅供参考,没有考虑抗干扰方面的要求

.

4. 代码设计与说明 :

/*************************************************
**** ADC(模数转换)使用范例 ***
**** ***
**** 策划、整理与测试: 阿莫(armok) ******* 代码设计: HJJourAVR ***
**** 编译器:WINAVR20050214 ***
**** www.OurAVR.com 2005.8.31 ***
*************************************************/


#include <avr/delay.h>
#include <avr/signal.h>
#include <avr/interrupt.h>
/*宏INTERRUPT 的用法与SIGNAL 类似,区别在于
SIGNAL 执行时全局中断触发位被清除、其他中断被禁止
INTERRUPT 执行时全局中断触发位被置位、其他中断可嵌套执
另外avr-libc 提供两个API 函数用于置位和清零全局中断触发位,它们是经常用到的。
分别是:void sei(void) 和void cli(void) 由interrupt.h定义 */


#define in_Single 0
#define in_Diff_P 3
#define in_Diff_N 2

//单端通道,不放大
#define AD_SE_ADC0 0x00 //ADC0
#define AD_SE_ADC1 0x01 //ADC1
#define AD_SE_ADC2 0x02 //ADC2
#define AD_SE_ADC3 0x03 //ADC3
#define AD_SE_ADC4 0x04 //ADC4
#define AD_SE_ADC5 0x05 //ADC5
#define AD_SE_ADC6 0x06 //ADC6
#define AD_SE_ADC7 0x07 //ADC7


#define AD_Diff0_0_10x 0x08
#define AD_Diff1_0_10x 0x09
#define AD_Diff0_0_200x 0x0A
#define AD_Diff1_0_200x 0x0B


#define AD_Diff2_2_10x 0x0C
#define AD_Diff3_2_10x 0x0D
#define AD_Diff2_2_200x 0x0E
#define AD_Diff3_2_200x 0x0F


#define AD_Diff0_1_1x 0x10
#define AD_Diff1_1_1x 0x11
#define AD_Diff2_1_1x 0x12
#define AD_Diff3_1_1x 0x13
#define AD_Diff4_1_1x 0x14
#define AD_Diff5_1_1x 0x15-
#define AD_Diff6_1_1x 0x16
#define AD_Diff7_1_1x 0x17


#define AD_Diff0_2_1x 0x18
#define AD_Diff1_2_1x 0x19
#define AD_Diff2_2_1x 0x1A
#define AD_Diff3_2_1x 0x1B
#define AD_Diff4_2_1x 0x1C
#define AD_Diff5_2_1x 0x1D


#define AD_SE_VBG 0x1E
#define AD_SE_GND 0x1F

//注:
//差分通道,如果使用1x或10x增益,可得到8位分辨率。如果使用200x增益,可得到7位分辨率。
//在PDIP封装下的差分输入通道器件未经测试。只保证器件在TQFP与MLF封装下正常工作。

#define Vref 2556

unsigned int ADC_SingleEnded;int ADC_Diff;volatile unsigned int ADC_INT_SE;volatile unsigned char ADC_OK;

unsigned int LED_Volt;
int LED_Curr;

关键词:

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分)
Copyright © 2007-2017 down.gzweix.Com. All Rights Reserved .
页面执行时间:85,769.53000 毫秒