• 大小: 0.10M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-02-22
  • 语言: C/C++
  • 标签: AVR  ADC  串口  

资源简介

ATMEGA8配置双路ADC采集,并通过串口发送

资源截图

代码片段和文件信息

//ICC-AVR application builder : 2009-3-10 14:59:10
// Target : M8
// Crystal: 8.0000Mhz

#include 
#include 
#define VH 7  //电压ADC通道
#define VL 6  //电流ADC通道

unsigned char BUF_TMP[10];
unsigned char NUM=0START=0RIN=0TIME=10;
void port_init(void)
{
 PORTB = 0xff;
 DDRB  = 0xff;
 PORTC = 0xff; //m103 output only
 DDRC  = 0xff;
 PORTD = 0xff;
 DDRD  = 0xfb;
}

//call this routine to initialize all peripherals
void init_devices(void)
{
 //stop errant interrupts until set up
 CLI(); //disable all interrupts
 port_init();

 MCUCR = 0x00;
 GICR  = 0x00;
 TIMSK = 0x00; //timer interrupt sources
 SEI(); //re-enable interrupts
 //all peripherals are now initialized
}

/************************************
用    途:微秒级延时程序
Taget   :mega8
crystal :8M
介    绍:在8M的晶振上进行us级的延时
入口参数:
*************************************/
void delay_us(int time)
{
    do
    {
        time--;
    } 
    while (time > 1);
}

void delay_ms(int tim)
 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      10692  2019-02-13 15:51  双通道ADC采集+串口发送\BACKUP\main.c.190213155200

     文件       5668  2020-02-25 19:08  双通道ADC采集+串口发送\BACKUP\main.c.200225190856

     文件       3883  2020-02-25 20:52  双通道ADC采集+串口发送\BACKUP\main.c.200225205242

     文件       3930  2020-02-25 20:56  双通道ADC采集+串口发送\BACKUP\main.c.200225205606

     文件       3930  2020-02-25 20:57  双通道ADC采集+串口发送\BACKUP\main.c.200225205740

     文件       3946  2020-02-25 20:59  双通道ADC采集+串口发送\BACKUP\main.c.200225205908

     文件       4058  2020-02-25 21:10  双通道ADC采集+串口发送\BACKUP\main.c.200225211036

     文件       4045  2020-02-25 22:05  双通道ADC采集+串口发送\BACKUP\main.c.200225220524

     文件       4049  2020-02-25 22:05  双通道ADC采集+串口发送\BACKUP\main.c.200225220556

     文件       4120  2020-02-25 23:02  双通道ADC采集+串口发送\BACKUP\main.c.200225230248

     文件       4060  2020-02-25 23:15  双通道ADC采集+串口发送\BACKUP\main.c.200225231540

     文件       4047  2020-02-25 23:19  双通道ADC采集+串口发送\BACKUP\main.c.200225231908

     文件       4088  2020-02-25 23:38  双通道ADC采集+串口发送\BACKUP\main.c.200225233840

     文件       4102  2020-02-25 23:42  双通道ADC采集+串口发送\BACKUP\main.c.200225234216

     文件       4102  2020-02-25 23:44  双通道ADC采集+串口发送\BACKUP\main.c.200225234454

     文件       4102  2020-02-25 23:46  双通道ADC采集+串口发送\BACKUP\main.c.200225234626

     文件       4104  2020-02-25 23:48  双通道ADC采集+串口发送\BACKUP\main.c.200225234900

     文件       4103  2020-02-25 23:49  双通道ADC采集+串口发送\BACKUP\main.c.200225234932

     文件       4086  2020-02-25 23:50  双通道ADC采集+串口发送\BACKUP\main.c.200225235056

     文件       4083  2020-02-25 23:51  双通道ADC采集+串口发送\BACKUP\main.c.200225235130

     文件       4101  2020-02-25 23:54  双通道ADC采集+串口发送\BACKUP\main.c.200225235422

     文件       4101  2020-02-25 23:55  双通道ADC采集+串口发送\BACKUP\main.c.200225235536

     文件       4122  2020-02-26 00:02  双通道ADC采集+串口发送\BACKUP\main.c.200226000218

     文件       4122  2020-02-26 00:02  双通道ADC采集+串口发送\BACKUP\main.c.200226000250

     文件       4121  2020-02-26 00:05  双通道ADC采集+串口发送\BACKUP\main.c.200226000506

     文件       4121  2020-02-26 00:06  双通道ADC采集+串口发送\BACKUP\main.c.200226000610

     文件       4121  2020-02-26 00:09  双通道ADC采集+串口发送\BACKUP\main.c.200226000924

     文件       4145  2020-02-26 00:10  双通道ADC采集+串口发送\BACKUP\main.c.200226001014

     文件       4145  2020-02-26 00:15  双通道ADC采集+串口发送\BACKUP\main.c.200226001502

     文件       4125  2020-02-26 00:16  双通道ADC采集+串口发送\BACKUP\main.c.200226001640

............此处省略30个文件信息

评论

共有 条评论