• 大小: 59KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-15
  • 语言: 其他
  • 标签: MSP430G2553  DAC8411  

资源简介

使用外扩的DAC8411,连线方式请看DAC8411的技术手册和代码里dac.c的定义。本代码实现功能是用稳压电源输入任意电压(0-3.6v)在dac输出端输出同样电压。同时NOKIA5110上同步显示真实电压.

资源截图

代码片段和文件信息

/*
 * adc.c
 *
 *  Created on: 2014年9月8日
 *      Author: bojie
 */
#include “adc.h“

long write2ADC()
{
ADC10CTL0|=ENC+ADC10SC;
while((ADC10CTL1&0x01)==1);
return ADC10MEM;
}

void ADC10_init(void)
{

ADC10CTL0&=~ENC;
ADC10CTL0=ADC10IE+ADC10ON+REFON+ADC10SHT_3+SREF_0;
ADC10CTL1=CONSEQ_0+ADC10SSEL_0+ADC10DIV_3+SHS_0+INCH_4;      //选择 A4通道
__delay_cycles(30000);
ADC10CTL0|=ENC;

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-09-17 13:20  ADC+DAC\
     文件         512  2014-09-08 11:18  ADC+DAC\.ccsproject
     文件       22576  2014-09-08 11:18  ADC+DAC\.cproject
     目录           0  2014-09-17 13:20  ADC+DAC\.launches\
     文件        4226  2014-09-08 15:07  ADC+DAC\.launches\ADC+DAC.launch
     文件         837  2014-09-08 11:18  ADC+DAC\.project
     目录           0  2014-09-17 13:20  ADC+DAC\.settings\
     文件          62  2014-09-08 11:18  ADC+DAC\.settings\org.eclipse.cdt.codan.core.prefs
     文件         123  2014-09-08 11:18  ADC+DAC\.settings\org.eclipse.cdt.debug.core.prefs
     文件         208  2014-09-08 14:52  ADC+DAC\.settings\org.eclipse.core.resources.prefs
     文件         422  2014-09-08 14:51  ADC+DAC\adc.c
     文件         264  2014-09-08 14:51  ADC+DAC\adc.h
     文件         508  2014-09-08 14:52  ADC+DAC\dac.c
     文件         430  2014-09-08 14:52  ADC+DAC\dac.h
     目录           0  2014-09-17 13:20  ADC+DAC\Debug\
     文件        7100  2014-09-08 14:52  ADC+DAC\Debug\adc.obj
     文件         424  2014-09-08 14:52  ADC+DAC\Debug\adc.pp
     文件       17230  2014-09-08 15:06  ADC+DAC\Debug\ADC+DAC.map
     文件       40656  2014-09-08 15:06  ADC+DAC\Debug\ADC+DAC.out
     文件      132426  2014-09-08 15:06  ADC+DAC\Debug\ADC+DAC_linkInfo.xml
     文件          92  2014-09-08 15:06  ADC+DAC\Debug\ccsObjs.opt
     文件        7240  2014-09-08 14:52  ADC+DAC\Debug\dac.obj
     文件         424  2014-09-08 14:52  ADC+DAC\Debug\dac.pp
     文件        7828  2014-09-08 15:06  ADC+DAC\Debug\main.obj
     文件         613  2014-09-08 15:06  ADC+DAC\Debug\main.pp
     文件        3814  2014-09-08 15:06  ADC+DAC\Debug\makefile
     文件       22340  2014-09-08 14:52  ADC+DAC\Debug\nokia_5110.obj
     文件         637  2014-09-08 14:52  ADC+DAC\Debug\nokia_5110.pp
     文件         250  2014-09-08 14:52  ADC+DAC\Debug\objects.mk
     文件        1920  2014-09-08 15:06  ADC+DAC\Debug\sources.mk
     文件        2505  2014-09-08 14:52  ADC+DAC\Debug\subdir_rules.mk
............此处省略10个文件信息

评论

共有 条评论