文件名称:DA正弦波三角波输出测试51
- 所属分类:
- 单片机(51,AVR,MSP430等)
- 资源属性:
- [C/C++] [源码]
- 上传时间:
- 2017-09-06
- 文件大小:
- 71kb
- 下载次数:
- 0次
- 提 供 者:
- 创客1****
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
通过改变单片机的DA输出电压,可以得到各种各样的电压波形输出,下面介绍产生正弦波形需送DA的数据是如何计算的。
首先既然是正弦波,那么就要确定要输出一个周期正弦波的采样点数point,即由多少点组成了一周期的正弦波,还要知道单片机输出DA的数字值maxnum是多少,比如
8位DA,maxnum=256。10位DA,maxnum=1024。
知道以上两个值后,就开始计算需要得到的正弦波DA数据了,我设置一个正弦波由61个点组成,所选DA最大数字输入值为1024,那么我的正弦波数据数组就有61个数据,即sin_tab[61],也就是把一个正弦波360度,分成了61份,那么每份就是360÷61=5.901度,这样就可以计算出61点中每个点对应的角度值jiaodu,有了角度值就可以算出来角度对应的正弦值,利用正弦值和输出DA的数字值maxnum,就可以计算出对应DA输入的数值了。
在51单片机运行了以下函数,DA输出波形完美,验证产生的DA数据无误。(By changing the DA output voltage of the microcontroller, we can get all kinds of voltage waveform output. The following describes how to generate the sinusoidal waveform and how to calculate the data needed to send DA.
First, since it is a sine wave, so it is necessary to determine a cycle of sine wave output from point sampling points, how many points form a cycle of a sine wave, but also know the output of DA singlechip digital value number is maxnum, for example
8 bit DA, maxnum=256. 10 bit DA, maxnum=1024.
Sin_tab= (maxnum/2) *sin (x) + (maxnum/2); / / I x on behalf of a point for a corresponding angle radian angle radian = * (n /180); / / DA (maxnum/2) at the)
首先既然是正弦波,那么就要确定要输出一个周期正弦波的采样点数point,即由多少点组成了一周期的正弦波,还要知道单片机输出DA的数字值maxnum是多少,比如
8位DA,maxnum=256。10位DA,maxnum=1024。
知道以上两个值后,就开始计算需要得到的正弦波DA数据了,我设置一个正弦波由61个点组成,所选DA最大数字输入值为1024,那么我的正弦波数据数组就有61个数据,即sin_tab[61],也就是把一个正弦波360度,分成了61份,那么每份就是360÷61=5.901度,这样就可以计算出61点中每个点对应的角度值jiaodu,有了角度值就可以算出来角度对应的正弦值,利用正弦值和输出DA的数字值maxnum,就可以计算出对应DA输入的数值了。
在51单片机运行了以下函数,DA输出波形完美,验证产生的DA数据无误。(By changing the DA output voltage of the microcontroller, we can get all kinds of voltage waveform output. The following describes how to generate the sinusoidal waveform and how to calculate the data needed to send DA.
First, since it is a sine wave, so it is necessary to determine a cycle of sine wave output from point sampling points, how many points form a cycle of a sine wave, but also know the output of DA singlechip digital value number is maxnum, for example
8 bit DA, maxnum=256. 10 bit DA, maxnum=1024.
Sin_tab= (maxnum/2) *sin (x) + (maxnum/2); / / I x on behalf of a point for a corresponding angle radian angle radian = * (n /180); / / DA (maxnum/2) at the)
(系统自动生成,下载前可以参看下载内容)
下载文件列表
中频测试51\Application\Header\24C02.h
中频测试51\Application\Header\lcd1602.h
中频测试51\Application\Header\nrf24l01p.h
中频测试51\Application\Header\STC15F2K60S2.H
中频测试51\Application\Header\TLC5615.h
中频测试51\Application\Source\lcd1602.c
中频测试51\Application\Source\main.c
中频测试51\Application\Source\nrf24l01p.c
中频测试51\Application\Source\TLC5615.c
中频测试51\LCD1602_Char.plg
中频测试51\LCD1602_Char.uvgui.Administrator
中频测试51\LCD1602_Char.uvgui_Administrator.bak
中频测试51\LCD1602_Char.uvopt
中频测试51\LCD1602_Char.uvproj
中频测试51\LCD1602_Char_uvopt.bak
中频测试51\LCD1602_Char_uvproj.bak
中频测试51\Lis\lcd1602.lst
中频测试51\Lis\LCD1602_Char.m51
中频测试51\Lis\main.lst
中频测试51\Lis\nrf24l01p.lst
中频测试51\Lis\STARTUP.lst
中频测试51\Lis\TLC5615.lst
中频测试51\Obj\lcd1602.obj
中频测试51\Obj\LCD1602_Char
中频测试51\Obj\LCD1602_Char.build_log.htm
中频测试51\Obj\LCD1602_Char.hex
中频测试51\Obj\LCD1602_Char.lnp
中频测试51\Obj\LCD1602_Char.plg
中频测试51\Obj\main.obj
中频测试51\Obj\nrf24l01p.obj
中频测试51\Obj\STARTUP.obj
中频测试51\Application\Header
中频测试51\Application\Source
中频测试51\Application
中频测试51\Lis
中频测试51\Obj
中频测试51
中频测试51\Application\Header\lcd1602.h
中频测试51\Application\Header\nrf24l01p.h
中频测试51\Application\Header\STC15F2K60S2.H
中频测试51\Application\Header\TLC5615.h
中频测试51\Application\Source\lcd1602.c
中频测试51\Application\Source\main.c
中频测试51\Application\Source\nrf24l01p.c
中频测试51\Application\Source\TLC5615.c
中频测试51\LCD1602_Char.plg
中频测试51\LCD1602_Char.uvgui.Administrator
中频测试51\LCD1602_Char.uvgui_Administrator.bak
中频测试51\LCD1602_Char.uvopt
中频测试51\LCD1602_Char.uvproj
中频测试51\LCD1602_Char_uvopt.bak
中频测试51\LCD1602_Char_uvproj.bak
中频测试51\Lis\lcd1602.lst
中频测试51\Lis\LCD1602_Char.m51
中频测试51\Lis\main.lst
中频测试51\Lis\nrf24l01p.lst
中频测试51\Lis\STARTUP.lst
中频测试51\Lis\TLC5615.lst
中频测试51\Obj\lcd1602.obj
中频测试51\Obj\LCD1602_Char
中频测试51\Obj\LCD1602_Char.build_log.htm
中频测试51\Obj\LCD1602_Char.hex
中频测试51\Obj\LCD1602_Char.lnp
中频测试51\Obj\LCD1602_Char.plg
中频测试51\Obj\main.obj
中频测试51\Obj\nrf24l01p.obj
中频测试51\Obj\STARTUP.obj
中频测试51\Application\Header
中频测试51\Application\Source
中频测试51\Application
中频测试51\Lis
中频测试51\Obj
中频测试51