完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
在学习PIC18F26K22 ADC采样的时候发现,10位的ADC采样,取16次的平均数,,每次得到的结果都不一样,最大和最小值之差可以到20bit,,,,研究了很长时间也没弄好,同并的电路用STC单片机都是正常的。 下出是电路图和程序: void ADC_Initialize(void) { // set the ADC to the options selected in the User Interface // TRIGSEL CCP5; NVCFG VSS; PVCFG external; ADCON1 = 0x04; // ADFM right; ACQT 16; ADCS FOSC/16; ADCON2 = 0xB5; // ADRESL 0; ADRESL = 0x00; // ADRESH 0; ADRESH = 0x00; // GO_nDONE stop; ADON enabled; CHS AN0; ADCON0 = 0x01; } void ADC_SelectChannel(adc_channel_t channel) { // select the A/D channel ADCON0bits.CHS = channel; // Turn on the ADC module ADCON0bits.ADON = 1; } adc_result_t ADC_GetConversion(adc_channel_t channel) { // select the A/D channel ADCON0bits.CHS = channel; // Turn on the ADC module ADCON0bits.ADON = 1; // Start the conversion ADCON0bits.GO_nDONE = 1; // Wait for the conversion to finish while (ADCON0bits.GO_nDONE) { } // Conversion finished, return the result return ((adc_result_t)((ADRESH << 8) + ADRESL)); } void main() { _init(); SYSTEM_Initialize(); TMR0_StartTimer(); while(1){ while (ms == msold); msold = ms; ADC[iadc++] = ADC_GetConversion(0); //取ADC0的数据 iadc &= 0x0F; //取16次ADC //计算16次ADC数据总和,并取平均数,过采样1次。相当于精度提高1位 temp = 0; for (uchar x = 0; x < 16; x++) { temp += ADC[x]; } } temp /= 8; temp += 0x4200; EUSART1_Write(temp >> 8); EUSART1_Write(temp); } } |
|
相关推荐
2个回答
|
|
看看有没有大神来解答一下
|
|
|
|
|
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
《DNESP32S3使用指南-IDF版_V1.6》第二章 常用的C语言知识点
377 浏览 0 评论
【RA-Eco-RA2E1-48PIN-V1.0开发板试用】(第三篇)ADC采集+PWM输出
536 浏览 0 评论
《DNK210使用指南 -CanMV版 V1.0》第四十五章 人脸识别实验
540 浏览 0 评论
950 浏览 0 评论
如何用OpenCV的相机捕捉视频进行人脸检测--基于米尔NXP i.MX93开发板
1403 浏览 0 评论
【youyeetoo X1 windows 开发板体验】少儿AI智能STEAM积木平台
11762 浏览 31 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-22 10:27 , Processed in 0.845139 second(s), Total 72, Slave 54 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号