久久久久久久999_99精品久久精品一区二区爱城_成人欧美一区二区三区在线播放_国产精品日本一区二区不卡视频_国产午夜视频_欧美精品在线观看免费

 找回密碼
 立即注冊

QQ登錄

只需一步,快速開始

搜索
查看: 2958|回復: 0
打印 上一主題 下一主題
收起左側

基于c51的波形發(fā)生器分享(代碼,加proteus仿真圖源文件)

[復制鏈接]
跳轉到指定樓層
樓主
ID:665861 發(fā)表于 2020-4-4 09:49 | 只看該作者 |只看大圖 回帖獎勵 |倒序瀏覽 |閱讀模式
通過中斷按鈕控制不同波形的輸出


單片機代碼如下:
//main部分
  1. #include "dac0862.h"
  2. void main()
  3. {
  4. init_dac0862();
  5. initial_int1();
  6. while(1)
  7. {
  8.   disp();
  9. }
  10. }
復制代碼

//dac0862.c部分
  1. #include "dac0862.h"
  2. sbit sin = P1^0;//正弦波
  3. sbit squ = P1^1;//方波
  4. sbit tri = P1^2;//三角波
  5. sbit tra = P1^3;//梯形波
  6. sbit saw = P1^4;//鋸齒波
  7. sbit cs0832 = P3^2;
  8. sbit wr = P3^6;
  9. u8 key = 0;//模式狀態(tài)
  10. unsigned char const code
  11. SIN_code[256]={0x80,0x83,0x86,0x89,0x8c,0x8f,0x92,0x95,0x98,0x9c,0x9f,0xa2,0xa5,0xa8,0xab,0xae,
  12. 0xb0,0xb3,0xb6,0xb9,0xbc,0xbf,0xc1,0xc4,0xc7,0xc9,0xcc,0xce,0xd1,0xd3,0xd5,0xd8,0xda,0xdc,0xde,
  13. 0xe0,0xe2,0xe4,0xe6,0xe8,0xea,0xec,0xed,0xef,0xf0,0xf2,0xf3,0xf4,0xf6,0xf7,0xf8,0xf9,0xfa,0xfb,
  14. 0xfc,0xfc,0xfd,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfd,
  15. 0xfc,0xfc,0xfb,0xfa,0xf9,0xf8,0xf7,0xf6,0xf5,0xf3,0xf2,0xf0,0xef,0xed,0xec,0xea,0xe8,0xe6,0xe4,
  16. 0xe3,0xe1,0xde,0xdc,0xda,0xd8,0xd6,0xd3,0xd1,0xce,0xcc,0xc9,0xc7,0xc4,0xc1,0xbf,0xbc,0xb9,0xb6,
  17. 0xb4,0xb1,0xae,0xab,0xa8,0xa5,0xa2,0x9f,0x9c,0x99,0x96,0x92,0x8f,0x8c,0x89,0x86,0x83,0x80,0x7d,
  18. 0x79,0x76,0x73,0x70,0x6d,0x6a,0x67,0x64,0x61,0x5e,0x5b,0x58,0x55,0x52,0x4f,0x4c,0x49,0x46,0x43,
  19. 0x41,0x3e,0x3b,0x39,0x36,0x33,0x31,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,0x3,0x3,0x2,0x1,0x1,0x0,0x0,0x0,0x0,
  21. 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x2,0x3,0x3,0x4,0x5,0x6,0x7,0x8,0x9,0xa,0xc,0xd,0xe,0x10,0x12,
  22. 0x13,0x15,0x17,0x18,0x1a,0x1c,0x1e,0x20,0x23,0x25,0x27,0x29,0x2c,0x2e,0x30,0x33,0x35,0x38,0x3b,
  23. 0x3d,0x40,0x43,0x46,0x48,0x4b,0x4e,0x51,0x54,0x57,0x5a,0x5d,0x60,0x63,0x66,0x69,0x6c,0x6f,0x73,
  24. 0x76,0x79,0x7c};

  25. void delay(uint x)
  26. {
  27. uint i,j;
  28. for(i = 0;i < x;i++)
  29. {
  30.   for(j = 0;j < 110;j++)
  31.   ;
  32. }
  33. }

  34. void init_dac0862()//選中芯片初始化
  35. {
  36. cs0832 = 0;
  37. wr = 0;
  38. }
  39. void sin_out()//輸出正弦波
  40. {
  41. uint i = 0;
  42. while(i < 256)
  43. {
  44.   P2 = SIN_code[i];
  45.   i++;
  46. }
  47. }
  48. void squ_out()//輸出方波
  49. {
  50. P2 = 0xff;
  51. delay(100);
  52. P2 = 0x00;
  53. delay(100);
  54. }
  55. void tri_out()//輸出三角波
  56. {
  57. uint i = 0x00;
  58. while(i < 0xff)
  59. {
  60.   P2 = i;
  61.   i = i + 0x01;
  62. }
  63. while(i > 0x00)
  64. {
  65.   P2 = i;
  66.   i = i - 0x01;
  67. }
  68. }
  69. void tra_out()//輸出梯形波
  70. {
  71. uint i = 0x00;
  72. while(i < 0xff)
  73. {
  74.   P2 = i;
  75.   i = i + 0x01;
  76. }
  77. delay(30);
  78. while(i > 0x00)
  79. {
  80.   P2 = i;
  81.   i = i - 0x01;
  82. }
  83. delay(30);
  84. }
  85. void saw_out()//輸出鋸齒波
  86. {
  87. uint i = 0x00;
  88. while(i < 0xff)
  89. {
  90.   P2 = i;
  91.   i = i + 0x01;
  92. }
  93. i = 0;
  94. }
  95. void initial_int1()//外部中斷1初始化
  96. {
  97. IT1 = 1;
  98. EX1 = 1;
  99. EA = 1;
  100. }
  101. void int1_serv() interrupt 2
  102. {
  103. //無按鈕按下則不顯示波形
  104. if(sin == 0)
  105.   key = 1;
  106. else if(squ == 0)
  107.   key = 2;
  108. else if(tri == 0)
  109.   key = 3;
  110. else if(tra == 0)
  111.   key = 4;
  112. else if(saw == 0)
  113.   key = 5;
  114. }
  115. void disp()
  116. {
  117. //模式0,無按鈕按下則不顯示波形
  118. if(key == 1)//模式1,正弦波
  119.   sin_out();
  120. else if(key == 2)//模式2,方波
  121.   squ_out();
  122. else if(key == 3)//模式3,三角波
  123.   tri_out();
  124. else if(key == 4)//模式4,梯形波
  125.   tra_out();
  126. else if(key == 5)//模式5,鋸齒波
  127.   saw_out();
  128. }
