AD转换,编程的寄存器有:
ADMUX:多工选择寄存器。参考电压、对齐方式、模拟通道及增益选择位
ADCSR(A):使能、中断标志、中断使能、预分频值等
ADCL、ADCH:数据寄存器
SFI0R:特殊功能寄存器
////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef __AD_H__
#define __AD_H__
#include <iom16v.h>
#include <macros.h>
#define uchar unsigned char
#define uint unsigned int
extern uint mega16_ad(void);
#endif
////////////////////////////////////////////////////////////////////////////////////////////////////
#include "ad.h"
uint mega16_ad(void)
{
uint addata;
DDRA&=~BIT(PA0);
PORTA&=~BIT(PA0);
ADMUX=0x00;
ADCSR=0X80;
ADCSR|=BIT(ADSC);
while(!(ADCSR&(BIT(ADIF))));//即:while(!(ADCSR&0x10));
addata=ADCL;
addata=addata+ADCH*256;
return addata;
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////
#include "ad.h"
#include "smg.h"
void main(void)
{
DDRA&=~BIT(PA0);//选定模拟通道0
PORTA&=~BIT(PA0);
SystemInit();
SystemInit();
while(1)
{
Show(mega16_ad()/1000,0);
Show(mega16_ad()%1000/100,1);
Show(mega16_ad()%100/10,2);
Show(mega16_ad()%100%10,3);
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
/*MCU:ATMEGA16
晶振频率:8MHZ
功能:数码管动态扫描程序
*/
#ifndef __SMG_H__
#define __SMG_H__
#include <iom16v.h>
#include <macros.h>
#define uchar unsigned char
#define uint unsigned int
extern const table[];
//**********1ms基准延时程序**********************************
void DelayMs(unsigned int ms);
void SystemInit(void);
void Show(unsigned char ddata,unsigned char num);
#endif
///////////////////////////////////////////////////////////////////////////////////////////////////////
/*MCU:ATMEGA16
晶振频率:8MHZ
功能:数码管动态扫描程序
*/
#include "smg.h"
#pragma data:code //共阳数码管断码表
const table[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,
0x90,0x88,0x83,0xc6,0xa1,0x86,0x8e,0xb6};
//**********1ms基准延时程序**********************************
void DelayMs(unsigned int ms)
{
unsigned int j;
while(--ms)
{
for(j=1141;j>0;--j);//1141
}
}
void SystemInit(void)
{
DDRA |= (1<<2)|(1<<3)|(1<<4)|(1<<6);
DDRB |= 0xFF;
PORTA |= (1<<2)|(1<<6);
PORTB = 0xFF;
PORTA &= (~(1<<2))&(~(1<<6));
}
void Show(unsigned char ddata,unsigned char num)
{
PORTA |= (1<<3);
PORTB = table[ddata];
PORTA &= ~(1<<3);
PORTB = 0x00;
PORTA |= (1<<4);
PORTB = (1<<num);
PORTA &= ~(1<<4);
DelayMs(2);
}