完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
1、2、3三个电压读取通道,写入0xXX70XX,使能AIN1-AINCOM,AIN2-AINCOM,AIN3-AINCOM.
但是通道1、2、3读取顺序无法控制,上电后第一次读取顺序是1、2、3,后面再读取时就变成2、3、1或者3、1、2..............了 // initial ADC , select channel 1 void init_adc(void) { ADC_WR_8Byte(0x08); //All communications to the part must start with a write operation to the communications register,set next operation as a write to the Mode register ADC_WR_24Byte(0x00018); //write Mode register /*--select external clock---*/ ADC_WR_8Byte(0x10); //All communications to the part must start with a write operation to the communications register,set next operation as a write to the Configuration register ADC_WR_24Byte(0x7008);////write Configuration register /*--select AI1--AICOM, unipolar---*/ ADC_WR_8Byte(0x5C); // continuously read data // GPIO_ResetBits(GPIOC , GPIO_Pin_1);//din=0 } if(string_point==5)//"WM" { NVIC_DisableIRQ(USART1_IRQn); if(HandleFlag) { init_adc(); Delay(0x0010); for(i=0;i<50;i++) { rev_v[i*3] = get_adc(); //读取电压值 rev_v[i*3+1] = get_adc(); //读取电压值 rev_v[i*3+2] = get_adc(); //读取电压值 } for(i=0;i<150;i++) printf("%frn",rev_v); } } float get_adc(void) { uint8_t adc_res[3]={0}; uint32_t conv; float temp; while(GPIO_ReadInputDataBit(GPIOC, GPIO_Pin_0)== 1); // wait for convert ADC_RD_24Byte(3,adc_res); conv = (adc_res[0] << 16)+(adc_res[1] << 8)+adc_res[2]; temp = (float)conv*0.000244140625/*(4096>>24)*/; temp = temp*4.1/4096; return temp; } |
|
相关推荐
1个回答
|
|
|
|
|
|
只有小组成员才能发言,加入小组>>
给ADUM4223 增加信号驱动15V电压就不正常, 波动很大会被烧是什么情况?
1295 浏览 2 评论
ADP5092 SYS端口为2.09V,但是REG_OUT为0是什么原因?
1893 浏览 1 评论
ad7193差分输入ain1与ain2差是正值时,读到电压与实际值误差小,但为负值值,误差就变的很大
4235 浏览 2 评论
8992 浏览 1 评论
3137 浏览 1 评论
ADC3442采集,分析数据出现有规则毛刺,请问是哪方面的问题啊?
1419浏览 3评论
AD7190状态寄存器一直是0x80,连续转换模式下RDY不拉低
1642浏览 2评论
1614浏览 2评论
给ADUM4223 增加信号驱动15V电压就不正常, 波动很大会被烧是什么情况?
1295浏览 2评论
210浏览 2评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-23 02:46 , Processed in 0.970441 second(s), Total 78, Slave 62 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号