完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
扫一扫,分享给好友
void Set_DACs(void)
{ static unsigned phase_acc = 0; // Holds phase accumulator int SIN_temp, COS_temp; // Temporary 16-bit variables unsigned char index; // Index into SINE table phase_acc += PHASE_ADD; // Increment phase accumulator index = phase_acc >> 8; 这个表达式是什么意思啊? SIN_temp = SINE_TABLE[index]; // Read the table value index += 64; // 90 degree phase shift这个怎么实现的啊? COS_temp = SINE_TABLE[index]; // Add a DC bias to change the the rails from a bipolar (-32768 to 32767) // to unipolar (0 to 65535) // Note: the XOR with 0x8000 translates the bipolar quantity into // a unipolar quantity. IDA0 = SIN_temp ^ 0x8000; // Update DAC values IDA1 = COS_temp ^ 0x8000; } |
|
相关推荐
1个回答
|
|
index = phase_acc >> 8; 右移8位,也就是除以2^8
index += 64; 递加64,从注释看是实现90度相移,结合 COS_temp = SINE_TABLE[index],应该是1/4周期对应64个点,从当前点往后数64就是1/4周期对应的点 不知道对不对??? |
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
7 浏览 0 评论
26 浏览 1 评论
基于瑞萨FPB-RA4E2智能床头灯项目——1编译环境搭建与点亮驱动ws2812全彩LED
13 浏览 0 评论
嵌入式学习-飞凌嵌入式ElfBoard ELF 1板卡-LCD显示图片编程示例之介绍mmap
644 浏览 0 评论
《DNESP32S3使用指南-IDF版_V1.6》第二章 常用的C语言知识点
1000 浏览 0 评论
【youyeetoo X1 windows 开发板体验】少儿AI智能STEAM积木平台
11770 浏览 31 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-24 08:51 , Processed in 0.512533 second(s), Total 74, Slave 57 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号