復制代碼


//dac0862.h部分
#ifndef __DAC0862_H__
#define __DAC0862_H__
#include <reg51.h>
#define u8 unsigned char
#define uchar unsigned char
#define uint unsigned int

void delay(uint x);
void init_dac0862();//選中芯片初始化
void sin_out();//輸出正弦波
void squ_out();//輸出方波
void tri_out();//輸出三角波
void tra_out();//輸出梯形波
void saw_out();//輸出鋸齒波
void initial_int1();//外部中斷1初始化
void disp();
#endif

全部資料51hei下載地址:
波形發(fā)生器.zip (89.39 KB, 下載次數(shù): 36)

評分

參與人數(shù) 1黑幣 +50 收起 理由
admin + 50 共享資料的黑幣獎勵!

查看全部評分

分享到:  QQ好友和群QQ好友和群 QQ空間QQ空間 騰訊微博騰訊微博 騰訊朋友騰訊朋友
收藏收藏 分享淘帖 頂 踩
回復

使用道具 舉報

您需要登錄后才可以回帖 登錄 | 立即注冊

本版積分規(guī)則

手機版|小黑屋|51黑電子論壇 |51黑電子論壇6群 QQ 管理員QQ:125739409;技術交流QQ群281945664

Powered by 單片機教程網(wǎng)

快速回復 返回頂部 返回列表
主站蜘蛛池模板: 一级片免费视频 | 久久精品日 | 日本精品一区二区三区四区 | 日韩在线免费看 | 日韩欧美一区二区三区免费观看 | 精品久久久久久亚洲综合网 | 精品久久久久久亚洲精品 | 免费看黄色小视频 | 国产精品xxxx| 久久国产精99精产国高潮 | 日韩欧美在线观看视频 | 久久人人网 | 欧美一级淫片007 | a精品视频| 日本一区二区三区在线观看 | 亚洲一区二区视频在线观看 | 九九九久久国产免费 | 日日夜夜精品免费视频 | 国产999精品久久久久久 | 天天人人精品 | 精久久久 | 欧美三级电影在线播放 | 青青艹在线视频 | 成人免费视频在线观看 | 久久大陆 | 中文视频在线 | 麻豆亚洲 | 色嗨嗨 | 国产精品成人在线 | 久久亚洲精品国产精品紫薇 | .国产精品成人自产拍在线观看6 | 亚洲欧美视频 | 欧美精品1区2区 | www.精品国产 | 97超碰在线免费 | av网址在线播放 | 亚洲永久精品国产 | 午夜亚洲 | 日日夜夜精品视频 | 久久一二区 | 蜜桃视频在线观看免费视频网站www |