找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 4159|回复: 5
收起左侧

基于DAC0832芯片的DA转换程序

[复制链接]
ID:270698 发表于 2018-1-3 12:34 | 显示全部楼层 |阅读模式
DA转换输出正弦波,三角波,锯齿波,方波,附件资料有详细程序,仿真图。
DVO%R(Z84)H9QVDQ)A(]X@9.png AZF4@$GKU_UI7MBNGK~1]0J.png
单片机源程序如下:
  1. #include<reg52.h>
  2. #include<absacc.h>
  3. #define DAC0832 XBYTE[0X7FFF]
  4. #define uchar unsigned char
  5. uchar key,Keyoff;
  6. uchar code sine[]={0x80,0x83,0x86,0x89,0x8c,0x8f,0x92,0x95,0x98,0x9c,0x9f,0xa2,
  7.                    0xa5,0xa8,0xab,0xae,0xb0,0xb3,0xb6,0xb9,0xbc,0xbf,0xc1,0xc4,
  8.                    0xc7,0xc9,0xcc,0xce,0xd1,0xd3,0xd5,0xd8,0xda,0xdc,0xde,0xe0,
  9.                    0xe2,0xe4,0xe6,0xe8,0xea,0xec,0xed,0xef,0xf0,0xf2,0xf3,0xf4,
  10.                    0xf6,0xf7,0xf8,0xf9,0xfa,0xfb,0xfc,0xfc,0xfd,0xfe,0xfe,0xff,
  11.                    0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,
  12.                    0xfd,0xfc,0xfc,0xfb,0xfa,0xf9,0xf8,0xf7,0xf6,0xf5,0xf3,0xf2,
  13.                    0xf0,0xef,0xed,0xec,0xea,0xe8,0xe6,0xe4,0xe3,0xe1,0xde,0xdc,         
  14.                                                                          0xda,0xd8,0xd6,0xd3,0xd1,0xce,0xcc,0xc9,0xc7,0xc4,0xc1,0xbf,
  15.                    0xbc,0xb9,0xb6,0xb4,0xb1,0xae,0xab,0xa8,0xa5,0xa2,0x9f,0x9c,
  16.                    0x99,0x96,0x92,0x8f,0x8c,0x89,0x86,0x83,0x80,0x7d,0x79,0x76,
  17.                    0x73,0x70,0x6d,0x6a,0x67,0x64,0x61,0x5e,0x5b,0x58,0x55,0x52,
  18.                    0x4f,0x4c,0x49,0x46,0x43,0x41,0x3e,0x3b,0x39,0x36,0x33,0x31,
  19.                    0x2e,0x2c,0x2a,0x27,0x25,0x23,0x21,0x1f,0x1d,0x1b,0x19,0x17,
  20.                    0x15,0x14,0x12,0x10,0xf,0xd,0xc,0xb,0x9,0x8,0x7,0x6,0x5,0x4,
  21.                    0x3,0x3,0x2,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
  22.                    0x0,0x1,0x1,0x2,0x3,0x3,0x4,0x5,0x6,0x7,0x8,0x9,0xa,0xc,0xd,
  23.                    0xe,0x10,0x12,0x13,0x15,0x17,0x18,0x1a,0x1c,0x1e,0x20,0x23,
  24.                    0x25,0x27,0x29,0x2c,0x2e,0x30,0x33,0x35,0x38,0x3b,0x3d,0x40,
  25.                    0x43,0x46,0x48,0x4b,0x4e,0x51,0x54,0x57,0x5a,0x5d,0x60,0x63,
  26.                    0x66,0x69,0x6c,0x6f,0x73,0x76,0x79,0x7c};
  27. void delayms(int z)
  28. {
  29.         int x;
  30.         for(;z>0;z--)
  31.          for(x=110;x>0;x--);
  32. }
  33. void waveform()
  34. {
  35.            uchar i,a,b,c=0;
  36.            P1=0xff;
  37.            key = P1;        
  38.      if(key!=0xff)
  39.      {
  40.                                delayms(2);
  41.                     LOOP:if(P1!=0xff)  //检测按键释放
  42.              goto LOOP;                        
  43.            }               
  44.             switch(key)
  45.             {
  46.                     case 0xef:{while(!c){DAC0832=0x00;delayms(50);DAC0832=0xff;delayms(50);if(P1!=0xff){c=1;}}}break;
  47.                     case 0xdf:{while(!c){DAC0832=i;delayms(2);++i;if(P1!=0xff){c=1;}}}break;
  48.                     case 0xbf:{while(!c){while(a!=0xff){DAC0832=a;delayms(2);++a;}while(a!=0){DAC0832=a;delayms(2);--a;}if(P1!=0xff){c=1;}}}break;
  49.                     case 0x7f:{while(!c){for(b=0;b<255;b++){DAC0832=sine[b];}if(P1!=0xff){c=1;}}}break;
  50. ……………………

  51. …………限于本文篇幅 余下代码请从51黑下载附件…………
复制代码

所有资料51hei提供下载:
DA转换.zip (27.4 KB, 下载次数: 119)

评分

参与人数 2黑币 +10 收起 理由
lingling13210 + 5 赞一个!
sky日耀 + 5 很给力!

查看全部评分

回复

使用道具 举报

ID:318191 发表于 2018-4-28 15:10 | 显示全部楼层
6666666666666666666666给个赞
回复

使用道具 举报

ID:346779 发表于 2018-6-7 11:19 | 显示全部楼层
66666点赞
回复

使用道具 举报

ID:544289 发表于 2019-5-22 18:04 | 显示全部楼层
不错,就是没有程序注释
回复

使用道具 举报

ID:680763 发表于 2020-3-25 20:01 | 显示全部楼层
资料里没发现电路图?
回复

使用道具 举报

ID:762237 发表于 2020-5-27 10:14 | 显示全部楼层
程序很给力
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

快速回复 返回顶部 返回列表